2026-03-16 22:46:48 +01:00
|
|
|
"""Constants for the screen locker module."""
|
|
|
|
|
|
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
2026-05-14 19:52:15 +02:00
|
|
|
SICK_LOCKOUT_SECONDS = 120 # base 2 minutes wait when sick (escalates with usage)
|
2026-03-16 22:46:48 +01:00
|
|
|
PHONE_PENALTY_DELAY_DEMO = 10
|
2026-03-27 16:13:58 +01:00
|
|
|
PHONE_PENALTY_DELAY_PRODUCTION = 100
|
2026-05-14 19:52:15 +02:00
|
|
|
# Penalty added to phone-penalty timer when ADB / phone unavailable
|
|
|
|
|
# (so unplugging phone does not become an easy escape into sick mode).
|
|
|
|
|
NO_PHONE_EXTRA_LOCKOUT_SECONDS = 480 # extra 8 minutes on top of base
|
|
|
|
|
# Sick day rate-limiting (rolling windows). Once any window is exhausted
|
|
|
|
|
# the "I'm sick" button disappears entirely.
|
|
|
|
|
SICK_BUDGET_PER_7_DAYS = 1
|
|
|
|
|
SICK_BUDGET_PER_30_DAYS = 3
|
|
|
|
|
SICK_BUDGET_PER_90_DAYS = 10
|
|
|
|
|
# Each sick day in the trailing 30 days doubles the wait countdown.
|
|
|
|
|
SICK_LOCKOUT_MULTIPLIER_PER_RECENT = 2
|
|
|
|
|
# Minimum chars in the freeform sick justification.
|
|
|
|
|
SICK_JUSTIFICATION_MIN_CHARS = 120
|
|
|
|
|
# How many past sick justifications to show on the dialog (read-only).
|
|
|
|
|
SICK_HISTORY_REVIEW_COUNT = 10
|
|
|
|
|
# Forced read-only delay before SUBMIT enables when a commitment was made.
|
|
|
|
|
SICK_COMMITMENT_FORCED_READ_SECONDS = 5
|
|
|
|
|
# Breaking a commitment counts as this many sick budget days.
|
|
|
|
|
SICK_COMMITMENT_PENALTY_DAYS = 2
|
|
|
|
|
# How long the commitment prompt stays visible after a workout unlock.
|
|
|
|
|
COMMITMENT_PROMPT_TIMEOUT_SECONDS = 15
|
2026-03-16 22:46:48 +01:00
|
|
|
ADB_TIMEOUT = 15
|
|
|
|
|
STRONGLIFTS_DB_REMOTE = (
|
|
|
|
|
"/data/data/com.stronglifts.app/databases/StrongLifts-Database-3"
|
|
|
|
|
)
|
2026-04-09 21:44:13 +02:00
|
|
|
MIN_WORKOUT_DURATION_MINUTES = 50
|
|
|
|
|
MAX_CLOCK_SKEW_SECONDS = 300 # 5 minutes max time skew from NTP
|
2026-05-01 19:07:34 +02:00
|
|
|
EARLY_BIRD_START_HOUR = 5
|
|
|
|
|
EARLY_BIRD_END_HOUR = 8
|
|
|
|
|
EARLY_BIRD_END_MINUTE = 30
|
2026-03-16 22:46:48 +01:00
|
|
|
SHUTDOWN_CONFIG_FILE = Path("/etc/shutdown-schedule.conf")
|
2026-04-09 21:44:13 +02:00
|
|
|
# HMAC key for signing workout log entries (root-owned, 0600)
|
|
|
|
|
HMAC_KEY_FILE = Path("/etc/workout-locker/hmac.key")
|
2026-03-16 22:46:48 +01:00
|
|
|
# Helper script path (relative to this file)
|
|
|
|
|
ADJUST_SHUTDOWN_SCRIPT = Path(__file__).resolve().parent / "adjust_shutdown_schedule.sh"
|
|
|
|
|
# State file to track sick day usage and original config values
|
|
|
|
|
SICK_DAY_STATE_FILE = Path(__file__).resolve().parent / "sick_day_state.json"
|
2026-05-14 19:52:15 +02:00
|
|
|
# Persistent sick-day history (rate-limit, debt, commitments, justifications).
|
|
|
|
|
# Distinct from SICK_DAY_STATE_FILE which is a one-day shutdown-config snapshot.
|
|
|
|
|
SICK_HISTORY_FILE = Path(__file__).resolve().parent / "sick_history.json"
|
2026-05-22 16:00:15 +02:00
|
|
|
# JSON list of ISO date strings ("YYYY-MM-DD") for which the screen lock is skipped.
|
|
|
|
|
SCHEDULED_SKIPS_FILE = Path(__file__).resolve().parent / "scheduled_skips.json"
|
2026-05-28 07:43:06 +02:00
|
|
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
# Wake-alarm integration (originally from wake_alarm._constants / _state).
|
|
|
|
|
# These must match the values used by the companion wake_alarm service.
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
# Days on which the wake alarm fires (0=Mon … 6=Sun).
|
|
|
|
|
ALARM_DAYS: frozenset[int] = frozenset({0, 4, 5, 6})
|
|
|
|
|
# How many hours after midnight the alarm triggers (configurable in wake_alarm).
|
|
|
|
|
WAKE_AFTER_HOURS: int = 8
|
|
|
|
|
# Path to the rtcwake binary.
|
|
|
|
|
RTCWAKE_BIN: str = "/usr/sbin/rtcwake"
|
|
|
|
|
# State file written by wake_alarm; read here to check for workout skip.
|
|
|
|
|
WAKE_STATE_FILE = Path(__file__).resolve().parent.parent / "wake_alarm" / "wake_state.json"
|