2024-07-18 18:23:30 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
2024-09-22 23:37:25 +00:00
|
|
|
# You can find the source code of the website at https://github.com/ae-utbm/sith
|
2024-07-18 18:23:30 +00:00
|
|
|
#
|
|
|
|
# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3)
|
2024-09-23 08:25:27 +00:00
|
|
|
# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE
|
2024-07-18 18:23:30 +00:00
|
|
|
# OR WITHIN THE LOCAL FILE "LICENSE"
|
|
|
|
#
|
|
|
|
#
|
2024-12-13 22:58:25 +00:00
|
|
|
from django.conf import settings
|
|
|
|
from django.db.models import F
|
2024-10-19 22:18:53 +00:00
|
|
|
from ninja import Query
|
|
|
|
from ninja_extra import ControllerBase, api_controller, paginate, route
|
|
|
|
from ninja_extra.pagination import PageNumberPaginationExtra
|
|
|
|
from ninja_extra.schemas import PaginatedResponseSchema
|
|
|
|
|
2024-12-13 22:58:25 +00:00
|
|
|
from core.api_permissions import CanAccessLookup, CanView, IsInGroup, IsRoot
|
2024-10-19 22:18:53 +00:00
|
|
|
from counter.models import Counter, Product
|
|
|
|
from counter.schemas import (
|
|
|
|
CounterFilterSchema,
|
|
|
|
CounterSchema,
|
2024-12-13 22:58:25 +00:00
|
|
|
ProductFilterSchema,
|
2024-10-19 22:18:53 +00:00
|
|
|
ProductSchema,
|
2024-12-13 22:58:25 +00:00
|
|
|
SimpleProductSchema,
|
2024-10-19 22:18:53 +00:00
|
|
|
SimplifiedCounterSchema,
|
|
|
|
)
|
2024-07-18 18:23:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
@api_controller("/counter")
|
|
|
|
class CounterController(ControllerBase):
|
|
|
|
@route.get("", response=list[CounterSchema], permissions=[IsRoot])
|
|
|
|
def fetch_all(self):
|
2024-10-09 22:06:22 +00:00
|
|
|
return Counter.objects.annotate_is_open()
|
2024-07-18 18:23:30 +00:00
|
|
|
|
|
|
|
@route.get("{counter_id}/", response=CounterSchema, permissions=[CanView])
|
|
|
|
def fetch_one(self, counter_id: int):
|
2024-10-09 22:06:22 +00:00
|
|
|
return self.get_object_or_exception(
|
|
|
|
Counter.objects.annotate_is_open(), pk=counter_id
|
|
|
|
)
|
2024-07-18 18:23:30 +00:00
|
|
|
|
|
|
|
@route.get("bar/", response=list[CounterSchema], permissions=[CanView])
|
|
|
|
def fetch_bars(self):
|
2024-10-09 22:06:22 +00:00
|
|
|
counters = list(Counter.objects.annotate_is_open().filter(type="BAR"))
|
2024-07-18 18:23:30 +00:00
|
|
|
for c in counters:
|
|
|
|
self.check_object_permissions(c)
|
|
|
|
return counters
|
2024-10-19 22:18:53 +00:00
|
|
|
|
|
|
|
@route.get(
|
|
|
|
"/search",
|
|
|
|
response=PaginatedResponseSchema[SimplifiedCounterSchema],
|
|
|
|
permissions=[CanAccessLookup],
|
|
|
|
)
|
|
|
|
@paginate(PageNumberPaginationExtra, page_size=50)
|
|
|
|
def search_counter(self, filters: Query[CounterFilterSchema]):
|
|
|
|
return filters.filter(Counter.objects.all())
|
|
|
|
|
|
|
|
|
|
|
|
@api_controller("/product")
|
|
|
|
class ProductController(ControllerBase):
|
|
|
|
@route.get(
|
|
|
|
"/search",
|
2024-12-13 22:58:25 +00:00
|
|
|
response=PaginatedResponseSchema[SimpleProductSchema],
|
2024-10-19 22:18:53 +00:00
|
|
|
permissions=[CanAccessLookup],
|
|
|
|
)
|
|
|
|
@paginate(PageNumberPaginationExtra, page_size=50)
|
2024-12-13 22:58:25 +00:00
|
|
|
def search_products(self, filters: Query[ProductFilterSchema]):
|
|
|
|
return filters.filter(
|
|
|
|
Product.objects.order_by(
|
|
|
|
F("product_type__priority").desc(nulls_last=True),
|
|
|
|
"product_type",
|
|
|
|
"name",
|
|
|
|
).values()
|
|
|
|
)
|
|
|
|
|
|
|
|
@route.get(
|
|
|
|
"/search/detailed",
|
|
|
|
response=PaginatedResponseSchema[ProductSchema],
|
|
|
|
permissions=[
|
|
|
|
IsRoot
|
|
|
|
| IsInGroup(settings.SITH_GROUP_COUNTER_ADMIN_ID)
|
|
|
|
| IsInGroup(settings.SITH_GROUP_ACCOUNTING_ADMIN_ID)
|
|
|
|
],
|
|
|
|
url_name="search_products_detailed",
|
|
|
|
)
|
|
|
|
@paginate(PageNumberPaginationExtra, page_size=50)
|
|
|
|
def search_products_detailed(self, filters: Query[ProductFilterSchema]):
|
|
|
|
"""Get the detailed information about the products."""
|
|
|
|
return filters.filter(
|
|
|
|
Product.objects.select_related("club")
|
|
|
|
.prefetch_related("buying_groups")
|
|
|
|
.select_related("product_type")
|
|
|
|
.order_by(
|
|
|
|
F("product_type__priority").desc(nulls_last=True),
|
|
|
|
"product_type",
|
|
|
|
"name",
|
2024-10-19 22:18:53 +00:00
|
|
|
)
|
|
|
|
)
|