Files
RosterChief/features/models.py
Bernard Siebens 1365dcf18e Coach lineup polish, referee level/position delete, feature-flag nav gating, per-job pause
- Coach line-up screen: more breathing room above the sheet, brighter event
  subtitle, and the "Schedule" button now matches the date input's height.
- Positions and referee levels can now be deleted from Settings (blocked with
  a friendly message if still in use on a roster/referee profile/inheritance
  chain).
- The Evaluations nav placeholder is now gated on the formbuilder flag, same
  as Forms itself, since the design reuses formbuilder underneath.
- Control panel: each scheduled platform job can now be paused/resumed
  individually (features.models.JobToggle), independent of the platform-wide
  Maintenance lock.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-08-23 11:17:46 +02:00

239 lines
9.4 KiB
Python

"""Club-scoped feature flags.
waffle's Flag model is swappable (``WAFFLE_FLAG_MODEL``, like ``AUTH_USER_MODEL``),
so we subclass it to add the one dimension this platform actually needs: which
*clubs* a feature is on for. The tenant middleware already puts ``request.club``
on every request, so a flag resolves with a plain ``flag_is_active(request, "shop")``
— no call site has to know about clubs.
Everything waffle already offers (``everyone`` / ``percent`` / ``staff`` /
``superusers`` / per-user / per-group) keeps working untouched.
"""
from django.conf import settings
from django.db import models
from django.utils import timezone
from django.utils.translation import gettext_lazy as _
from waffle.models import CACHE_EMPTY, AbstractUserFlag
from waffle.utils import get_cache, keyfmt
from rosterchief.base import UUIDModel
#: Cache key template for a flag's club ids, mirroring waffle's own
#: FLAG_USERS_CACHE_KEY / FLAG_GROUPS_CACHE_KEY.
FLAG_CLUBS_CACHE_KEY = "flag:%s:clubs"
class Flag(AbstractUserFlag):
clubs = models.ManyToManyField(
"club.Club",
blank=True,
related_name="flags",
help_text=_("Activate this flag for these clubs."),
verbose_name=_("Clubs"),
)
def get_flush_keys(self, flush_keys=None):
flush_keys = super().get_flush_keys(flush_keys)
flush_keys.append(keyfmt(FLAG_CLUBS_CACHE_KEY, self.name))
return flush_keys
def _get_club_ids(self) -> set:
"""Club ids this flag is on for, cached the way waffle caches its own M2Ms."""
if self.pk is None:
# waffle's own BaseModel.get() falls back to a transient, unsaved
# Flag(name=...) instance for a name nothing in the DB matches yet
# (see waffle/models.py) -- an M2M lookup can't run against that, and
# there's genuinely nothing for it to be on for anyway.
return set()
cache = get_cache()
cache_key = keyfmt(FLAG_CLUBS_CACHE_KEY, self.name)
cached = cache.get(cache_key)
if cached == CACHE_EMPTY:
return set()
if cached:
return cached
club_ids = set(self.clubs.values_list("pk", flat=True))
if not club_ids:
cache.add(cache_key, CACHE_EMPTY)
return set()
cache.add(cache_key, club_ids)
return club_ids
def is_active(self, request, read_only=False):
# waffle's contract: `everyone` overrides *all* other settings. So a flag
# explicitly switched off for everyone stays off even for a targeted club,
# and club targeting only applies while `everyone` is left Unknown (None).
if self.everyone is None:
club = getattr(request, "club", None)
if club is not None and club.pk in self._get_club_ids():
return True
return super().is_active(request, read_only=read_only)
def is_active_for_club(self, club) -> bool:
"""Explicit check for code that holds a club but no request."""
if self.everyone is not None:
return self.everyone
return club.pk in self._get_club_ids()
class Maintenance(UUIDModel):
"""Platform lock-down. One row, read on every request.
Cached rather than queried per request, and the cache is the same shared Redis the flags
use — so turning maintenance on in the control panel takes effect on every worker and
every server at once. A per-process cache would leave some workers still serving clubs.
"""
CACHE_KEY = "maintenance:current"
#: Cached, but not for ever. Write-through makes the flip instant for the process that
#: made it and — on the shared Redis of a real deployment — for every other one too. The
#: TTL is the belt to that braces: on a per-process cache (a dev box with no Redis, or a
#: misconfigured deploy) a lock-down that only reached one gunicorn worker would be worse
#: than useless, so the others notice within ten seconds regardless.
CACHE_SECONDS = 10
is_active = models.BooleanField(_("active"), default=False)
message = models.TextField(_("message"), blank=True, help_text=_("Shown to clubs while the platform is locked down."))
started_at = models.DateTimeField(_("started at"), null=True, blank=True)
started_by = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.SET_NULL, null=True, blank=True, related_name="maintenance_windows", verbose_name=_("started by"))
class Meta:
verbose_name = _("maintenance")
verbose_name_plural = _("maintenance")
def __str__(self):
return "Maintenance on" if self.is_active else "Maintenance off"
def save(self, *args, **kwargs):
super().save(*args, **kwargs)
get_cache().set(self.CACHE_KEY, self, self.CACHE_SECONDS)
@classmethod
def current(cls) -> Maintenance:
"""The one row, created on first read. Cached until it changes."""
cached = get_cache().get(cls.CACHE_KEY)
if cached is not None:
return cached
maintenance = cls.objects.first() or cls.objects.create()
get_cache().set(cls.CACHE_KEY, maintenance, cls.CACHE_SECONDS)
return maintenance
@classmethod
def is_on(cls) -> bool:
return cls.current().is_active
@classmethod
def start(cls, *, message: str = "", user=None) -> Maintenance:
maintenance = cls.current()
maintenance.is_active = True
maintenance.message = message
maintenance.started_at = timezone.now()
maintenance.started_by = user
maintenance.save()
return maintenance
@classmethod
def stop(cls) -> Maintenance:
maintenance = cls.current()
maintenance.is_active = False
maintenance.started_at = None
maintenance.started_by = None
maintenance.save()
return maintenance
class JobToggle(UUIDModel):
"""Per-job on/off switch for the scheduled platform jobs in features/jobs.py's
JOB_REGISTRY, so the control panel can pause one specific job (a runaway task, one
under investigation, ...) without touching Celery Beat's schedule or reaching for
the platform-wide Maintenance lock, which stands down every job at once.
One row per job that's ever been toggled off; a job with no row here is enabled --
same "absence means default" shape as Maintenance's own singleton, but keyed instead
of a single row, since there's one of these per registry entry rather than one for
the whole platform. Cached the same write-through way for the same reason: a flip
made in the control panel has to reach every Celery worker, not just the process
that made it.
"""
CACHE_KEY = "job_toggle:%s"
CACHE_SECONDS = 10
name = models.CharField(_("job name"), max_length=255, unique=True, help_text=_("Dotted Celery task name, matching a features.jobs.JOB_REGISTRY key."))
enabled = models.BooleanField(_("enabled"), default=True)
class Meta:
verbose_name = _("job toggle")
verbose_name_plural = _("job toggles")
def __str__(self):
return f"{self.name} ({'on' if self.enabled else 'off'})"
def save(self, *args, **kwargs):
super().save(*args, **kwargs)
get_cache().set(self.CACHE_KEY % self.name, self.enabled, self.CACHE_SECONDS)
@classmethod
def is_enabled(cls, name: str) -> bool:
cache_key = cls.CACHE_KEY % name
cached = get_cache().get(cache_key)
if cached is not None:
return cached
toggle = cls.objects.filter(name=name).first()
enabled = toggle is None or toggle.enabled
get_cache().set(cache_key, enabled, cls.CACHE_SECONDS)
return enabled
@classmethod
def set_enabled(cls, name: str, enabled: bool) -> JobToggle:
toggle, _created = cls.objects.update_or_create(name=name, defaults={"enabled": enabled})
return toggle
class JobRun(UUIDModel):
"""One execution of a scheduled platform job -- see features/jobs.py for the registry
of what each job is, and rosterchief/settings.CELERY_BEAT_SCHEDULE for when it runs.
Written entirely by the Celery signal handlers in features/signals.py: individual tasks
(billing/tasks.py, club/tasks.py, events/tasks.py) don't touch this model, so a task
that raises still gets a row -- the signal fires regardless of how the task ended.
"""
class Status(models.TextChoices):
STARTED = "started", _("Started")
SUCCESS = "success", _("Success")
FAILURE = "failure", _("Failed")
task_id = models.CharField(_("task id"), max_length=255, unique=True)
name = models.CharField(_("task name"), max_length=255, help_text=_("Dotted Celery task name, e.g. billing.tasks.renew_subscriptions."))
status = models.CharField(_("status"), max_length=10, choices=Status.choices, default=Status.STARTED)
started_at = models.DateTimeField(_("started at"))
finished_at = models.DateTimeField(_("finished at"), null=True, blank=True)
detail = models.TextField(_("detail"), blank=True, help_text=_("What the task returned, on success."))
error = models.TextField(_("error"), blank=True, help_text=_("What the task raised, on failure."))
class Meta:
verbose_name = _("job run")
verbose_name_plural = _("job runs")
ordering = ["-started_at"]
def __str__(self):
return f"{self.name} · {self.started_at:%Y-%m-%d %H:%M}"
@property
def duration(self):
return None if self.finished_at is None else self.finished_at - self.started_at