2020-03-01 08:56:21 +03:00
|
|
|
from importlib import import_module
|
2020-03-22 13:41:16 +03:00
|
|
|
|
2020-06-23 20:28:18 +03:00
|
|
|
from django.conf import settings
|
|
|
|
|
2020-03-01 08:56:21 +03:00
|
|
|
|
|
|
|
def import_callable(path_or_callable):
|
|
|
|
if hasattr(path_or_callable, '__call__'):
|
|
|
|
return path_or_callable
|
|
|
|
else:
|
|
|
|
assert isinstance(path_or_callable, str)
|
|
|
|
package, attr = path_or_callable.rsplit('.', 1)
|
|
|
|
return getattr(import_module(package), attr)
|
|
|
|
|
2016-01-01 00:10:52 +03:00
|
|
|
|
2016-01-08 00:45:28 +03:00
|
|
|
def default_create_token(token_model, user, serializer):
|
2016-01-01 00:10:52 +03:00
|
|
|
token, _ = token_model.objects.get_or_create(user=user)
|
|
|
|
return token
|
2016-02-16 07:35:32 +03:00
|
|
|
|
2016-03-01 14:51:01 +03:00
|
|
|
|
2020-06-23 20:28:18 +03:00
|
|
|
def jwt_encode(user):
|
2020-06-15 00:26:28 +03:00
|
|
|
from rest_framework_simplejwt.serializers import TokenObtainPairSerializer
|
2020-07-03 07:26:48 +03:00
|
|
|
rest_auth_serializers = getattr(settings, 'REST_AUTH_SERIALIZERS', {})
|
|
|
|
|
|
|
|
JWTTokenClaimsSerializer = rest_auth_serializers.get(
|
|
|
|
'JWT_TOKEN_CLAIMS_SERIALIZER',
|
|
|
|
TokenObtainPairSerializer
|
|
|
|
)
|
|
|
|
|
|
|
|
TOPS = import_callable(JWTTokenClaimsSerializer)
|
2020-06-23 20:28:18 +03:00
|
|
|
refresh = TOPS.get_token(user)
|
|
|
|
return refresh.access_token, refresh
|
2020-06-15 00:26:28 +03:00
|
|
|
|
2020-03-22 13:41:16 +03:00
|
|
|
|
2020-06-23 20:28:18 +03:00
|
|
|
try:
|
|
|
|
from .jwt_auth import JWTCookieAuthentication
|
2020-03-22 13:41:16 +03:00
|
|
|
except ImportError:
|
2020-06-23 20:28:18 +03:00
|
|
|
pass
|