mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-01 03:48:04 +00:00
c0a6f5eb30
Le timeout se fait en une seule requête et la récupération de l'état des comptoirs en une seule requête aussi. Grâce à ça, on peut en grande partie retirer le cache pour l'affichage de l'état des comptoirs, ce qui a des implications excellentes en termes d'UX (comme le fait que la redirection vers la page de comptoir ou d'activité aura plus une apparence de truc aléatoire)
40 lines
1.3 KiB
Python
40 lines
1.3 KiB
Python
#
|
|
# Copyright 2024 AE UTBM
|
|
# ae@utbm.fr / ae.info@utbm.fr
|
|
#
|
|
# This file is part of the website of the UTBM Student Association (AE UTBM),
|
|
# https://ae.utbm.fr.
|
|
#
|
|
# You can find the source code of the website at https://github.com/ae-utbm/sith
|
|
#
|
|
# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3)
|
|
# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE
|
|
# OR WITHIN THE LOCAL FILE "LICENSE"
|
|
#
|
|
#
|
|
from ninja_extra import ControllerBase, api_controller, route
|
|
|
|
from core.api_permissions import CanView, IsRoot
|
|
from counter.models import Counter
|
|
from counter.schemas import CounterSchema
|
|
|
|
|
|
@api_controller("/counter")
|
|
class CounterController(ControllerBase):
|
|
@route.get("", response=list[CounterSchema], permissions=[IsRoot])
|
|
def fetch_all(self):
|
|
return Counter.objects.annotate_is_open()
|
|
|
|
@route.get("{counter_id}/", response=CounterSchema, permissions=[CanView])
|
|
def fetch_one(self, counter_id: int):
|
|
return self.get_object_or_exception(
|
|
Counter.objects.annotate_is_open(), pk=counter_id
|
|
)
|
|
|
|
@route.get("bar/", response=list[CounterSchema], permissions=[CanView])
|
|
def fetch_bars(self):
|
|
counters = list(Counter.objects.annotate_is_open().filter(type="BAR"))
|
|
for c in counters:
|
|
self.check_object_permissions(c)
|
|
return counters
|