mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-10-31 07:49:57 +01:00 
			
		
		
		
	API
This commit is contained in:
		
							
								
								
									
										29
									
								
								apps/api/urls.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										29
									
								
								apps/api/urls.py
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,29 @@ | ||||
| # -*- mode: python; coding: utf-8 -*- | ||||
| # Copyright (C) 2018-2019 by BDE ENS Paris-Saclay | ||||
| # SPDX-License-Identifier: GPL-3.0-or-later | ||||
|  | ||||
| from django.conf.urls import url, include | ||||
| from django.contrib.auth.models import User | ||||
| from rest_framework import routers, serializers, viewsets | ||||
|  | ||||
| # Serializers define the API representation. | ||||
| class UserSerializer(serializers.HyperlinkedModelSerializer): | ||||
|     class Meta: | ||||
|         model = User | ||||
|         fields = ['url', 'username', 'email', 'is_staff'] | ||||
|  | ||||
| # ViewSets define the view behavior. | ||||
| class UserViewSet(viewsets.ModelViewSet): | ||||
|     queryset = User.objects.all() | ||||
|     serializer_class = UserSerializer | ||||
|  | ||||
| # Routers provide an easy way of automatically determining the URL conf. | ||||
| router = routers.DefaultRouter() | ||||
| router.register(r'users', UserViewSet) | ||||
|  | ||||
| # Wire up our API using automatic URL routing. | ||||
| # Additionally, we include login URLs for the browsable API. | ||||
| urlpatterns = [ | ||||
|     url(r'^', include(router.urls)), | ||||
|     url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')) | ||||
| ] | ||||
| @@ -50,6 +50,8 @@ INSTALLED_APPS = [ | ||||
|     'django.contrib.sites', | ||||
|     'django.contrib.messages', | ||||
|     'django.contrib.staticfiles', | ||||
|     # API | ||||
|     'rest_framework', | ||||
|  | ||||
|     # Note apps | ||||
|     'activity', | ||||
| @@ -117,6 +119,14 @@ AUTHENTICATION_BACKENDS = ( | ||||
|     'guardian.backends.ObjectPermissionBackend', | ||||
| ) | ||||
|  | ||||
| REST_FRAMEWORK = { | ||||
|     # Use Django's standard `django.contrib.auth` permissions, | ||||
|     # or allow read-only access for unauthenticated users. | ||||
|     'DEFAULT_PERMISSION_CLASSES': [ | ||||
|         'rest_framework.permissions.DjangoModelPermissionsOrAnonReadOnly' | ||||
|     ] | ||||
| } | ||||
|  | ||||
| ANONYMOUS_USER_NAME = None  # Disable guardian anonymous user | ||||
|  | ||||
| GUARDIAN_GET_CONTENT_TYPE = 'polymorphic.contrib.guardian.get_polymorphic_base_content_type' | ||||
|   | ||||
| @@ -19,4 +19,7 @@ urlpatterns = [ | ||||
|     path('accounts/', include('django.contrib.auth.urls')), | ||||
|     path('admin/doc/', include('django.contrib.admindocs.urls')), | ||||
|     path('admin/', admin.site.urls), | ||||
|  | ||||
|     # Include Django REST API | ||||
|     path('api/', include('api.urls')), | ||||
| ] | ||||
|   | ||||
| @@ -21,3 +21,4 @@ requests-oauthlib==1.2.0 | ||||
| six==1.12.0 | ||||
| sqlparse==0.3.0 | ||||
| urllib3==1.25.3 | ||||
| djangorestframework==3.11.0 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user