mirror of
https://github.com/taigaio/taiga-back
synced 2025-10-06 00:02:52 +02:00
49 lines
1.4 KiB
Python
49 lines
1.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
#
|
|
# Copyright (c) 2021-present Kaleidos Ventures SL
|
|
|
|
from django.contrib.auth import get_user_model
|
|
from taiga.base import exceptions as exc
|
|
|
|
from django.apps import apps
|
|
from django.core import signing
|
|
from django.utils.translation import ugettext as _
|
|
|
|
|
|
def get_token_for_user(user, scope):
|
|
"""
|
|
Generate a new signed token containing
|
|
a specified user limited for a scope (identified as a string).
|
|
"""
|
|
data = {"user_%s_id" % (scope): user.id}
|
|
return signing.dumps(data)
|
|
|
|
|
|
def get_user_for_token(token, scope, max_age=None):
|
|
"""
|
|
Given a selfcontained token and a scope try to parse and
|
|
unsign it.
|
|
|
|
If max_age is specified it checks token expiration.
|
|
|
|
If token passes a validation, returns
|
|
a user instance corresponding with user_id stored
|
|
in the incoming token.
|
|
"""
|
|
try:
|
|
data = signing.loads(token, max_age=max_age)
|
|
except signing.BadSignature:
|
|
raise exc.NotAuthenticated(_("Invalid token"))
|
|
|
|
model_cls = get_user_model()
|
|
|
|
try:
|
|
user = model_cls.objects.get(pk=data["user_%s_id" % (scope)])
|
|
except (model_cls.DoesNotExist, KeyError):
|
|
raise exc.NotAuthenticated(_("Invalid token"))
|
|
else:
|
|
return user
|