2017-04-24 15:51:12 +00:00
|
|
|
#
|
2023-04-04 16:39:45 +00:00
|
|
|
# Copyright 2023 © AE UTBM
|
|
|
|
# ae@utbm.fr / ae.info@utbm.fr
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
2023-04-04 16:39:45 +00:00
|
|
|
# This file is part of the website of the UTBM Student Association (AE UTBM),
|
|
|
|
# https://ae.utbm.fr.
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
2023-04-04 16:39:45 +00:00
|
|
|
# You can find the source code of the website at https://github.com/ae-utbm/sith3
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
2023-04-04 16:39:45 +00:00
|
|
|
# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3)
|
|
|
|
# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE
|
|
|
|
# OR WITHIN THE LOCAL FILE "LICENSE"
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2016-08-19 14:13:40 +00:00
|
|
|
import datetime
|
|
|
|
|
|
|
|
from rest_framework import serializers
|
2019-10-06 15:59:38 +00:00
|
|
|
from rest_framework.decorators import action
|
2024-06-24 11:07:36 +00:00
|
|
|
from rest_framework.response import Response
|
2016-08-19 14:13:40 +00:00
|
|
|
|
|
|
|
from api.views import RightModelViewSet
|
2024-06-24 11:07:36 +00:00
|
|
|
from core.models import User
|
2016-08-19 14:13:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
class UserSerializer(serializers.ModelSerializer):
|
|
|
|
class Meta:
|
|
|
|
model = User
|
2018-10-04 19:29:19 +00:00
|
|
|
fields = (
|
|
|
|
"id",
|
|
|
|
"first_name",
|
|
|
|
"last_name",
|
|
|
|
"email",
|
|
|
|
"date_of_birth",
|
|
|
|
"nick_name",
|
|
|
|
"is_active",
|
|
|
|
"date_joined",
|
|
|
|
)
|
2016-08-19 14:13:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
class UserViewSet(RightModelViewSet):
|
|
|
|
"""
|
2020-08-27 13:59:42 +00:00
|
|
|
Manage Users (api/v1/user/)
|
|
|
|
Only show active users
|
2016-08-19 14:13:40 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
serializer_class = UserSerializer
|
|
|
|
queryset = User.objects.filter(is_active=True)
|
|
|
|
|
2019-10-06 15:59:38 +00:00
|
|
|
@action(detail=False)
|
2016-08-19 14:13:40 +00:00
|
|
|
def birthday(self, request):
|
|
|
|
"""
|
2020-08-27 13:59:42 +00:00
|
|
|
Return all users born today (api/v1/user/birstdays)
|
2016-08-19 14:13:40 +00:00
|
|
|
"""
|
|
|
|
date = datetime.datetime.today()
|
|
|
|
self.queryset = self.queryset.filter(date_of_birth=date)
|
|
|
|
serializer = self.get_serializer(self.queryset, many=True)
|
|
|
|
return Response(serializer.data)
|