mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-04 13:15:24 +00:00
moved jwt authentication to api app
This commit is contained in:
parent
ee2b1e76d3
commit
c1ae99f27d
10 changed files with 48 additions and 11 deletions
backend/src/baserow
api
config
0
backend/src/baserow/api/__init__.py
Normal file
0
backend/src/baserow/api/__init__.py
Normal file
1
backend/src/baserow/api/v0/__init__.py
Normal file
1
backend/src/baserow/api/v0/__init__.py
Normal file
|
@ -0,0 +1 @@
|
|||
app_name = 'baserow.api.v0'
|
5
backend/src/baserow/api/v0/apps.py
Normal file
5
backend/src/baserow/api/v0/apps.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class ApiConfig(AppConfig):
|
||||
name = 'baserow.api.v0'
|
8
backend/src/baserow/api/v0/jwt.py
Normal file
8
backend/src/baserow/api/v0/jwt.py
Normal file
|
@ -0,0 +1,8 @@
|
|||
from .serializers.user import UserSerializer
|
||||
|
||||
|
||||
def jwt_response_payload_handler(token, user=None, request=None):
|
||||
return {
|
||||
'token': token,
|
||||
'data': UserSerializer(user, context={'request': request}).data
|
||||
}
|
0
backend/src/baserow/api/v0/migrations/__init__.py
Normal file
0
backend/src/baserow/api/v0/migrations/__init__.py
Normal file
0
backend/src/baserow/api/v0/serializers/__init__.py
Normal file
0
backend/src/baserow/api/v0/serializers/__init__.py
Normal file
10
backend/src/baserow/api/v0/serializers/user.py
Normal file
10
backend/src/baserow/api/v0/serializers/user.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
from rest_framework import serializers
|
||||
from django.contrib.auth import get_user_model
|
||||
|
||||
User = get_user_model()
|
||||
|
||||
|
||||
class UserSerializer(serializers.ModelSerializer):
|
||||
class Meta:
|
||||
model = User
|
||||
fields = ('id', 'first_name', 'username')
|
18
backend/src/baserow/api/v0/urls.py
Normal file
18
backend/src/baserow/api/v0/urls.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
from django.urls import path, include
|
||||
from django.conf.urls import url
|
||||
|
||||
from rest_framework import routers
|
||||
from rest_framework_jwt.views import (
|
||||
obtain_jwt_token, refresh_jwt_token, verify_jwt_token
|
||||
)
|
||||
|
||||
|
||||
app_name = 'baserow.api.v0'
|
||||
router = routers.DefaultRouter()
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^token-auth/', obtain_jwt_token),
|
||||
url(r'^token-refresh/', refresh_jwt_token),
|
||||
url(r'^token-verify/', verify_jwt_token),
|
||||
path('', include(router.urls)),
|
||||
]
|
|
@ -23,7 +23,9 @@ INSTALLED_APPS = [
|
|||
'django.contrib.staticfiles',
|
||||
|
||||
'rest_framework',
|
||||
'corsheaders'
|
||||
'corsheaders',
|
||||
|
||||
'baserow.api.v0'
|
||||
]
|
||||
|
||||
MIDDLEWARE = [
|
||||
|
@ -130,4 +132,5 @@ JWT_AUTH = {
|
|||
'JWT_EXPIRATION_DELTA': datetime.timedelta(seconds=300),
|
||||
'JWT_ALLOW_REFRESH': True,
|
||||
'JWT_REFRESH_EXPIRATION_DELTA': datetime.timedelta(days=7),
|
||||
'JWT_RESPONSE_PAYLOAD_HANDLER': 'baserow.api.v0.jwt.jwt_response_payload_handler'
|
||||
}
|
||||
|
|
|
@ -1,15 +1,7 @@
|
|||
from django.urls import path, include
|
||||
from django.urls import include
|
||||
from django.conf.urls import url
|
||||
|
||||
from rest_framework import routers
|
||||
from rest_framework_jwt.views import obtain_jwt_token, refresh_jwt_token
|
||||
|
||||
|
||||
router = routers.DefaultRouter()
|
||||
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^api/token-auth/', obtain_jwt_token),
|
||||
url(r'^api/token-refresh/', refresh_jwt_token),
|
||||
path('api/', include(router.urls)),
|
||||
url(r'^api/', include('baserow.api.v0.urls', namespace='api')),
|
||||
]
|
||||
|
|
Loading…
Add table
Reference in a new issue