Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix dj rest auth response jwt with expiration #1149

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 52 additions & 8 deletions drf_spectacular/contrib/rest_auth.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from django.conf import settings
from django.utils.translation import gettext_lazy as _
from django.utils.version import get_version_tuple
from rest_framework import serializers

Expand All @@ -10,31 +11,41 @@
from drf_spectacular.utils import extend_schema


def get_dj_rest_auth_setting(class_name, setting_name):
def get_dj_rest_auth_setting(class_name, setting_name, default=None):
from dj_rest_auth.__version__ import __version__

if get_version_tuple(__version__) < (3, 0, 0):
from dj_rest_auth import app_settings
try:
if get_version_tuple(__version__) < (3, 0, 0):
from dj_rest_auth import app_settings

Check warning on line 19 in drf_spectacular/contrib/rest_auth.py

View check run for this annotation

Codecov / codecov/patch

drf_spectacular/contrib/rest_auth.py#L19

Added line #L19 was not covered by tests

return getattr(app_settings, class_name)
else:
from dj_rest_auth.app_settings import api_settings
return getattr(app_settings, class_name)

Check warning on line 21 in drf_spectacular/contrib/rest_auth.py

View check run for this annotation

Codecov / codecov/patch

drf_spectacular/contrib/rest_auth.py#L21

Added line #L21 was not covered by tests
else:
from dj_rest_auth.app_settings import api_settings

return getattr(api_settings, setting_name)
return getattr(api_settings, setting_name)
except AttributeError:
if default is not None:
return default
raise

Check warning on line 29 in drf_spectacular/contrib/rest_auth.py

View check run for this annotation

Codecov / codecov/patch

drf_spectacular/contrib/rest_auth.py#L26-L29

Added lines #L26 - L29 were not covered by tests


def get_token_serializer_class():
from dj_rest_auth.__version__ import __version__

if get_version_tuple(__version__) < (3, 0, 0):
use_jwt = getattr(settings, 'REST_USE_JWT', False)
jwt_return_expiration = False

Check warning on line 37 in drf_spectacular/contrib/rest_auth.py

View check run for this annotation

Codecov / codecov/patch

drf_spectacular/contrib/rest_auth.py#L37

Added line #L37 was not covered by tests
else:
from dj_rest_auth.app_settings import api_settings

use_jwt = api_settings.USE_JWT
jwt_return_expiration = api_settings.JWT_AUTH_RETURN_EXPIRATION

if use_jwt:
return get_dj_rest_auth_setting('JWTSerializer', 'JWT_SERIALIZER')
if jwt_return_expiration:
return get_dj_rest_auth_setting('JWTSerializer', 'JWT_SERIALIZER_WITH_EXPIRATION')
else:
return get_dj_rest_auth_setting('JWTSerializer', 'JWT_SERIALIZER')
else:
return get_dj_rest_auth_setting('TokenSerializer', 'TOKEN_SERIALIZER')

Expand Down Expand Up @@ -118,13 +129,46 @@
return auto_schema._map_serializer(Fixed, direction)


class RestAuthJWTSerializerWithExpiration(RestAuthJWTSerializer):
target_class = 'dj_rest_auth.serializers.JWTSerializerWithExpiration'

def get_name(self):
return 'JWTWithExpiration'


class CookieTokenRefreshSerializerExtension(TokenRefreshSerializerExtension):
target_class = 'dj_rest_auth.jwt_auth.CookieTokenRefreshSerializer'
optional = True

def get_name(self):
return 'TokenRefresh'

def map_serializer(self, auto_schema, direction):
jwt_auth_return_expiration = get_dj_rest_auth_setting(
'JWT_AUTH_RETURN_EXPIRATION',
'JWT_AUTH_RETURN_EXPIRATION',
False
)

if not jwt_auth_return_expiration:
return super().map_serializer(auto_schema, direction)

from rest_framework_simplejwt.settings import api_settings as jwt_settings

if jwt_settings.ROTATE_REFRESH_TOKENS:
class Fixed(serializers.Serializer):
access = serializers.CharField(read_only=True)
refresh = serializers.CharField(required=False, help_text=_('WIll override cookie.'))
access_expiration = serializers.DateTimeField(read_only=True)
refresh_expiration = serializers.DateTimeField(read_only=True)
else:
class Fixed(serializers.Serializer):
access = serializers.CharField(read_only=True)
access_expiration = serializers.DateTimeField(read_only=True)
refresh = serializers.CharField(write_only=True, required=False, help_text=_('WIll override cookie.'))

return auto_schema._map_serializer(Fixed, direction)


class RestAuthRegisterView(OpenApiViewExtension):
target_class = 'dj_rest_auth.registration.views.RegisterView'
Expand Down
43 changes: 43 additions & 0 deletions tests/contrib/test_rest_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,49 @@ def test_rest_auth_token(no_warnings, settings):
)


@pytest.mark.contrib('dj_rest_auth', 'allauth', 'rest_framework_simplejwt')
@mock.patch('drf_spectacular.settings.spectacular_settings.SCHEMA_PATH_PREFIX', '')
@mock.patch('dj_rest_auth.app_settings.api_settings.USE_JWT', True)
@mock.patch('dj_rest_auth.app_settings.api_settings.JWT_AUTH_RETURN_EXPIRATION', True, create=True)
def test_rest_auth_token_with_expiration(no_warnings, settings):
import dj_rest_auth.urls
reload(dj_rest_auth.urls)

urlpatterns = [
# path('rest-auth/', include(urlpatterns)),
path('rest-auth/', include('dj_rest_auth.urls')),
path('rest-auth/registration/', include('dj_rest_auth.registration.urls')),
]

schema = generate_schema(None, patterns=urlpatterns)

assert_schema(
schema, 'tests/contrib/test_rest_auth_token_with_expiration.yml', transforms=transforms
)


@pytest.mark.contrib('dj_rest_auth', 'allauth', 'rest_framework_simplejwt')
@mock.patch('drf_spectacular.settings.spectacular_settings.SCHEMA_PATH_PREFIX', '')
@mock.patch('dj_rest_auth.app_settings.api_settings.USE_JWT', True)
@mock.patch('dj_rest_auth.app_settings.api_settings.JWT_AUTH_RETURN_EXPIRATION', True, create=True)
@mock.patch('rest_framework_simplejwt.settings.api_settings.ROTATE_REFRESH_TOKENS', True, create=True)
def test_rest_auth_rotate_token_with_expiration(no_warnings, settings):
import dj_rest_auth.urls
reload(dj_rest_auth.urls)

urlpatterns = [
# path('rest-auth/', include(urlpatterns)),
path('rest-auth/', include('dj_rest_auth.urls')),
path('rest-auth/registration/', include('dj_rest_auth.registration.urls')),
]

schema = generate_schema(None, patterns=urlpatterns)

assert_schema(
schema, 'tests/contrib/test_rest_auth_rotate_token_with_expiration.yml', transforms=transforms
)


@pytest.mark.contrib('dj_rest_auth', 'rest_framework_simplejwt')
@mock.patch('django.conf.settings.JWT_AUTH_COOKIE', 'jwt-session', create=True)
@mock.patch('dj_rest_auth.app_settings.api_settings.JWT_AUTH_COOKIE', 'jwt-session', create=True)
Expand Down
Loading