Merge branch 'master' of ssh://git.house:/usr/local/git/base/kiosk
[kiosk.git] / camera_trigger.py
index 41dc809c300b844b4289acabc2ed3cbe1638e845..3eebe2a092947f32ab4204dd4b5f653ca13c71d7 100644 (file)
@@ -1,13 +1,14 @@
 #!/usr/bin/env python3
 
-from datetime import datetime
-import glob
+import logging
 import os
 import time
 from typing import List, Tuple, Optional
 
 import trigger
-import utils
+
+
+logger = logging.getLogger(__name__)
 
 
 class any_camera_trigger(trigger.trigger):
@@ -57,52 +58,69 @@ class any_camera_trigger(trigger.trigger):
                 filename = f"/timestamps/last_camera_motion_{camera}"
                 ts = os.stat(filename).st_ctime
                 age = now - ts
-                if ts != self.last_trigger_timestamp[camera] and age < 10:
-                    print(f'Camera: {camera}, age {age}')
+                print(f"{camera} => {age}")
+                if ts != self.last_trigger_timestamp[camera]:
                     self.last_trigger_timestamp[camera] = ts
-                    num_cameras_with_recent_triggers += 1
+                    if age < 15:
+                        logger.info(
+                            f"{camera} is triggered; {filename} touched {age}s ago (@{ts}"
+                        )
+                        num_cameras_with_recent_triggers += 1
 
-                    self.triggers_in_the_past_seven_min[camera] = 0
-                    filename = f"/timestamps/camera_motion_history_{camera}"
-                    with open(filename, "r") as f:
-                        contents = f.readlines()
-                    for x in contents:
-                        x = x.strip()
-                        age = now - int(x)
-                        if age < (60 * 7):
-                            self.triggers_in_the_past_seven_min[camera] += 1
+                        self.triggers_in_the_past_seven_min[camera] = 0
+                        filename = f"/timestamps/camera_motion_history_{camera}"
+                        with open(filename, "r") as f:
+                            contents = f.readlines()
+                        for x in contents:
+                            x = x.strip()
+                            age = now - int(x)
+                            if age < (60 * 7):
+                                self.triggers_in_the_past_seven_min[camera] += 1
+                                print(
+                                    f"{camera} past 7m: {self.triggers_in_the_past_seven_min[camera]}"
+                                )
 
             # Second pass, see whether we want to trigger due to
             # camera activity we found.  All cameras timestamps were
             # just considered and should be up-to-date.  Some logic to
             # squelch spammy cameras unless more than one is triggered
             # at the same time.
+            print(f"{num_cameras_with_recent_triggers}")
             for camera in camera_list:
-                if (now - self.last_trigger_timestamp[camera]) < 10:
+                if (now - self.last_trigger_timestamp[camera]) < 15:
                     if (
                         self.triggers_in_the_past_seven_min[camera] <= 4
                         or num_cameras_with_recent_triggers > 1
                     ):
+                        print(
+                            f"{camera} has {self.triggers_in_the_past_seven_min[camera]} triggers in the past 7d."
+                        )
+                        print(
+                            f"{num_cameras_with_recent_triggers} cameras are triggered right now."
+                        )
+
                         age = now - self.last_trigger_timestamp[camera]
                         priority = self.choose_priority(camera, int(age))
                         print(
-                            f"{utils.timestamp()}: *** {camera}[{priority}] CAMERA TRIGGER ***"
+                            f"*** CAMERA TRIGGER (hidden/{camera}.html @ {priority}) ***"
                         )
                         triggers.append(
                             (
-                                f"hidden/{camera}.html",
+                                f"hidden/unwrapped_{camera}.html",
                                 priority,
                             )
                         )
                     else:
-                        print(f"{utils.timestamp()}: Camera {camera} too spammy, squelching it")
-        except Exception as e:
-            print(e)
-            pass
+                        logger.info(
+                            f"{camera} is too spammy; {self.triggers_in_the_past_seven_min[camera]} events in the past 7m.  Ignoring it."
+                        )
+        except Exception:
+            logger.exception()
 
         if len(triggers) == 0:
             return None
         else:
+            logger.info("There are active camera triggers!")
             return triggers