1 from http.server import BaseHTTPRequestHandler, HTTPServer
5 from urllib.parse import parse_qs, urlparse
10 class HandledException(Exception):
14 def handled_error_exit(msg):
15 print(f"ERROR: {msg}")
19 def apply_booking_to_account_balances(account_sums, account, currency, amount):
20 if not account in account_sums:
21 account_sums[account] = {currency: amount}
22 elif not currency in account_sums[account].keys():
23 account_sums[account][currency] = amount
25 account_sums[account][currency] += amount
28 def parse_lines(lines):
31 inside_booking = False
32 date_string, description = None, None
37 lines += [''] # to ensure a booking-ending last line
38 for i, line in enumerate(lines):
40 # we start with the case of an utterly empty line
42 stripped_line = line.rstrip()
43 if stripped_line == '':
45 # assume we finished a booking, finalize, and commit to DB
46 if len(booking_lines) < 2:
47 raise HandledException(f"{prefix} booking ends to early")
48 booking = Booking(date_string, description, booking_lines, start_line)
50 # expect new booking to follow so re-zeroall booking data
51 inside_booking = False
52 date_string, description = None, None
55 # if non-empty line, first get comment if any, and commit to DB
56 split_by_comment = stripped_line.split(sep=";", maxsplit=1)
57 if len(split_by_comment) == 2:
58 comments[i] = split_by_comment[1]
59 # if pre-comment empty: if inside_booking, this must be a comment-only line so we keep it for later ledger-output to capture those comments; otherwise, no more to process for this line
60 non_comment = split_by_comment[0].rstrip()
61 if non_comment.rstrip() == '':
65 # if we're starting a booking, parse by first-line pattern
66 if not inside_booking:
68 toks = non_comment.split(maxsplit=1)
71 datetime.datetime.strptime(date_string, '%Y-%m-%d')
73 raise HandledException(f"{prefix} bad date string: {date_string}")
77 raise HandledException(f"{prefix} bad description: {description}")
79 booking_lines += [non_comment]
81 # otherwise, read as transfer data
82 toks = non_comment.split() # ignore specification's allowance of single spaces in names
84 raise HandledException(f"{prefix} too many booking line tokens: {toks}")
85 amount, currency = None, None
86 account_name = toks[0]
87 if account_name[0] == '[' and account_name[-1] == ']':
88 # ignore specification's differentiation of "virtual" accounts
89 account_name = account_name[1:-1]
90 decimal_chars = ".-0123456789"
94 amount = decimal.Decimal(toks[1])
96 except decimal.InvalidOperation:
98 amount = decimal.Decimal(toks[2])
99 except decimal.InvalidOperation:
100 raise HandledException(f"{prefix} no decimal number in: {toks[1:]}")
101 currency = toks[i_currency]
102 if currency[0] in decimal_chars:
103 raise HandledException(f"{prefix} currency starts with int, dot, or minus: {currency}")
106 inside_amount = False
107 inside_currency = False
111 for i, c in enumerate(value):
113 if c in decimal_chars:
116 inside_currency = True
118 if c in decimal_chars and len(amount_string) == 0:
119 inside_currency = False
125 if c not in decimal_chars:
126 if len(currency) > 0:
127 raise HandledException(f"{prefix} amount has non-decimal chars: {value}")
128 inside_currency = True
129 inside_amount = False
132 if c == '-' and len(amount_string) > 1:
133 raise HandledException(f"{prefix} amount has non-start '-': {value}")
136 raise HandledException(f"{prefix} amount has multiple dots: {value}")
139 if len(amount_string) == 0:
140 raise HandledException(f"{prefix} amount missing: {value}")
141 if len(currency) == 0:
142 raise HandledException(f"{prefix} currency missing: {value}")
143 amount = decimal.Decimal(amount_string)
144 booking_lines += [(account_name, amount, currency)]
146 raise HandledException(f"{prefix} last booking unfinished")
147 return bookings, comments
151 def __init__(self, date_string, description, booking_lines, start_line):
152 self.date_string = date_string
153 self.description = description
154 self.lines = booking_lines
155 self.start_line = start_line
156 self.validate_booking_lines()
157 self.account_changes = self.parse_booking_lines_to_account_changes()
159 def validate_booking_lines(self):
160 prefix = f"booking at line {self.start_line}"
163 for line in self.lines[1:]:
166 _, amount, currency = line
169 raise HandledException(f"{prefix} relates more than one empty value of same currency {currency}")
172 if currency not in sums:
174 sums[currency] += amount
175 if empty_values == 0:
176 for k, v in sums.items():
178 raise HandledException(f"{prefix} does not sum up to zero")
181 for k, v in sums.items():
185 raise HandledException(f"{prefix} has empty value that cannot be filled")
187 def parse_booking_lines_to_account_changes(self):
191 for line in self.lines[1:]:
194 account, amount, currency = line
196 sink_account = account
198 apply_booking_to_account_balances(account_changes, account, currency, amount)
199 if currency not in debt:
200 debt[currency] = amount
202 debt[currency] += amount
204 for currency, amount in debt.items():
205 apply_booking_to_account_balances(account_changes, sink_account, currency, -amount)
206 return account_changes
214 self.db_file = db_name + ".json"
215 self.lock_file = db_name+ ".lock"
219 if os.path.exists(self.db_file):
220 with open(self.db_file, "r") as f:
221 self.real_lines += f.readlines()
222 ret = parse_lines(self.real_lines)
223 self.bookings += ret[0]
224 self.comments += ret[1]
226 def replace(self, start, end, lines):
228 if os.path.exists(self.lock_file):
229 raise HandledException('Sorry, lock file!')
230 if os.path.exists(self.db_file):
231 shutil.copy(self.db_file, self.db_file + ".bak")
232 f = open(self.lock_file, 'w+')
234 text = ''.join(self.real_lines[:start]) + '\n'.join(lines) + ''.join(self.real_lines[end:])
235 with open(self.db_file, 'w') as f:
237 os.remove(self.lock_file)
239 def append(self, lines):
241 if os.path.exists(self.lock_file):
242 raise HandledException('Sorry, lock file!')
243 if os.path.exists(self.db_file):
244 shutil.copy(self.db_file, self.db_file + ".bak")
245 f = open(self.lock_file, 'w+')
247 with open(self.db_file, 'a') as f:
248 f.write('\n' + '\n'.join(lines) + '\n');
249 os.remove(self.lock_file)
252 class MyServer(BaseHTTPRequestHandler):
253 header = '<html><meta charset="UTF-8"><body><a href="/ledger">ledger</a> <a href="/balance">balance</a> <a href="/add_free">add free</a> <a href="/add_structured">add structured</a><hr />'
254 footer = '</body><html>'
257 length = int(self.headers['content-length'])
258 postvars = parse_qs(self.rfile.read(length).decode(), keep_blank_values=1)
259 parsed_url = urlparse(self.path)
261 if '/add_structured' == parsed_url.path:
262 n_lines = int(len(postvars) / 4)
263 date = postvars['date'][0]
264 description = postvars['description'][0]
265 start_comment = postvars['line_0_comment'][0]
266 lines = [f'{date} {description} ; {start_comment}']
267 for i in range(1, n_lines):
268 account = postvars[f'line_{i}_account'][0]
269 amount = postvars[f'line_{i}_amount'][0]
270 currency = postvars[f'line_{i}_currency'][0]
271 comment = postvars[f'line_{i}_comment'][0]
272 new_main = f'{account} {amount} {currency}'
273 if '' == new_main.rstrip() == comment.rstrip():
275 lines += [f'{new_main} ; {comment}']
276 elif '/add_free' == parsed_url.path:
277 lines = postvars['booking'][0].splitlines()
278 start = int(postvars['start'][0])
279 end = int(postvars['end'][0])
281 _, _ = parse_lines(lines)
282 if start == end == 0:
285 db.replace(start, end, lines)
286 self.send_response(200)
288 page = f'{self.header}Success!{self.footer}'
289 self.wfile.write(bytes(page, "utf-8"))
290 except HandledException as e:
291 self.send_response(400)
293 page = f'{self.header}{e}{self.footer}'
294 self.wfile.write(bytes(page, "utf-8"))
297 self.send_response(200)
298 self.send_header("Content-type", "text/html")
301 parsed_url = urlparse(self.path)
302 page = self.header + ''
303 if parsed_url.path == '/balance':
304 page += self.balance_as_html(db)
305 elif parsed_url.path == '/add_free':
306 params = parse_qs(parsed_url.query)
307 start = int(params.get('start', ['0'])[0])
308 end = int(params.get('end', ['0'])[0])
309 page += self.add_free(db, start, end)
310 elif parsed_url.path == '/add_structured':
311 params = parse_qs(parsed_url.query)
312 start = int(params.get('start', ['0'])[0])
313 end = int(params.get('end', ['0'])[0])
314 bonus_lines = int(params.get('bonus_lines', ['0'])[0])
315 page += self.add_structured(db, start, end)
317 page += self.ledger_as_html(db)
319 self.wfile.write(bytes(page, "utf-8"))
321 def balance_as_html(self, db):
323 for booking in db.bookings:
324 for account, changes in booking.account_changes.items():
325 for currency, amount in changes.items():
326 apply_booking_to_account_balances(account_sums, account, currency, amount)
328 def collect_branches(account_name, path):
331 while len(path_copy) > 0:
332 step = path_copy.pop(0)
334 toks = account_name.split(":", maxsplit=1)
336 if parent in node.keys():
342 k, v = collect_branches(toks[1], path + [parent])
343 if k not in child.keys():
348 for account_name in sorted(account_sums.keys()):
349 k, v = collect_branches(account_name, [])
350 if k not in account_tree.keys():
353 account_tree[k].update(v)
354 def collect_totals(parent_path, tree_node):
355 for k, v in tree_node.items():
356 child_path = parent_path + ":" + k
357 for currency, amount in collect_totals(child_path, v).items():
358 apply_booking_to_account_balances(account_sums, parent_path, currency, amount)
359 return account_sums[parent_path]
360 for account_name in account_tree.keys():
361 account_sums[account_name] = collect_totals(account_name, account_tree[account_name])
363 def print_subtree(lines, indent, node, subtree, path):
364 line = f"{indent}{node}"
365 n_tabs = 5 - (len(line) // 8)
366 line += n_tabs * "\t"
367 if "€" in account_sums[path + node].keys():
368 amount = account_sums[path + node]["€"]
369 line += f"{amount:9.2f} €\t"
372 for currency, amount in account_sums[path + node].items():
373 if currency != '€' and amount > 0:
374 line += f"{amount:5.2f} {currency}\t"
377 for k, v in sorted(subtree.items()):
378 print_subtree(lines, indent, k, v, path + node + ":")
379 for k, v in sorted(account_tree.items()):
380 print_subtree(lines, "", k, v, "")
381 content = "\n".join(lines)
382 return f"<pre>{content}</pre>"
384 def ledger_as_html(self, db):
387 for comment in db.comments:
388 line = f'; {comment}' if comment != '' else ''
389 lines += [line + line_sep]
390 for booking in db.bookings:
391 i = booking.start_line
393 lines[i] = f'<p>{booking.date_string} {booking.description}{suffix}'
394 for booking_line in booking.lines[1:]:
396 if booking_line == '':
398 suffix = f' {lines[i]}' if len(lines[i]) > 0 else ''
399 value = f' {booking_line[1]} {booking_line[2]}' if booking_line[1] else ''
400 lines[i] = f'{booking_line[0]}{value}{suffix}'
401 lines[i] = lines[i][:-len(line_sep)] + f'</p>edit: <a href="/add_structured?start={booking.start_line}&end={i+1}">structured</a> / <a href="/add_free?start={booking.start_line}&end={i+1}">free</a><br />'
402 return '\n'.join(lines)
404 def add_free(self, db, start=0, end=0):
405 if start == end == 0:
408 content = html.escape(''.join(db.real_lines[start:end]))
409 return f'<form method="POST" action="/add_free"><textarea name="booking" rows="8" cols="80">{content}</textarea><input type="hidden" name="start" value={start} /><input type="hidden" name="end" value={end} /><input type="submit"></form>'
411 def add_structured(self, db, start=0, end=0, bonus_lines=10):
412 if start == end == 0:
415 lines= db.real_lines[start:end]
416 bookings, comments = parse_lines(lines)
417 if len(bookings) > 1:
418 raise HandledException('can only edit single Booking')
420 if len(bookings) == 0:
421 input_lines += f'<input name="date" /> <input name="description" /> ; <input name="line_0_comment" /><br />'
424 booking = bookings[0]
425 if booking.start_line != 0:
426 raise HandledException('need to start on first Booking line')
427 for i, comment in enumerate(comments):
429 safe_date_string = html.escape(booking.date_string)
430 safe_description = html.escape(booking.description)
431 safe_comment = html.escape(comment)
432 input_lines += f'<input name="date" value="{safe_date_string}" /> <input name="description" value="{safe_description}" /> ; <input name="line_{i}_comment" value="{safe_comment}" /><br />'
434 safe_account = safe_amount = safe_currency = ''
435 safe_comment = html.escape(comment)
436 if i < len(booking.lines):
437 main = booking.lines[i]
439 safe_account = html.escape(main[0])
440 safe_amount = '' if main[1] is None else html.escape(str(main[1]))
441 safe_currency = '' if main[2] is None else html.escape(main[2])
442 input_lines += f'<input name="line_{i}_account" value="{safe_account}" /> <input name="line_{i}_amount" value="{safe_amount}" /> <input name="line_{i}_currency" value="{safe_currency}" /> ; <input name="line_{i}_comment" value="{safe_comment}" /><br />'
443 for j in range(bonus_lines):
444 i = j + len(comments)
445 input_lines += f'<input name="line_{i}_account"/> <input name="line_{i}_amount"/> <input name="line_{i}_currency"/> ; <input name="line_{i}_comment" /><br />'
446 return f'<form method="POST" action="/add_structured">{input_lines}<input type="hidden" name="start" value={start} /><input type="hidden" name="end" value={end} /><input type="submit"></form>'
450 if __name__ == "__main__":
451 webServer = HTTPServer((hostName, serverPort), MyServer)
452 print(f"Server started http://{hostName}:{serverPort}")
454 webServer.serve_forever()
455 except KeyboardInterrupt:
457 webServer.server_close()
458 print("Server stopped.")