2017-04-24 15:51:12 +00:00
|
|
|
# -*- coding:utf-8 -*
|
|
|
|
#
|
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
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2024-06-24 11:07:36 +00:00
|
|
|
from django.conf import settings
|
|
|
|
from django.core.exceptions import PermissionDenied
|
2016-08-19 14:13:40 +00:00
|
|
|
from rest_framework import serializers
|
2017-08-18 23:19:31 +00:00
|
|
|
from rest_framework.decorators import api_view, renderer_classes
|
|
|
|
from rest_framework.renderers import StaticHTMLRenderer
|
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 club.models import Club, Mailing
|
2016-08-19 14:13:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ClubSerializer(serializers.ModelSerializer):
|
|
|
|
class Meta:
|
|
|
|
model = Club
|
2018-10-04 19:29:19 +00:00
|
|
|
fields = ("id", "name", "unix_name", "address", "members")
|
2016-08-19 14:13:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ClubViewSet(RightModelViewSet):
|
|
|
|
"""
|
2020-08-27 13:59:42 +00:00
|
|
|
Manage Clubs (api/v1/club/)
|
2016-08-19 14:13:40 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
serializer_class = ClubSerializer
|
|
|
|
queryset = Club.objects.all()
|
2017-08-18 23:19:31 +00:00
|
|
|
|
|
|
|
|
2018-10-04 19:29:19 +00:00
|
|
|
@api_view(["GET"])
|
2017-08-18 23:19:31 +00:00
|
|
|
@renderer_classes((StaticHTMLRenderer,))
|
|
|
|
def FetchMailingLists(request):
|
2018-10-04 19:29:19 +00:00
|
|
|
key = request.GET.get("key", "")
|
2017-08-18 23:19:31 +00:00
|
|
|
if key != settings.SITH_MAILING_FETCH_KEY:
|
|
|
|
raise PermissionDenied
|
2018-10-04 19:29:19 +00:00
|
|
|
data = ""
|
|
|
|
for mailing in Mailing.objects.filter(
|
|
|
|
is_moderated=True, club__is_active=True
|
|
|
|
).all():
|
2017-08-25 14:14:02 +00:00
|
|
|
data += mailing.fetch_format() + "\n"
|
2017-08-18 23:19:31 +00:00
|
|
|
return Response(data)
|