2019-07-05 13:21:48 +00:00
|
|
|
"""OIDC Permission checking"""
|
|
|
|
from django.contrib import messages
|
|
|
|
from django.shortcuts import redirect
|
2019-10-01 08:24:10 +00:00
|
|
|
from structlog import get_logger
|
2019-07-05 13:21:48 +00:00
|
|
|
|
2019-12-05 15:14:08 +00:00
|
|
|
from passbook.audit.models import Event, EventAction
|
2019-07-05 13:21:48 +00:00
|
|
|
from passbook.core.models import Application
|
2019-10-07 14:33:48 +00:00
|
|
|
from passbook.policies.engine import PolicyEngine
|
2019-07-05 13:21:48 +00:00
|
|
|
|
2019-10-04 08:08:53 +00:00
|
|
|
LOGGER = get_logger()
|
2019-07-05 13:21:48 +00:00
|
|
|
|
2019-12-31 10:40:03 +00:00
|
|
|
|
2019-07-05 13:21:48 +00:00
|
|
|
def check_permissions(request, user, client):
|
|
|
|
"""Check permissions, used for
|
|
|
|
https://django-oidc-provider.readthedocs.io/en/latest/
|
|
|
|
sections/settings.html#oidc-after-userlogin-hook"""
|
|
|
|
try:
|
|
|
|
application = client.openidprovider.application
|
|
|
|
except Application.DoesNotExist:
|
2019-12-31 11:51:16 +00:00
|
|
|
return redirect("passbook_providers_oauth:oauth2-permission-denied")
|
|
|
|
LOGGER.debug(
|
|
|
|
"Checking permissions for application", user=user, application=application
|
|
|
|
)
|
2019-10-15 13:44:59 +00:00
|
|
|
policy_engine = PolicyEngine(application.policies.all(), user, request)
|
|
|
|
policy_engine.build()
|
2019-07-05 13:21:48 +00:00
|
|
|
|
|
|
|
# Check permissions
|
|
|
|
passing, policy_messages = policy_engine.result
|
|
|
|
if not passing:
|
|
|
|
for policy_message in policy_messages:
|
|
|
|
messages.error(request, policy_message)
|
2019-12-31 11:51:16 +00:00
|
|
|
return redirect("passbook_providers_oauth:oauth2-permission-denied")
|
2019-10-08 12:34:59 +00:00
|
|
|
|
2019-12-31 11:51:16 +00:00
|
|
|
Event.new(
|
|
|
|
EventAction.AUTHORIZE_APPLICATION,
|
2019-12-31 12:33:07 +00:00
|
|
|
authorized_application=application,
|
2019-12-31 11:51:16 +00:00
|
|
|
skipped_authorization=False,
|
|
|
|
).from_http(request)
|
2019-07-05 13:21:48 +00:00
|
|
|
return None
|