Simon Volpert minipos / 4a35450
Add the option to sort log entries in reverse chronological order Simon Volpert 6 years ago
2 changed file(s) with 27 addition(s) and 8 deletion(s). Raw diff Collapse all Expand all
142142
143143 pick_config_list('unit', ['native', 'bits', 'cash', 'satoshi'])
144144 pick_config_list('payment_return', ['request', 'welcome'])
145 pick_config_list('log_order', ['ascending', 'descending'])
145146
146147 if 'week_start' not in config or config['week_start'] == 'monday':
147148 config['week_start'] = 0
522523
523524
524525 # Parse a log file and add its contents to the table
525 def read_log_file(filename, plaintext=False, txids=False):
526 def read_log_file(filename, plaintext=False, txids=False, reverse_order=False):
526527 if plaintext and txids:
527528 raise RuntimeError('read_log_file: the "plaintext" and "txids" parameters are incompatible')
528529 table = [] if txids else ''
550551 if txid != '':
551552 table.append(txid)
552553 elif plaintext:
553 table += '{date} {amt} {fiat} {cur} {tag}\n Address: {addr}\n TxID: {txid}\n'.format(date=date, addr=address, amt=str(amount).rjust(17 + len(token)), fiat=str(fiat).rjust(15), cur=currency, tag=tag, txid=txid)
554 line = '{date} {amt} {fiat} {cur} {tag}\n Address: {addr}\n TxID: {txid}\n'.format(date=date, addr=address, amt=str(amount).rjust(17 + len(token)), fiat=str(fiat).rjust(15), cur=currency, tag=tag, txid=txid)
555 if reverse_order:
556 table = line + table
557 else:
558 table += line
554559 else:
555 table += '''<tr class="%STYLE%">
560 line = '''<tr class="%STYLE%">
556561 <td><a id="toggle%ROW%" href="javascript:toggleRow(%ROW%);">+</a></td>
557562 <td>{date}</td><td>{fiat} {cur}</td><td>{tag}</td>
558563 </tr>
560565 <td colspan="4"><strong>Address:</strong> <a href="https://bch.btc.com/{addr}" class="address" target="_blank"><img class="icon" src="bitcoin-cash-icon.svg" alt="">{addr}</a><br>
561566 <strong>Amount:</strong> <span>{amt} {token}</span><br>
562567 <strong>TxID:</strong> <span class="txid"><a href="https://bch.btc.com/{txid}" target="_blank">{txid}</a></span></td></tr>\n'''.format(date=date, amt=amount, fiat=fiat, cur=currency, tag=tag, token=token, addr=address, txid=txid)
568 if reverse_order:
569 table = line + table
570 else:
571 table += line
563572 except:
564573 print('Log file is corrupted: {file} ({error})'.format(file=filename, error=sys.exc_info()[1]))
565574 msg = 'The log file for {file} is corrupted!'.format(file=filename.split('/')[1].split('.')[0])
575 if not plaintext:
576 msg = '<tr class="%STYLE%"><td colspan="5" class="error">' + msg + '</td></tr>'
566577 if txids:
567578 pass
568 elif plaintext:
569 table += msg
570 else:
571 table += '<tr class="%STYLE%"><td colspan="5" class="error">' + msg + '</td></tr>'
579 else:
580 if reverse_order:
581 table = msg + table
582 else:
583 table += msg
572584 logfile.close()
573585 return totals, table
574586
668680 summary = ''
669681 totals = {}
670682 # Compile transaction table and calculate date totals
683 reverse_order = config['log_order'] == 'descending'
684 if reverse_order:
685 days.reverse()
671686 for _date in days:
672 _totals, _table = read_log_file(os.path.join('logs', _date + '.log'), plaintext)
687 _totals, _table = read_log_file(os.path.join('logs', _date + '.log'), plaintext=plaintext, reverse_order=reverse_order)
673688 table += _table
674689 for k in _totals.keys():
675690 if k in totals:
6565 ## Valid values are 'native', 'bits' or 'cash' and 'satoshi'
6666 unit=native
6767
68 ## Whether payments should be sorted in ascending (chronological) or descending
69 ## (reverse chronological) order in the log viewer
70 log_order=ascending
71
6872 ## If you have your own block explorer and you wish to query it instead,
6973 ## uncomment and set all of the following fields
7074 ##