2020-02-07 16:02:07 +00:00
|
|
|
# Copyright (C) 2018-2020 by BDE ENS Paris-Saclay
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2020-02-08 16:17:00 +00:00
|
|
|
from django.db.models import Q
|
2020-03-11 10:15:03 +00:00
|
|
|
from django_filters.rest_framework import DjangoFilterBackend
|
2020-02-17 13:08:40 +00:00
|
|
|
from rest_framework import viewsets
|
2020-03-11 10:15:03 +00:00
|
|
|
from rest_framework.filters import SearchFilter
|
2020-02-17 13:08:40 +00:00
|
|
|
|
|
|
|
from .serializers import NoteSerializer, NotePolymorphicSerializer, NoteClubSerializer, NoteSpecialSerializer, \
|
|
|
|
NoteUserSerializer, AliasSerializer, \
|
2020-03-11 10:15:03 +00:00
|
|
|
TemplateCategorySerializer, TransactionTemplateSerializer, TransactionPolymorphicSerializer
|
2020-03-07 21:28:59 +00:00
|
|
|
from ..models.notes import Note, NoteClub, NoteSpecial, NoteUser, Alias
|
2020-03-11 10:15:03 +00:00
|
|
|
from ..models.transactions import TransactionTemplate, Transaction, TemplateCategory
|
2020-02-07 16:02:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
class NoteViewSet(viewsets.ModelViewSet):
|
|
|
|
"""
|
|
|
|
REST API View set.
|
|
|
|
The djangorestframework plugin will get all `Note` objects, serialize it to JSON with the given serializer,
|
|
|
|
then render it on /api/note/note/
|
|
|
|
"""
|
|
|
|
queryset = Note.objects.all()
|
|
|
|
serializer_class = NoteSerializer
|
|
|
|
|
|
|
|
|
|
|
|
class NoteClubViewSet(viewsets.ModelViewSet):
|
|
|
|
"""
|
|
|
|
REST API View set.
|
|
|
|
The djangorestframework plugin will get all `NoteClub` objects, serialize it to JSON with the given serializer,
|
|
|
|
then render it on /api/note/club/
|
|
|
|
"""
|
|
|
|
queryset = NoteClub.objects.all()
|
|
|
|
serializer_class = NoteClubSerializer
|
|
|
|
|
|
|
|
|
|
|
|
class NoteSpecialViewSet(viewsets.ModelViewSet):
|
|
|
|
"""
|
|
|
|
REST API View set.
|
|
|
|
The djangorestframework plugin will get all `NoteSpecial` objects, serialize it to JSON with the given serializer,
|
|
|
|
then render it on /api/note/special/
|
|
|
|
"""
|
|
|
|
queryset = NoteSpecial.objects.all()
|
|
|
|
serializer_class = NoteSpecialSerializer
|
|
|
|
|
|
|
|
|
|
|
|
class NoteUserViewSet(viewsets.ModelViewSet):
|
|
|
|
"""
|
|
|
|
REST API View set.
|
|
|
|
The djangorestframework plugin will get all `NoteUser` objects, serialize it to JSON with the given serializer,
|
|
|
|
then render it on /api/note/user/
|
|
|
|
"""
|
|
|
|
queryset = NoteUser.objects.all()
|
|
|
|
serializer_class = NoteUserSerializer
|
|
|
|
|
|
|
|
|
2020-02-07 19:47:49 +00:00
|
|
|
class NotePolymorphicViewSet(viewsets.ModelViewSet):
|
|
|
|
"""
|
|
|
|
REST API View set.
|
2020-02-08 16:17:00 +00:00
|
|
|
The djangorestframework plugin will get all `Note` objects (with polymorhism), serialize it to JSON with the given serializer,
|
|
|
|
then render it on /api/note/note/
|
2020-02-07 19:47:49 +00:00
|
|
|
"""
|
|
|
|
queryset = Note.objects.all()
|
|
|
|
serializer_class = NotePolymorphicSerializer
|
|
|
|
|
2020-02-08 16:17:00 +00:00
|
|
|
def get_queryset(self):
|
|
|
|
"""
|
|
|
|
Parse query and apply filters.
|
|
|
|
:return: The filtered set of requested notes
|
|
|
|
"""
|
|
|
|
queryset = Note.objects.all()
|
|
|
|
|
|
|
|
alias = self.request.query_params.get("alias", ".*")
|
2020-02-18 11:31:15 +00:00
|
|
|
queryset = queryset.filter(
|
2020-03-10 16:16:03 +00:00
|
|
|
Q(alias__name__regex="^" + alias)
|
|
|
|
| Q(alias__normalized_name__regex="^" + alias.lower()))
|
2020-02-08 16:17:00 +00:00
|
|
|
|
|
|
|
note_type = self.request.query_params.get("type", None)
|
|
|
|
if note_type:
|
2020-02-18 20:14:29 +00:00
|
|
|
types = str(note_type).lower()
|
|
|
|
if "user" in types:
|
2020-02-08 16:17:00 +00:00
|
|
|
queryset = queryset.filter(polymorphic_ctype__model="noteuser")
|
2020-02-18 20:14:29 +00:00
|
|
|
elif "club" in types:
|
2020-02-08 16:17:00 +00:00
|
|
|
queryset = queryset.filter(polymorphic_ctype__model="noteclub")
|
2020-02-18 20:14:29 +00:00
|
|
|
elif "special" in types:
|
2020-02-18 11:31:15 +00:00
|
|
|
queryset = queryset.filter(
|
|
|
|
polymorphic_ctype__model="notespecial")
|
2020-02-08 16:17:00 +00:00
|
|
|
else:
|
|
|
|
queryset = queryset.none()
|
|
|
|
|
|
|
|
return queryset
|
|
|
|
|
2020-02-07 19:47:49 +00:00
|
|
|
|
2020-02-08 14:08:55 +00:00
|
|
|
class AliasViewSet(viewsets.ModelViewSet):
|
|
|
|
"""
|
|
|
|
REST API View set.
|
|
|
|
The djangorestframework plugin will get all `Alias` objects, serialize it to JSON with the given serializer,
|
|
|
|
then render it on /api/aliases/
|
|
|
|
"""
|
|
|
|
queryset = Alias.objects.all()
|
|
|
|
serializer_class = AliasSerializer
|
|
|
|
|
2020-02-08 16:17:00 +00:00
|
|
|
def get_queryset(self):
|
|
|
|
"""
|
|
|
|
Parse query and apply filters.
|
|
|
|
:return: The filtered set of requested aliases
|
|
|
|
"""
|
|
|
|
|
|
|
|
queryset = Alias.objects.all()
|
|
|
|
|
|
|
|
alias = self.request.query_params.get("alias", ".*")
|
2020-02-18 11:31:15 +00:00
|
|
|
queryset = queryset.filter(
|
2020-03-10 16:16:03 +00:00
|
|
|
Q(name__regex="^" + alias) | Q(normalized_name__regex="^" + alias.lower()))
|
2020-02-08 16:17:00 +00:00
|
|
|
|
|
|
|
note_id = self.request.query_params.get("note", None)
|
|
|
|
if note_id:
|
|
|
|
queryset = queryset.filter(id=note_id)
|
|
|
|
|
|
|
|
note_type = self.request.query_params.get("type", None)
|
|
|
|
if note_type:
|
2020-02-18 20:14:29 +00:00
|
|
|
types = str(note_type).lower()
|
|
|
|
if "user" in types:
|
2020-02-18 11:31:15 +00:00
|
|
|
queryset = queryset.filter(
|
|
|
|
note__polymorphic_ctype__model="noteuser")
|
2020-02-18 20:14:29 +00:00
|
|
|
elif "club" in types:
|
2020-02-18 11:31:15 +00:00
|
|
|
queryset = queryset.filter(
|
|
|
|
note__polymorphic_ctype__model="noteclub")
|
2020-02-18 20:14:29 +00:00
|
|
|
elif "special" in types:
|
2020-02-18 11:31:15 +00:00
|
|
|
queryset = queryset.filter(
|
|
|
|
note__polymorphic_ctype__model="notespecial")
|
2020-02-08 16:17:00 +00:00
|
|
|
else:
|
|
|
|
queryset = queryset.none()
|
|
|
|
|
|
|
|
return queryset
|
|
|
|
|
2020-02-08 14:08:55 +00:00
|
|
|
|
2020-03-11 00:03:15 +00:00
|
|
|
class TemplateCategoryViewSet(viewsets.ModelViewSet):
|
|
|
|
"""
|
|
|
|
REST API View set.
|
|
|
|
The djangorestframework plugin will get all `TemplateCategory` objects, serialize it to JSON with the given serializer,
|
|
|
|
then render it on /api/note/transaction/category/
|
|
|
|
"""
|
|
|
|
queryset = TemplateCategory.objects.all()
|
|
|
|
serializer_class = TemplateCategorySerializer
|
2020-03-11 10:15:03 +00:00
|
|
|
filter_backends = [SearchFilter]
|
|
|
|
search_fields = ['$name', ]
|
2020-03-11 00:03:15 +00:00
|
|
|
|
|
|
|
|
2020-02-07 16:02:07 +00:00
|
|
|
class TransactionTemplateViewSet(viewsets.ModelViewSet):
|
|
|
|
"""
|
|
|
|
REST API View set.
|
|
|
|
The djangorestframework plugin will get all `TransactionTemplate` objects, serialize it to JSON with the given serializer,
|
|
|
|
then render it on /api/note/transaction/template/
|
|
|
|
"""
|
|
|
|
queryset = TransactionTemplate.objects.all()
|
|
|
|
serializer_class = TransactionTemplateSerializer
|
2020-03-11 10:15:03 +00:00
|
|
|
filter_backends = [DjangoFilterBackend]
|
|
|
|
filterset_fields = ['name', 'amount', 'display', 'category', ]
|
2020-02-07 16:02:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
class TransactionViewSet(viewsets.ModelViewSet):
|
|
|
|
"""
|
|
|
|
REST API View set.
|
|
|
|
The djangorestframework plugin will get all `Transaction` objects, serialize it to JSON with the given serializer,
|
|
|
|
then render it on /api/note/transaction/transaction/
|
|
|
|
"""
|
|
|
|
queryset = Transaction.objects.all()
|
2020-03-11 10:15:03 +00:00
|
|
|
serializer_class = TransactionPolymorphicSerializer
|
|
|
|
filter_backends = [SearchFilter]
|
|
|
|
search_fields = ['$reason', ]
|