This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/passbook/providers/oidc/lib.py

37 lines
1.3 KiB
Python
Raw Normal View History

"""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-10-28 13:26:34 +00:00
from passbook.audit.models import Event
from passbook.core.models import Application
2019-10-07 14:33:48 +00:00
from passbook.policies.engine import PolicyEngine
LOGGER = get_logger()
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-10-07 14:33:48 +00:00
return redirect('passbook_providers_oauth:oauth2-permission-denied')
LOGGER.debug("Checking permissions for application", user=user, application=application)
policy_engine = PolicyEngine(application.policies.all(), user, request)
policy_engine.build()
# Check permissions
passing, policy_messages = policy_engine.result
if not passing:
for policy_message in policy_messages:
messages.error(request, policy_message)
2019-10-07 14:33:48 +00:00
return redirect('passbook_providers_oauth:oauth2-permission-denied')
2019-10-28 13:26:34 +00:00
Event.create(
action=Event.ACTION_AUTHORIZE_APPLICATION,
request=request,
app=application.name,
skipped_authorization=False)
return None