2016-08-11 22:05:13 +00:00
|
|
|
from datetime import timedelta
|
2016-10-28 18:25:52 +00:00
|
|
|
from hashlib import (
|
|
|
|
md5,
|
|
|
|
sha256,
|
|
|
|
)
|
2015-06-08 19:36:49 +00:00
|
|
|
import logging
|
2015-07-10 10:22:25 +00:00
|
|
|
try:
|
|
|
|
from urllib import urlencode
|
|
|
|
from urlparse import urlsplit, parse_qs, urlunsplit
|
|
|
|
except ImportError:
|
|
|
|
from urllib.parse import urlsplit, parse_qs, urlunsplit, urlencode
|
2016-10-28 18:25:52 +00:00
|
|
|
from uuid import uuid4
|
2015-06-22 21:42:42 +00:00
|
|
|
|
2015-07-14 15:44:25 +00:00
|
|
|
from django.utils import timezone
|
|
|
|
|
2016-06-16 20:18:39 +00:00
|
|
|
from oidc_provider.lib.claims import StandardScopeClaims
|
2016-08-11 22:05:13 +00:00
|
|
|
from oidc_provider.lib.errors import (
|
|
|
|
AuthorizeError,
|
|
|
|
ClientIdError,
|
|
|
|
RedirectUriError,
|
|
|
|
)
|
|
|
|
from oidc_provider.lib.utils.token import (
|
|
|
|
create_code,
|
|
|
|
create_id_token,
|
|
|
|
create_token,
|
|
|
|
encode_id_token,
|
|
|
|
)
|
|
|
|
from oidc_provider.models import (
|
|
|
|
Client,
|
|
|
|
UserConsent,
|
|
|
|
)
|
2015-07-21 13:59:23 +00:00
|
|
|
from oidc_provider import settings
|
2017-07-07 07:07:21 +00:00
|
|
|
from oidc_provider.lib.utils.common import get_browser_state_or_default
|
2015-06-19 20:46:00 +00:00
|
|
|
|
2015-06-08 19:36:49 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2015-01-08 20:55:24 +00:00
|
|
|
|
|
|
|
class AuthorizeEndpoint(object):
|
2017-06-06 09:12:37 +00:00
|
|
|
_allowed_prompt_params = {'none', 'login', 'consent', 'select_account'}
|
2015-01-08 20:55:24 +00:00
|
|
|
|
|
|
|
def __init__(self, request):
|
|
|
|
self.request = request
|
2016-09-09 17:49:41 +00:00
|
|
|
self.params = {}
|
2015-01-08 20:55:24 +00:00
|
|
|
|
|
|
|
self._extract_params()
|
|
|
|
|
|
|
|
# Determine which flow to use.
|
2016-09-09 17:49:41 +00:00
|
|
|
if self.params['response_type'] in ['code']:
|
2015-01-08 20:55:24 +00:00
|
|
|
self.grant_type = 'authorization_code'
|
2016-09-09 17:49:41 +00:00
|
|
|
elif self.params['response_type'] in ['id_token', 'id_token token', 'token']:
|
2015-01-08 20:55:24 +00:00
|
|
|
self.grant_type = 'implicit'
|
2016-09-09 17:49:41 +00:00
|
|
|
elif self.params['response_type'] in ['code token', 'code id_token', 'code id_token token']:
|
2016-09-08 19:21:48 +00:00
|
|
|
self.grant_type = 'hybrid'
|
2015-01-08 20:55:24 +00:00
|
|
|
else:
|
|
|
|
self.grant_type = None
|
|
|
|
|
2016-02-16 20:33:12 +00:00
|
|
|
# Determine if it's an OpenID Authentication request (or OAuth2).
|
2016-09-09 17:49:41 +00:00
|
|
|
self.is_authentication = 'openid' in self.params['scope']
|
2016-02-16 20:33:12 +00:00
|
|
|
|
2015-01-08 20:55:24 +00:00
|
|
|
def _extract_params(self):
|
2015-01-28 18:19:36 +00:00
|
|
|
"""
|
2015-01-08 20:55:24 +00:00
|
|
|
Get all the params used by the Authorization Code Flow
|
2016-09-08 19:21:48 +00:00
|
|
|
(and also for the Implicit and Hybrid).
|
2015-01-08 20:55:24 +00:00
|
|
|
|
|
|
|
See: http://openid.net/specs/openid-connect-core-1_0.html#AuthRequest
|
2015-01-28 18:19:36 +00:00
|
|
|
"""
|
2015-07-28 18:55:30 +00:00
|
|
|
# Because in this endpoint we handle both GET
|
|
|
|
# and POST request.
|
|
|
|
query_dict = (self.request.POST if self.request.method == 'POST'
|
|
|
|
else self.request.GET)
|
|
|
|
|
2016-09-09 17:49:41 +00:00
|
|
|
self.params['client_id'] = query_dict.get('client_id', '')
|
|
|
|
self.params['redirect_uri'] = query_dict.get('redirect_uri', '')
|
|
|
|
self.params['response_type'] = query_dict.get('response_type', '')
|
|
|
|
self.params['scope'] = query_dict.get('scope', '').split()
|
|
|
|
self.params['state'] = query_dict.get('state', '')
|
|
|
|
self.params['nonce'] = query_dict.get('nonce', '')
|
2017-06-06 09:12:37 +00:00
|
|
|
|
|
|
|
self.params['prompt'] = self._allowed_prompt_params.intersection(set(query_dict.get('prompt', '').split()))
|
|
|
|
|
2016-09-09 17:49:41 +00:00
|
|
|
self.params['code_challenge'] = query_dict.get('code_challenge', '')
|
|
|
|
self.params['code_challenge_method'] = query_dict.get('code_challenge_method', '')
|
2015-01-08 20:55:24 +00:00
|
|
|
|
|
|
|
def validate_params(self):
|
2016-04-13 20:19:37 +00:00
|
|
|
# Client validation.
|
2016-02-16 20:33:12 +00:00
|
|
|
try:
|
2016-09-09 17:49:41 +00:00
|
|
|
self.client = Client.objects.get(client_id=self.params['client_id'])
|
2016-02-16 20:33:12 +00:00
|
|
|
except Client.DoesNotExist:
|
2016-09-09 17:49:41 +00:00
|
|
|
logger.debug('[Authorize] Invalid client identifier: %s', self.params['client_id'])
|
2016-02-16 20:33:12 +00:00
|
|
|
raise ClientIdError()
|
|
|
|
|
2016-04-13 20:19:37 +00:00
|
|
|
# Redirect URI validation.
|
2016-09-09 17:49:41 +00:00
|
|
|
if self.is_authentication and not self.params['redirect_uri']:
|
2016-03-17 18:31:41 +00:00
|
|
|
logger.debug('[Authorize] Missing redirect uri.')
|
2015-01-08 20:55:24 +00:00
|
|
|
raise RedirectUriError()
|
2017-07-07 07:07:21 +00:00
|
|
|
if not (self.params['redirect_uri'] in self.client.redirect_uris):
|
2016-09-09 17:49:41 +00:00
|
|
|
logger.debug('[Authorize] Invalid redirect uri: %s', self.params['redirect_uri'])
|
2016-04-13 20:19:37 +00:00
|
|
|
raise RedirectUriError()
|
2015-01-08 20:55:24 +00:00
|
|
|
|
2016-04-13 20:19:37 +00:00
|
|
|
# Grant type validation.
|
2016-02-16 20:33:12 +00:00
|
|
|
if not self.grant_type:
|
2016-09-09 17:49:41 +00:00
|
|
|
logger.debug('[Authorize] Invalid response type: %s', self.params['response_type'])
|
|
|
|
raise AuthorizeError(self.params['redirect_uri'], 'unsupported_response_type', self.grant_type)
|
2016-01-19 19:05:34 +00:00
|
|
|
|
2017-08-08 22:41:42 +00:00
|
|
|
if (not self.is_authentication and
|
|
|
|
(self.grant_type == 'hybrid' or self.params['response_type'] in ['id_token', 'id_token token'])):
|
2016-10-31 19:37:51 +00:00
|
|
|
logger.debug('[Authorize] Missing openid scope.')
|
|
|
|
raise AuthorizeError(self.params['redirect_uri'], 'invalid_scope', self.grant_type)
|
|
|
|
|
2016-04-13 20:19:37 +00:00
|
|
|
# Nonce parameter validation.
|
2016-09-09 17:49:41 +00:00
|
|
|
if self.is_authentication and self.grant_type == 'implicit' and not self.params['nonce']:
|
|
|
|
raise AuthorizeError(self.params['redirect_uri'], 'invalid_request', self.grant_type)
|
2015-01-08 20:55:24 +00:00
|
|
|
|
2016-04-13 20:19:37 +00:00
|
|
|
# Response type parameter validation.
|
2016-09-09 17:49:41 +00:00
|
|
|
if self.is_authentication and self.params['response_type'] != self.client.response_type:
|
|
|
|
raise AuthorizeError(self.params['redirect_uri'], 'invalid_request', self.grant_type)
|
2016-04-06 21:03:30 +00:00
|
|
|
|
|
|
|
# PKCE validation of the transformation method.
|
2016-09-09 17:49:41 +00:00
|
|
|
if self.params['code_challenge']:
|
|
|
|
if not (self.params['code_challenge_method'] in ['plain', 'S256']):
|
|
|
|
raise AuthorizeError(self.params['redirect_uri'], 'invalid_request', self.grant_type)
|
2016-01-19 19:05:34 +00:00
|
|
|
|
2015-06-15 19:04:44 +00:00
|
|
|
def create_response_uri(self):
|
2016-09-09 17:49:41 +00:00
|
|
|
uri = urlsplit(self.params['redirect_uri'])
|
2015-07-10 10:22:25 +00:00
|
|
|
query_params = parse_qs(uri.query)
|
2017-05-05 03:19:57 +00:00
|
|
|
query_fragment = {}
|
2015-07-10 10:22:25 +00:00
|
|
|
|
2015-01-08 20:55:24 +00:00
|
|
|
try:
|
2016-09-08 19:21:48 +00:00
|
|
|
if self.grant_type in ['authorization_code', 'hybrid']:
|
2015-03-12 15:40:36 +00:00
|
|
|
code = create_code(
|
|
|
|
user=self.request.user,
|
|
|
|
client=self.client,
|
2016-09-09 17:49:41 +00:00
|
|
|
scope=self.params['scope'],
|
|
|
|
nonce=self.params['nonce'],
|
2016-04-06 21:03:30 +00:00
|
|
|
is_authentication=self.is_authentication,
|
2016-09-09 17:49:41 +00:00
|
|
|
code_challenge=self.params['code_challenge'],
|
|
|
|
code_challenge_method=self.params['code_challenge_method'])
|
2015-01-08 20:55:24 +00:00
|
|
|
code.save()
|
|
|
|
|
2016-09-08 19:21:48 +00:00
|
|
|
if self.grant_type == 'authorization_code':
|
2015-07-10 10:22:25 +00:00
|
|
|
query_params['code'] = code.code
|
2016-09-09 17:49:41 +00:00
|
|
|
query_params['state'] = self.params['state'] if self.params['state'] else ''
|
2016-09-08 19:21:48 +00:00
|
|
|
elif self.grant_type in ['implicit', 'hybrid']:
|
2016-08-05 19:11:01 +00:00
|
|
|
token = create_token(
|
|
|
|
user=self.request.user,
|
|
|
|
client=self.client,
|
2016-09-09 17:49:41 +00:00
|
|
|
scope=self.params['scope'])
|
2016-08-05 19:11:01 +00:00
|
|
|
|
2016-09-08 19:21:48 +00:00
|
|
|
# Check if response_type must include access_token in the response.
|
2016-09-09 17:49:41 +00:00
|
|
|
if self.params['response_type'] in ['id_token token', 'token', 'code token', 'code id_token token']:
|
2016-08-05 19:11:01 +00:00
|
|
|
query_fragment['access_token'] = token.access_token
|
|
|
|
|
2016-02-16 20:33:12 +00:00
|
|
|
# We don't need id_token if it's an OAuth2 request.
|
|
|
|
if self.is_authentication:
|
2016-08-05 19:11:01 +00:00
|
|
|
kwargs = {
|
2016-09-08 19:21:48 +00:00
|
|
|
'user': self.request.user,
|
|
|
|
'aud': self.client.client_id,
|
2016-09-09 17:49:41 +00:00
|
|
|
'nonce': self.params['nonce'],
|
2016-09-08 19:21:48 +00:00
|
|
|
'request': self.request,
|
2016-09-09 17:49:41 +00:00
|
|
|
'scope': self.params['scope'],
|
2016-08-05 19:11:01 +00:00
|
|
|
}
|
|
|
|
# Include at_hash when access_token is being returned.
|
|
|
|
if 'access_token' in query_fragment:
|
|
|
|
kwargs['at_hash'] = token.at_hash
|
|
|
|
id_token_dic = create_id_token(**kwargs)
|
2016-09-08 19:21:48 +00:00
|
|
|
|
|
|
|
# Check if response_type must include id_token in the response.
|
2017-08-08 22:41:42 +00:00
|
|
|
if self.params['response_type'] in [
|
|
|
|
'id_token', 'id_token token', 'code id_token', 'code id_token token']:
|
2016-09-08 19:21:48 +00:00
|
|
|
query_fragment['id_token'] = encode_id_token(id_token_dic, self.client)
|
2016-02-16 20:33:12 +00:00
|
|
|
else:
|
|
|
|
id_token_dic = {}
|
2015-01-08 20:55:24 +00:00
|
|
|
|
|
|
|
# Store the token.
|
2016-08-05 19:11:01 +00:00
|
|
|
token.id_token = id_token_dic
|
2015-01-08 20:55:24 +00:00
|
|
|
token.save()
|
|
|
|
|
2016-09-08 19:21:48 +00:00
|
|
|
# Code parameter must be present if it's Hybrid Flow.
|
|
|
|
if self.grant_type == 'hybrid':
|
|
|
|
query_fragment['code'] = code.code
|
|
|
|
|
2015-07-10 10:22:25 +00:00
|
|
|
query_fragment['token_type'] = 'bearer'
|
2016-09-08 19:21:48 +00:00
|
|
|
|
2016-09-09 14:43:28 +00:00
|
|
|
query_fragment['expires_in'] = settings.get('OIDC_TOKEN_EXPIRE')
|
2015-02-02 20:39:01 +00:00
|
|
|
|
2016-09-09 17:49:41 +00:00
|
|
|
query_fragment['state'] = self.params['state'] if self.params['state'] else ''
|
2015-07-10 10:22:25 +00:00
|
|
|
|
2016-10-28 18:25:52 +00:00
|
|
|
if settings.get('OIDC_SESSION_MANAGEMENT_ENABLE'):
|
|
|
|
# Generate client origin URI from the redirect_uri param.
|
|
|
|
redirect_uri_parsed = urlsplit(self.params['redirect_uri'])
|
|
|
|
client_origin = '{0}://{1}'.format(redirect_uri_parsed.scheme, redirect_uri_parsed.netloc)
|
|
|
|
|
|
|
|
# Create random salt.
|
|
|
|
salt = md5(uuid4().hex.encode()).hexdigest()
|
|
|
|
|
|
|
|
# The generation of suitable Session State values is based
|
|
|
|
# on a salted cryptographic hash of Client ID, origin URL,
|
|
|
|
# and OP browser state.
|
|
|
|
session_state = '{client_id} {origin} {browser_state} {salt}'.format(
|
|
|
|
client_id=self.client.client_id,
|
|
|
|
origin=client_origin,
|
2017-05-05 03:19:57 +00:00
|
|
|
browser_state=get_browser_state_or_default(self.request),
|
2016-10-28 18:25:52 +00:00
|
|
|
salt=salt)
|
2016-11-04 18:56:51 +00:00
|
|
|
session_state = sha256(session_state.encode('utf-8')).hexdigest()
|
2016-10-28 18:25:52 +00:00
|
|
|
session_state += '.' + salt
|
|
|
|
if self.grant_type == 'authorization_code':
|
|
|
|
query_params['session_state'] = session_state
|
|
|
|
elif self.grant_type in ['implicit', 'hybrid']:
|
|
|
|
query_fragment['session_state'] = session_state
|
|
|
|
|
2015-06-19 20:46:00 +00:00
|
|
|
except Exception as error:
|
2017-05-05 03:19:57 +00:00
|
|
|
logger.exception('[Authorize] Error when trying to create response uri: %s', error)
|
2016-09-09 17:49:41 +00:00
|
|
|
raise AuthorizeError(self.params['redirect_uri'], 'server_error', self.grant_type)
|
2015-01-08 20:55:24 +00:00
|
|
|
|
2017-08-08 22:41:42 +00:00
|
|
|
uri = uri._replace(
|
|
|
|
query=urlencode(query_params, doseq=True), fragment=uri.fragment + urlencode(query_fragment, doseq=True))
|
2015-01-08 20:55:24 +00:00
|
|
|
|
2015-07-10 10:22:25 +00:00
|
|
|
return urlunsplit(uri)
|
2015-06-22 21:42:42 +00:00
|
|
|
|
|
|
|
def set_client_user_consent(self):
|
|
|
|
"""
|
|
|
|
Save the user consent given to a specific client.
|
|
|
|
|
|
|
|
Return None.
|
|
|
|
"""
|
2016-06-13 15:15:10 +00:00
|
|
|
date_given = timezone.now()
|
|
|
|
expires_at = date_given + timedelta(
|
2015-06-24 15:40:00 +00:00
|
|
|
days=settings.get('OIDC_SKIP_CONSENT_EXPIRE'))
|
2015-06-22 21:42:42 +00:00
|
|
|
|
|
|
|
uc, created = UserConsent.objects.get_or_create(
|
|
|
|
user=self.request.user,
|
|
|
|
client=self.client,
|
2016-06-13 15:15:10 +00:00
|
|
|
defaults={
|
|
|
|
'expires_at': expires_at,
|
|
|
|
'date_given': date_given,
|
|
|
|
}
|
|
|
|
)
|
2016-09-09 17:49:41 +00:00
|
|
|
uc.scope = self.params['scope']
|
2015-06-22 21:42:42 +00:00
|
|
|
|
2016-06-13 15:15:10 +00:00
|
|
|
# Rewrite expires_at and date_given if object already exists.
|
2015-06-22 21:42:42 +00:00
|
|
|
if not created:
|
|
|
|
uc.expires_at = expires_at
|
2016-06-13 15:15:10 +00:00
|
|
|
uc.date_given = date_given
|
2015-06-22 21:42:42 +00:00
|
|
|
|
|
|
|
uc.save()
|
|
|
|
|
|
|
|
def client_has_user_consent(self):
|
|
|
|
"""
|
|
|
|
Check if already exists user consent for some client.
|
|
|
|
|
|
|
|
Return bool.
|
|
|
|
"""
|
|
|
|
value = False
|
|
|
|
try:
|
2016-09-09 17:49:41 +00:00
|
|
|
uc = UserConsent.objects.get(user=self.request.user, client=self.client)
|
|
|
|
if (set(self.params['scope']).issubset(uc.scope)) and not (uc.has_expired()):
|
2015-06-22 21:42:42 +00:00
|
|
|
value = True
|
|
|
|
except UserConsent.DoesNotExist:
|
|
|
|
pass
|
|
|
|
|
|
|
|
return value
|
2016-06-16 20:18:39 +00:00
|
|
|
|
|
|
|
def get_scopes_information(self):
|
|
|
|
"""
|
|
|
|
Return a list with the description of all the scopes requested.
|
|
|
|
"""
|
2016-09-09 17:49:41 +00:00
|
|
|
scopes = StandardScopeClaims.get_scopes_info(self.params['scope'])
|
2016-07-07 15:50:27 +00:00
|
|
|
if settings.get('OIDC_EXTRA_SCOPE_CLAIMS'):
|
2017-08-08 22:41:42 +00:00
|
|
|
scopes_extra = settings.get('OIDC_EXTRA_SCOPE_CLAIMS', import_str=True).get_scopes_info(
|
|
|
|
self.params['scope'])
|
2016-07-07 15:50:27 +00:00
|
|
|
for index_extra, scope_extra in enumerate(scopes_extra):
|
|
|
|
for index, scope in enumerate(scopes[:]):
|
|
|
|
if scope_extra['scope'] == scope['scope']:
|
|
|
|
del scopes[index]
|
|
|
|
else:
|
|
|
|
scopes_extra = []
|
2016-06-16 20:18:39 +00:00
|
|
|
|
|
|
|
return scopes + scopes_extra
|