1 """Web server stuff."""
3 from http.server import BaseHTTPRequestHandler
4 from http.server import HTTPServer
5 from urllib.parse import urlparse, parse_qs
6 from os.path import split as path_split
7 from jinja2 import Environment as JinjaEnv, FileSystemLoader as JinjaFSLoader
8 from plomtask.days import Day, todays_date
9 from plomtask.exceptions import HandledException, BadFormatException, \
11 from plomtask.db import DatabaseConnection, DatabaseFile
12 from plomtask.processes import Process
13 from plomtask.conditions import Condition
14 from plomtask.todos import Todo
16 TEMPLATES_DIR = 'templates'
19 class TaskServer(HTTPServer):
20 """Variant of HTTPServer that knows .jinja as Jinja Environment."""
22 def __init__(self, db_file: DatabaseFile,
23 *args: Any, **kwargs: Any) -> None:
24 super().__init__(*args, **kwargs)
26 self.jinja = JinjaEnv(loader=JinjaFSLoader(TEMPLATES_DIR))
30 """Wrapper for validating and retrieving dict-like HTTP inputs."""
32 def __init__(self, dict_: dict[str, list[str]],
33 strictness: bool = True) -> None:
35 self.strict = strictness
37 def get_str(self, key: str, default: str = '',
38 ignore_strict: bool = False) -> str:
39 """Retrieve single/first string value of key, or default."""
40 if key not in self.inputs.keys() or 0 == len(self.inputs[key]):
41 if self.strict and not ignore_strict:
42 raise BadFormatException(f'no value found for key {key}')
44 return self.inputs[key][0]
46 def get_int(self, key: str) -> int:
47 """Retrieve single/first value of key as int, error if empty."""
48 val = self.get_int_or_none(key)
50 raise BadFormatException(f'unexpected empty value for: {key}')
53 def get_int_or_none(self, key: str) -> int | None:
54 """Retrieve single/first value of key as int, return None if empty."""
55 val = self.get_str(key, ignore_strict=True)
60 except ValueError as e:
61 msg = f'cannot int form field value for key {key}: {val}'
62 raise BadFormatException(msg) from e
64 def get_float(self, key: str) -> float:
65 """Retrieve float value of key from self.postvars."""
66 val = self.get_str(key)
69 except ValueError as e:
70 msg = f'cannot float form field value for key {key}: {val}'
71 raise BadFormatException(msg) from e
73 def get_all_str(self, key: str) -> list[str]:
74 """Retrieve list of string values at key."""
75 if key not in self.inputs.keys():
77 return self.inputs[key]
79 def get_all_int(self, key: str) -> list[int]:
80 """Retrieve list of int values at key."""
81 all_str = self.get_all_str(key)
83 return [int(s) for s in all_str if len(s) > 0]
84 except ValueError as e:
85 msg = f'cannot int a form field value for key {key} in: {all_str}'
86 raise BadFormatException(msg) from e
89 class TaskHandler(BaseHTTPRequestHandler):
90 """Handles single HTTP request."""
93 def do_GET(self) -> None:
94 """Handle any GET request."""
97 if hasattr(self, f'do_GET_{self.site}'):
98 template = f'{self.site}.html'
99 ctx = getattr(self, f'do_GET_{self.site}')()
100 html = self.server.jinja.get_template(template).render(**ctx)
101 self._send_html(html)
102 elif '' == self.site:
103 self._redirect('/day')
105 raise NotFoundException(f'Unknown page: /{self.site}')
106 except HandledException as error:
107 self._send_msg(error, code=error.http_code)
111 def do_GET_calendar(self) -> dict[str, object]:
112 """Show Days from ?start= to ?end=."""
113 start = self.params.get_str('start')
114 end = self.params.get_str('end')
115 days = Day.all(self.conn, date_range=(start, end), fill_gaps=True)
117 day.collect_calendarized_todos(self.conn)
118 return {'start': start, 'end': end, 'days': days}
120 def do_GET_day(self) -> dict[str, object]:
121 """Show single Day of ?date=."""
122 date = self.params.get_str('date', todays_date())
123 todays_todos = Todo.by_date(self.conn, date)
124 conditions_present = []
127 for todo in todays_todos:
128 for condition in todo.conditions + todo.blockers:
129 if condition not in conditions_present:
130 conditions_present += [condition]
131 enablers_for[condition.id_] = [p for p in
132 Process.all(self.conn)
133 if condition in p.enables]
134 disablers_for[condition.id_] = [p for p in
135 Process.all(self.conn)
136 if condition in p.disables]
137 seen_todos: set[int] = set()
138 top_nodes = [t.get_step_tree(seen_todos)
139 for t in todays_todos if not t.parents]
140 return {'day': Day.by_id(self.conn, date, create=True),
141 'top_nodes': top_nodes,
142 'enablers_for': enablers_for,
143 'disablers_for': disablers_for,
144 'conditions_present': conditions_present,
145 'processes': Process.all(self.conn)}
147 def do_GET_todo(self) -> dict[str, object]:
148 """Show single Todo of ?id=."""
149 id_ = self.params.get_int('id')
150 todo = Todo.by_id(self.conn, id_)
151 return {'todo': todo,
152 'todo_candidates': Todo.by_date(self.conn, todo.date),
153 'condition_candidates': Condition.all(self.conn)}
155 def do_GET_todos(self) -> dict[str, object]:
156 """Show Todos from ?start= to ?end=, of ?process=, ?comment= pattern"""
157 sort_by = self.params.get_str('sort_by')
158 start = self.params.get_str('start')
159 end = self.params.get_str('end')
160 process_id = self.params.get_int_or_none('process_id')
161 comment_pattern = self.params.get_str('comment_pattern')
163 for t in Todo.matching(self.conn, comment_pattern):
164 # pylint: disable=too-many-boolean-expressions
165 if (start and t.date < start)\
166 or (end and t.date > end)\
167 or (process_id and t.process.id_ != process_id):
170 if sort_by == 'doneness':
171 todos.sort(key=lambda t: t.is_done)
172 elif sort_by == '-doneness':
173 todos.sort(key=lambda t: t.is_done, reverse=True)
174 elif sort_by == 'process':
175 todos.sort(key=lambda t: t.process.title.newest)
176 elif sort_by == '-process':
177 todos.sort(key=lambda t: t.process.title.newest, reverse=True)
178 elif sort_by == 'comment':
179 todos.sort(key=lambda t: t.comment)
180 elif sort_by == '-comment':
181 todos.sort(key=lambda t: t.comment, reverse=True)
182 elif sort_by == '-date':
183 todos.sort(key=lambda t: t.date, reverse=True)
185 todos.sort(key=lambda c: c.title.newest)
186 return {'start': start, 'end': end, 'process_id': process_id,
187 'comment_pattern': comment_pattern, 'todos': todos,
188 'all_processes': Process.all(self.conn), 'sort_by': sort_by}
190 def do_GET_conditions(self) -> dict[str, object]:
191 """Show all Conditions."""
192 pattern = self.params.get_str('pattern')
193 conditions = Condition.matching(self.conn, pattern)
194 sort_by = self.params.get_str('sort_by')
195 if sort_by == 'is_active':
196 conditions.sort(key=lambda c: c.is_active)
197 elif sort_by == '-is_active':
198 conditions.sort(key=lambda c: c.is_active, reverse=True)
199 elif sort_by == '-title':
200 conditions.sort(key=lambda c: c.title.newest, reverse=True)
202 conditions.sort(key=lambda c: c.title.newest)
203 return {'conditions': conditions,
207 def do_GET_condition(self) -> dict[str, object]:
208 """Show Condition of ?id=."""
209 id_ = self.params.get_int_or_none('id')
210 return {'condition': Condition.by_id(self.conn, id_, create=True)}
212 def do_GET_condition_titles(self) -> dict[str, object]:
213 """Show title history of Condition of ?id=."""
214 id_ = self.params.get_int_or_none('id')
215 condition = Condition.by_id(self.conn, id_)
216 return {'condition': condition}
218 def do_GET_condition_descriptions(self) -> dict[str, object]:
219 """Show description historys of Condition of ?id=."""
220 id_ = self.params.get_int_or_none('id')
221 condition = Condition.by_id(self.conn, id_)
222 return {'condition': condition}
224 def do_GET_process(self) -> dict[str, object]:
225 """Show Process of ?id=."""
226 id_ = self.params.get_int_or_none('id')
227 process = Process.by_id(self.conn, id_, create=True)
228 return {'process': process,
229 'steps': process.get_steps(self.conn),
230 'owners': process.used_as_step_by(self.conn),
231 'n_todos': len(Todo.by_process_id(self.conn, process.id_)),
232 'step_candidates': Process.all(self.conn),
233 'condition_candidates': Condition.all(self.conn)}
235 def do_GET_process_titles(self) -> dict[str, object]:
236 """Show title history of Process of ?id=."""
237 id_ = self.params.get_int_or_none('id')
238 process = Process.by_id(self.conn, id_)
239 return {'process': process}
241 def do_GET_process_descriptions(self) -> dict[str, object]:
242 """Show description historys of Process of ?id=."""
243 id_ = self.params.get_int_or_none('id')
244 process = Process.by_id(self.conn, id_)
245 return {'process': process}
247 def do_GET_process_efforts(self) -> dict[str, object]:
248 """Show default effort history of Process of ?id=."""
249 id_ = self.params.get_int_or_none('id')
250 process = Process.by_id(self.conn, id_)
251 return {'process': process}
253 def do_GET_processes(self) -> dict[str, object]:
254 """Show all Processes."""
255 pattern = self.params.get_str('pattern')
256 processes = Process.matching(self.conn, pattern)
257 sort_by = self.params.get_str('sort_by')
258 if sort_by == 'steps':
259 processes.sort(key=lambda c: len(c.explicit_steps))
260 elif sort_by == '-steps':
261 processes.sort(key=lambda c: len(c.explicit_steps), reverse=True)
262 elif sort_by == '-title':
263 processes.sort(key=lambda c: c.title.newest, reverse=True)
265 processes.sort(key=lambda c: c.title.newest)
266 return {'processes': processes, 'sort_by': sort_by, 'pattern': pattern}
268 def do_POST(self) -> None:
269 """Handle any POST request."""
270 # pylint: disable=attribute-defined-outside-init
272 self._init_handling()
273 length = int(self.headers['content-length'])
274 postvars = parse_qs(self.rfile.read(length).decode(),
275 keep_blank_values=True, strict_parsing=True)
276 self.form_data = InputsParser(postvars)
277 if hasattr(self, f'do_POST_{self.site}'):
278 redir_target = getattr(self, f'do_POST_{self.site}')()
281 msg = f'Page not known as POST target: /{self.site}'
282 raise NotFoundException(msg)
283 self._redirect(redir_target)
284 except HandledException as error:
285 self._send_msg(error, code=error.http_code)
289 def do_POST_day(self) -> str:
290 """Update or insert Day of date and Todos mapped to it."""
291 date = self.params.get_str('date')
292 day = Day.by_id(self.conn, date, create=True)
293 day.comment = self.form_data.get_str('day_comment')
295 Todo.create_with_children(self.conn, date,
296 self.form_data.get_all_int('new_todo'))
297 done_ids = self.form_data.get_all_int('done')
298 comments = self.form_data.get_all_str('comment')
299 efforts = self.form_data.get_all_str('effort')
300 for i, todo_id in enumerate(self.form_data.get_all_int('todo_id')):
301 todo = Todo.by_id(self.conn, todo_id)
302 todo.is_done = todo_id in done_ids
303 if len(comments) > 0:
304 todo.comment = comments[i]
306 todo.effort = float(efforts[i]) if efforts[i] else None
308 for condition in todo.enables:
309 condition.save(self.conn)
310 for condition in todo.disables:
311 condition.save(self.conn)
312 return f'/day?date={date}'
314 def do_POST_todo(self) -> str:
315 """Update Todo and its children."""
316 id_ = self.params.get_int('id')
317 for _ in self.form_data.get_all_str('delete'):
318 todo = Todo .by_id(self.conn, id_)
319 todo.remove(self.conn)
321 todo = Todo.by_id(self.conn, id_)
322 adopted_child_ids = self.form_data.get_all_int('adopt')
323 for child in todo.children:
324 if child.id_ not in adopted_child_ids:
325 assert isinstance(child.id_, int)
326 child = Todo.by_id(self.conn, child.id_)
327 todo.remove_child(child)
328 for child_id in adopted_child_ids:
329 if child_id in [c.id_ for c in todo.children]:
331 child = Todo.by_id(self.conn, child_id)
332 todo.add_child(child)
333 effort = self.form_data.get_str('effort', ignore_strict=True)
334 todo.effort = float(effort) if effort else None
335 todo.set_conditions(self.conn, self.form_data.get_all_int('condition'))
336 todo.set_blockers(self.conn, self.form_data.get_all_int('blocker'))
337 todo.set_enables(self.conn, self.form_data.get_all_int('enables'))
338 todo.set_disables(self.conn, self.form_data.get_all_int('disables'))
339 todo.is_done = len(self.form_data.get_all_str('done')) > 0
340 todo.calendarize = len(self.form_data.get_all_str('calendarize')) > 0
341 todo.comment = self.form_data.get_str('comment', ignore_strict=True)
343 for condition in todo.enables:
344 condition.save(self.conn)
345 for condition in todo.disables:
346 condition.save(self.conn)
347 return f'/todo?id={todo.id_}'
349 def do_POST_process(self) -> str:
350 """Update or insert Process of ?id= and fields defined in postvars."""
351 id_ = self.params.get_int_or_none('id')
352 for _ in self.form_data.get_all_str('delete'):
353 process = Process.by_id(self.conn, id_)
354 process.remove(self.conn)
356 process = Process.by_id(self.conn, id_, create=True)
357 process.title.set(self.form_data.get_str('title'))
358 process.description.set(self.form_data.get_str('description'))
359 process.effort.set(self.form_data.get_float('effort'))
360 process.set_conditions(self.conn,
361 self.form_data.get_all_int('condition'))
362 process.set_blockers(self.conn, self.form_data.get_all_int('blocker'))
363 process.set_enables(self.conn, self.form_data.get_all_int('enables'))
364 process.set_disables(self.conn, self.form_data.get_all_int('disables'))
365 process.calendarize = self.form_data.get_all_str('calendarize') != []
366 process.save(self.conn)
367 steps: list[tuple[int | None, int, int | None]] = []
368 for step_id in self.form_data.get_all_int('keep_step'):
369 if step_id not in self.form_data.get_all_int('steps'):
370 raise BadFormatException('trying to keep unknown step')
371 for step_id in self.form_data.get_all_int('steps'):
372 for step_process_id in self.form_data.get_all_int(
373 f'new_step_to_{step_id}'):
374 steps += [(None, step_process_id, step_id)]
375 if step_id not in self.form_data.get_all_int('keep_step'):
377 step_process_id = self.form_data.get_int(
378 f'step_{step_id}_process_id')
379 parent_id = self.form_data.get_int_or_none(
380 f'step_{step_id}_parent_id')
381 steps += [(step_id, step_process_id, parent_id)]
382 for step_process_id in self.form_data.get_all_int('new_top_step'):
383 steps += [(None, step_process_id, None)]
384 process.set_steps(self.conn, steps)
385 process.save(self.conn)
386 return f'/process?id={process.id_}'
388 def do_POST_condition(self) -> str:
389 """Update/insert Condition of ?id= and fields defined in postvars."""
390 id_ = self.params.get_int_or_none('id')
391 for _ in self.form_data.get_all_str('delete'):
392 condition = Condition.by_id(self.conn, id_)
393 condition.remove(self.conn)
395 condition = Condition.by_id(self.conn, id_, create=True)
396 condition.is_active = self.form_data.get_all_str('is_active') != []
397 condition.title.set(self.form_data.get_str('title'))
398 condition.description.set(self.form_data.get_str('description'))
399 condition.save(self.conn)
400 return f'/condition?id={condition.id_}'
402 def _init_handling(self) -> None:
403 # pylint: disable=attribute-defined-outside-init
404 self.conn = DatabaseConnection(self.server.db)
405 parsed_url = urlparse(self.path)
406 self.site = path_split(parsed_url.path)[1]
407 params = parse_qs(parsed_url.query, strict_parsing=True)
408 self.params = InputsParser(params, False)
410 def _redirect(self, target: str) -> None:
411 self.send_response(302)
412 self.send_header('Location', target)
415 def _send_html(self, html: str, code: int = 200) -> None:
416 """Send HTML as proper HTTP response."""
417 self.send_response(code)
419 self.wfile.write(bytes(html, 'utf-8'))
421 def _send_msg(self, msg: Exception, code: int = 400) -> None:
422 """Send message in HTML formatting as HTTP response."""
423 html = self.server.jinja.get_template('msg.html').render(msg=msg)
424 self._send_html(html, code)