1 """Collecting Day and date-related items."""
2 from __future__ import annotations
4 from sqlite3 import Row
5 from datetime import datetime, timedelta
6 from plomtask.db import DatabaseConnection, BaseModel
7 from plomtask.todos import Todo
8 from plomtask.dating import (DATE_FORMAT, valid_date)
11 class Day(BaseModel[str]):
12 """Individual days defined by their dates."""
16 def __init__(self, date: str, comment: str = '') -> None:
17 id_ = valid_date(date)
19 self.datetime = datetime.strptime(self.date, DATE_FORMAT)
20 self.comment = comment
21 self.todos: list[Todo] = []
23 def __lt__(self, other: Day) -> bool:
24 return self.date < other.date
27 def from_table_row(cls, db_conn: DatabaseConnection, row: Row | list[Any]
29 """Make from DB row, with linked Todos."""
30 day = super().from_table_row(db_conn, row)
31 assert isinstance(day.id_, str)
32 day.todos = Todo.by_date(db_conn, day.id_)
37 db_conn: DatabaseConnection, id_: str | None,
40 """Extend BaseModel.by_id checking for new/lost .todos."""
41 day = super().by_id(db_conn, id_, create)
42 assert day.id_ is not None
43 if day.id_ in Todo.days_to_update:
44 Todo.days_to_update.remove(day.id_)
45 day.todos = Todo.by_date(db_conn, day.id_)
49 def by_date_range_filled(cls, db_conn: DatabaseConnection,
50 start: str, end: str) -> list[Day]:
51 """Return days existing and non-existing between dates start/end."""
52 ret = cls.by_date_range_with_limits(db_conn, (start, end), 'id')
53 days, start_date, end_date = ret
54 return cls.with_filled_gaps(days, start_date, end_date)
57 def with_filled_gaps(cls, days: list[Day], start_date: str, end_date: str
59 """In days, fill with (un-saved) Days gaps between start/end_date."""
60 if start_date > end_date:
63 if start_date not in [d.date for d in days]:
64 days[:] = [Day(start_date)] + days
65 if end_date not in [d.date for d in days]:
66 days += [Day(end_date)]
69 for i, day in enumerate(days):
72 while day.next_date != days[i+1].date:
73 day = Day(day.next_date)
75 days[:] = gapless_days
79 def date(self) -> str:
80 """Return self.id_ under the assumption it's a date string."""
81 assert isinstance(self.id_, str)
85 def first_of_month(self) -> bool:
86 """Return what month self.date is part of."""
87 assert isinstance(self.id_, str)
88 return self.id_[-2:] == '01'
91 def month_name(self) -> str:
92 """Return what month self.date is part of."""
93 return self.datetime.strftime('%B')
96 def weekday(self) -> str:
97 """Return what weekday matches self.date."""
98 return self.datetime.strftime('%A')
101 def prev_date(self) -> str:
102 """Return date preceding date of this Day."""
103 prev_datetime = self.datetime - timedelta(days=1)
104 return prev_datetime.strftime(DATE_FORMAT)
107 def next_date(self) -> str:
108 """Return date succeeding date of this Day."""
109 next_datetime = self.datetime + timedelta(days=1)
110 return next_datetime.strftime(DATE_FORMAT)
113 def calendarized_todos(self) -> list[Todo]:
114 """Return only those of self.todos that have .calendarize set."""
115 return [t for t in self.todos if t.calendarize]
118 def total_effort(self) -> float:
119 """"Sum all .performed_effort of self.todos."""
121 for todo in self.todos:
122 total_effort += todo.performed_effort