2019-07-05 13:21:48 +00:00
|
|
|
"""OIDC Permission checking"""
|
2020-01-02 15:38:01 +00:00
|
|
|
from typing import Optional
|
|
|
|
|
2019-07-05 13:21:48 +00:00
|
|
|
from django.contrib import messages
|
2020-01-02 15:42:52 +00:00
|
|
|
from django.db.models.deletion import Collector
|
2020-01-02 15:38:01 +00:00
|
|
|
from django.http import HttpRequest, HttpResponse
|
2019-07-05 13:21:48 +00:00
|
|
|
from django.shortcuts import redirect
|
2020-01-02 15:38:01 +00:00
|
|
|
from oidc_provider.models import Client
|
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
|
2020-01-02 15:42:52 +00:00
|
|
|
from passbook.core.models import Application, Provider, User
|
2020-06-07 14:35:08 +00:00
|
|
|
from passbook.flows.planner import FlowPlan
|
|
|
|
from passbook.flows.views import SESSION_KEY_PLAN
|
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
|
|
|
|
2020-02-18 21:12:51 +00:00
|
|
|
def client_related_provider(client: Client) -> Optional[Provider]:
|
|
|
|
"""Lookup related Application from Client"""
|
|
|
|
# because oidc_provider is also used by app_gw, we can't be
|
2020-05-28 19:45:54 +00:00
|
|
|
# sure an OpenIDProvider instance exists. hence we look through all related models
|
2020-02-18 21:12:51 +00:00
|
|
|
# and choose the one that inherits from Provider, which is guaranteed to
|
|
|
|
# have the application property
|
|
|
|
collector = Collector(using="default")
|
|
|
|
collector.collect([client])
|
|
|
|
for _, related in collector.data.items():
|
|
|
|
related_object = next(iter(related))
|
|
|
|
if isinstance(related_object, Provider):
|
|
|
|
return related_object
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
2020-01-02 15:38:01 +00:00
|
|
|
def check_permissions(
|
|
|
|
request: HttpRequest, user: User, client: Client
|
|
|
|
) -> Optional[HttpResponse]:
|
2019-07-05 13:21:48 +00:00
|
|
|
"""Check permissions, used for
|
|
|
|
https://django-oidc-provider.readthedocs.io/en/latest/
|
|
|
|
sections/settings.html#oidc-after-userlogin-hook"""
|
2020-02-18 21:12:51 +00:00
|
|
|
provider = client_related_provider(client)
|
|
|
|
if not provider:
|
|
|
|
return redirect("passbook_providers_oauth:oauth2-permission-denied")
|
2019-07-05 13:21:48 +00:00
|
|
|
try:
|
2020-02-18 21:12:51 +00:00
|
|
|
application = provider.application
|
2019-07-05 13:21:48 +00:00
|
|
|
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
|
|
|
|
)
|
2020-06-07 14:35:08 +00:00
|
|
|
policy_engine = PolicyEngine(application, user, request)
|
2019-10-15 13:44:59 +00:00
|
|
|
policy_engine.build()
|
2019-07-05 13:21:48 +00:00
|
|
|
|
|
|
|
# Check permissions
|
2020-05-28 19:45:54 +00:00
|
|
|
result = policy_engine.result
|
|
|
|
if not result.passing:
|
|
|
|
for policy_message in result.messages:
|
2019-07-05 13:21:48 +00:00
|
|
|
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
|
|
|
|
2020-06-07 14:35:08 +00:00
|
|
|
plan: FlowPlan = request.session[SESSION_KEY_PLAN]
|
2019-12-31 11:51:16 +00:00
|
|
|
Event.new(
|
|
|
|
EventAction.AUTHORIZE_APPLICATION,
|
2019-12-31 12:33:07 +00:00
|
|
|
authorized_application=application,
|
2020-06-07 14:35:08 +00:00
|
|
|
flow=plan.flow_pk,
|
2019-12-31 11:51:16 +00:00
|
|
|
).from_http(request)
|
2019-07-05 13:21:48 +00:00
|
|
|
return None
|