142 | 142 |
|
143 | 143 |
pick_config_list('unit', ['native', 'bits', 'cash', 'satoshi'])
|
144 | 144 |
pick_config_list('payment_return', ['request', 'welcome'])
|
|
145 |
pick_config_list('log_order', ['ascending', 'descending'])
|
145 | 146 |
|
146 | 147 |
if 'week_start' not in config or config['week_start'] == 'monday':
|
147 | 148 |
config['week_start'] = 0
|
|
522 | 523 |
|
523 | 524 |
|
524 | 525 |
# 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):
|
526 | 527 |
if plaintext and txids:
|
527 | 528 |
raise RuntimeError('read_log_file: the "plaintext" and "txids" parameters are incompatible')
|
528 | 529 |
table = [] if txids else ''
|
|
550 | 551 |
if txid != '':
|
551 | 552 |
table.append(txid)
|
552 | 553 |
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
|
554 | 559 |
else:
|
555 | |
table += '''<tr class="%STYLE%">
|
|
560 |
line = '''<tr class="%STYLE%">
|
556 | 561 |
<td><a id="toggle%ROW%" href="javascript:toggleRow(%ROW%);">+</a></td>
|
557 | 562 |
<td>{date}</td><td>{fiat} {cur}</td><td>{tag}</td>
|
558 | 563 |
</tr>
|
|
560 | 565 |
<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>
|
561 | 566 |
<strong>Amount:</strong> <span>{amt} {token}</span><br>
|
562 | 567 |
<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
|
563 | 572 |
except:
|
564 | 573 |
print('Log file is corrupted: {file} ({error})'.format(file=filename, error=sys.exc_info()[1]))
|
565 | 574 |
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>'
|
566 | 577 |
if txids:
|
567 | 578 |
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
|
572 | 584 |
logfile.close()
|
573 | 585 |
return totals, table
|
574 | 586 |
|
|
668 | 680 |
summary = ''
|
669 | 681 |
totals = {}
|
670 | 682 |
# Compile transaction table and calculate date totals
|
|
683 |
reverse_order = config['log_order'] == 'descending'
|
|
684 |
if reverse_order:
|
|
685 |
days.reverse()
|
671 | 686 |
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)
|
673 | 688 |
table += _table
|
674 | 689 |
for k in _totals.keys():
|
675 | 690 |
if k in totals:
|