Merge branch 'v0.2.x' of https://github.com/juanifioren/django-oidc-provider into v0.3.x
Conflicts: oidc_provider/lib/utils/common.py oidc_provider/lib/utils/token.py
This commit is contained in:
commit
a4d5f89536
5 changed files with 16 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -9,3 +9,4 @@ dist/
|
||||||
src/
|
src/
|
||||||
.venv
|
.venv
|
||||||
.idea
|
.idea
|
||||||
|
docs/_build/
|
||||||
|
|
|
@ -96,7 +96,16 @@ OIDC_IDTOKEN_PROCESSING_HOOK
|
||||||
============================
|
============================
|
||||||
|
|
||||||
OPTIONAL. ``str``. A string with the location of your function hook.
|
OPTIONAL. ``str``. A string with the location of your function hook.
|
||||||
here you can add extra dictionary values specific for your app into id_token.
|
Here you can add extra dictionary values specific for your app into id_token.
|
||||||
|
|
||||||
|
The function receives a ``id_token`` dictionary and ``user`` instance
|
||||||
|
and returns it with additional fields.
|
||||||
|
|
||||||
|
Default is::
|
||||||
|
|
||||||
|
def default_idtoken_processing_hook(id_token, user):
|
||||||
|
|
||||||
|
return id_token
|
||||||
|
|
||||||
OIDC_IDTOKEN_SUB_GENERATOR
|
OIDC_IDTOKEN_SUB_GENERATOR
|
||||||
==========================
|
==========================
|
||||||
|
|
|
@ -55,8 +55,10 @@ def default_idtoken_processing_hook(id_token, user):
|
||||||
|
|
||||||
:param id_token: dictionary contains values that going to be serialized into `id_token`
|
:param id_token: dictionary contains values that going to be serialized into `id_token`
|
||||||
:type id_token: dict
|
:type id_token: dict
|
||||||
|
|
||||||
:param user: user for whom id_token is generated
|
:param user: user for whom id_token is generated
|
||||||
:type user: User
|
:type user: User
|
||||||
|
|
||||||
:return: custom modified dictionary of values for `id_token`
|
:return: custom modified dictionary of values for `id_token`
|
||||||
:rtype dict
|
:rtype dict
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -108,9 +108,10 @@ def fake_sub_generator(user):
|
||||||
return user.email
|
return user.email
|
||||||
|
|
||||||
|
|
||||||
def fake_idtoken_processing_hook(id_token):
|
def fake_idtoken_processing_hook(id_token, user):
|
||||||
"""
|
"""
|
||||||
Fake function for inserting some keys into token. Testing OIDC_IDTOKEN_PROCESSING_HOOK.
|
Fake function for inserting some keys into token. Testing OIDC_IDTOKEN_PROCESSING_HOOK.
|
||||||
"""
|
"""
|
||||||
id_token['test_idtoken_processing_hook'] = FAKE_RANDOM_STRING
|
id_token['test_idtoken_processing_hook'] = FAKE_RANDOM_STRING
|
||||||
|
id_token['test_idtoken_processing_hook_user_email'] = user.email
|
||||||
return id_token
|
return id_token
|
||||||
|
|
|
@ -352,3 +352,4 @@ class TokenTestCase(TestCase):
|
||||||
id_token = JWT().unpack(response_dic['id_token'].encode('utf-8')).payload()
|
id_token = JWT().unpack(response_dic['id_token'].encode('utf-8')).payload()
|
||||||
|
|
||||||
self.assertEqual(id_token.get('test_idtoken_processing_hook'), FAKE_RANDOM_STRING)
|
self.assertEqual(id_token.get('test_idtoken_processing_hook'), FAKE_RANDOM_STRING)
|
||||||
|
self.assertEqual(id_token.get('test_idtoken_processing_hook_user_email'), self.user.email)
|
||||||
|
|
Loading…
Reference in a new issue