home · contact · privacy
Minor refactoring.
authorChristian Heller <c.heller@plomlompom.de>
Sat, 13 Apr 2024 02:43:07 +0000 (04:43 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Sat, 13 Apr 2024 02:43:07 +0000 (04:43 +0200)
plomtask/http.py
plomtask/todos.py

index 5a7126e3232176630d78ddd43b10bb659c425e94..5d165ecf90f1ca6ebaed77e55b73a5d55ff428b8 100644 (file)
@@ -209,12 +209,7 @@ class TaskHandler(BaseHTTPRequestHandler):
         if child_id is not None:
             child = Todo.by_id(conn, child_id)
             todo.add_child(child)
-        if len(form_data.get_all_str('done')) > 0:
-            if not todo.is_doable:
-                raise BadFormatException('cannot set undoable Todo to done')
-            todo.is_done = True
-        else:
-            todo.is_done = False
+        todo.is_done = len(form_data.get_all_str('done')) > 0
         todo.save(conn)
 
     def do_POST_process(self, conn: DatabaseConnection, params: ParamsParser,
index 43ada0b6a04f3df387c1f1933356e1e2b1832fbc..8fa3b91407cbaef08e599faca708d7ffe9b5c8a0 100644 (file)
@@ -15,7 +15,7 @@ class Todo:
                  is_done: bool, day: Day) -> None:
         self.id_ = id_
         self.process = process
-        self.is_done = is_done
+        self._is_done = is_done
         self.day = day
         self.children: list[Todo] = []
         self.parents: list[Todo] = []
@@ -69,6 +69,17 @@ class Todo:
                 return False
         return True
 
+    @property
+    def is_done(self) -> bool:
+        """Wrapper around self._is_done so we can control its setter."""
+        return self._is_done
+
+    @is_done.setter
+    def is_done(self, value: bool) -> None:
+        if value != self.is_done and not self.is_doable:
+            raise BadFormatException('cannot change doneness of undoable Todo')
+        self._is_done = value
+
     def add_child(self, child: Todo) -> None:
         """Add child to self.children, guard against recursion"""
         def walk_steps(node: Todo) -> None: