2020-02-06 23:44:59 +01:00
|
|
|
# Copyright (C) 2018-2020 by BDE ENS Paris-Saclay
|
2020-02-06 23:29:17 +01:00
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
from django.conf.urls import url, include
|
|
|
|
from django.contrib.auth.models import User
|
2020-03-11 11:37:47 +01:00
|
|
|
from django.contrib.contenttypes.models import ContentType
|
2020-03-11 11:15:03 +01:00
|
|
|
from django_filters.rest_framework import DjangoFilterBackend
|
2020-03-18 14:42:35 +01:00
|
|
|
from rest_framework import routers, serializers
|
2020-03-11 11:15:03 +01:00
|
|
|
from rest_framework.filters import SearchFilter
|
2020-03-18 14:42:35 +01:00
|
|
|
from rest_framework.viewsets import ReadOnlyModelViewSet
|
2020-02-18 11:58:42 +01:00
|
|
|
from activity.api.urls import register_activity_urls
|
2020-03-18 14:42:35 +01:00
|
|
|
from api.viewsets import ReadProtectedModelViewSet
|
2020-02-18 11:58:42 +01:00
|
|
|
from member.api.urls import register_members_urls
|
|
|
|
from note.api.urls import register_note_urls
|
2020-03-22 16:04:09 +01:00
|
|
|
from treasury.api.urls import register_treasury_urls
|
2020-03-11 10:08:28 +01:00
|
|
|
from logs.api.urls import register_logs_urls
|
2020-03-18 14:42:35 +01:00
|
|
|
from permission.api.urls import register_permission_urls
|
2020-04-11 23:02:12 +02:00
|
|
|
from wei.api.urls import register_wei_urls
|
2020-02-06 23:29:17 +01:00
|
|
|
|
2020-02-17 14:08:40 +01:00
|
|
|
|
2020-02-07 20:47:49 +01:00
|
|
|
class UserSerializer(serializers.ModelSerializer):
|
2020-02-07 00:29:04 +01:00
|
|
|
"""
|
|
|
|
REST API Serializer for Users.
|
|
|
|
The djangorestframework plugin will analyse the model `User` and parse all fields in the API.
|
|
|
|
"""
|
2020-03-07 22:28:59 +01:00
|
|
|
|
2020-02-06 23:29:17 +01:00
|
|
|
class Meta:
|
|
|
|
model = User
|
2020-02-18 12:31:15 +01:00
|
|
|
exclude = (
|
|
|
|
'password',
|
|
|
|
'groups',
|
|
|
|
'user_permissions',
|
|
|
|
)
|
2020-02-06 23:29:17 +01:00
|
|
|
|
2020-03-11 12:41:44 +01:00
|
|
|
|
2020-03-11 11:37:47 +01:00
|
|
|
class ContentTypeSerializer(serializers.ModelSerializer):
|
|
|
|
"""
|
|
|
|
REST API Serializer for Users.
|
|
|
|
The djangorestframework plugin will analyse the model `User` and parse all fields in the API.
|
|
|
|
"""
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
model = ContentType
|
|
|
|
fields = '__all__'
|
|
|
|
|
2020-02-17 14:08:40 +01:00
|
|
|
|
2020-03-18 14:42:35 +01:00
|
|
|
class UserViewSet(ReadProtectedModelViewSet):
|
2020-02-07 00:29:04 +01:00
|
|
|
"""
|
|
|
|
REST API View set.
|
|
|
|
The djangorestframework plugin will get all `User` objects, serialize it to JSON with the given serializer,
|
|
|
|
then render it on /api/users/
|
|
|
|
"""
|
2020-02-06 23:29:17 +01:00
|
|
|
queryset = User.objects.all()
|
|
|
|
serializer_class = UserSerializer
|
2020-03-11 11:15:03 +01:00
|
|
|
filter_backends = [DjangoFilterBackend, SearchFilter]
|
|
|
|
filterset_fields = ['id', 'username', 'first_name', 'last_name', 'email', 'is_superuser', 'is_staff', 'is_active', ]
|
|
|
|
search_fields = ['$username', '$first_name', '$last_name', ]
|
2020-02-06 23:29:17 +01:00
|
|
|
|
2020-02-17 14:08:40 +01:00
|
|
|
|
2020-03-18 14:42:35 +01:00
|
|
|
# This ViewSet is the only one that is accessible from all authenticated users!
|
|
|
|
class ContentTypeViewSet(ReadOnlyModelViewSet):
|
2020-03-11 11:37:47 +01:00
|
|
|
"""
|
|
|
|
REST API View set.
|
|
|
|
The djangorestframework plugin will get all `User` objects, serialize it to JSON with the given serializer,
|
|
|
|
then render it on /api/users/
|
|
|
|
"""
|
|
|
|
queryset = ContentType.objects.all()
|
|
|
|
serializer_class = ContentTypeSerializer
|
|
|
|
|
|
|
|
|
2020-02-06 23:29:17 +01:00
|
|
|
# Routers provide an easy way of automatically determining the URL conf.
|
2020-02-18 11:58:42 +01:00
|
|
|
# Register each app API router and user viewset
|
2020-02-06 23:29:17 +01:00
|
|
|
router = routers.DefaultRouter()
|
2020-03-11 11:37:47 +01:00
|
|
|
router.register('models', ContentTypeViewSet)
|
2020-02-08 15:08:55 +01:00
|
|
|
router.register('user', UserViewSet)
|
2020-02-08 17:17:00 +01:00
|
|
|
register_members_urls(router, 'members')
|
|
|
|
register_activity_urls(router, 'activity')
|
|
|
|
register_note_urls(router, 'note')
|
2020-03-22 16:04:09 +01:00
|
|
|
register_treasury_urls(router, 'treasury')
|
2020-03-18 14:42:35 +01:00
|
|
|
register_permission_urls(router, 'permission')
|
2020-03-11 10:08:28 +01:00
|
|
|
register_logs_urls(router, 'logs')
|
2020-04-11 23:02:12 +02:00
|
|
|
register_wei_urls(router, 'wei')
|
2020-02-06 23:29:17 +01:00
|
|
|
|
2020-02-17 19:44:56 +01:00
|
|
|
app_name = 'api'
|
|
|
|
|
2020-02-06 23:29:17 +01:00
|
|
|
# Wire up our API using automatic URL routing.
|
|
|
|
# Additionally, we include login URLs for the browsable API.
|
|
|
|
urlpatterns = [
|
2020-02-08 17:17:00 +01:00
|
|
|
url('^', include(router.urls)),
|
2020-02-17 19:25:33 +01:00
|
|
|
url('^api-auth/', include('rest_framework.urls', namespace='rest_framework')),
|
2020-02-17 14:08:40 +01:00
|
|
|
]
|