2020-05-08 12:33:14 +00:00
|
|
|
"""Flows Planner"""
|
|
|
|
from dataclasses import dataclass, field
|
|
|
|
from time import time
|
2020-05-11 09:39:58 +00:00
|
|
|
from typing import Any, Dict, List, Optional, Tuple
|
2020-05-08 12:33:14 +00:00
|
|
|
|
2020-05-11 09:39:58 +00:00
|
|
|
from django.core.cache import cache
|
2020-05-08 12:33:14 +00:00
|
|
|
from django.http import HttpRequest
|
|
|
|
from structlog import get_logger
|
|
|
|
|
2020-05-11 09:39:58 +00:00
|
|
|
from passbook.core.models import User
|
2020-05-09 18:54:56 +00:00
|
|
|
from passbook.flows.exceptions import EmptyFlowException, FlowNonApplicableException
|
2020-05-08 17:46:39 +00:00
|
|
|
from passbook.flows.models import Flow, Stage
|
2020-05-08 12:33:14 +00:00
|
|
|
from passbook.policies.engine import PolicyEngine
|
|
|
|
|
|
|
|
LOGGER = get_logger()
|
|
|
|
|
2020-05-08 14:10:27 +00:00
|
|
|
PLAN_CONTEXT_PENDING_USER = "pending_user"
|
|
|
|
PLAN_CONTEXT_SSO = "is_sso"
|
|
|
|
|
2020-05-08 12:33:14 +00:00
|
|
|
|
2020-05-11 09:39:58 +00:00
|
|
|
def cache_key(flow: Flow, user: Optional[User] = None) -> str:
|
|
|
|
"""Generate Cache key for flow"""
|
|
|
|
prefix = f"flow_{flow.pk}"
|
|
|
|
if user:
|
|
|
|
prefix += f"#{user.pk}"
|
|
|
|
return prefix
|
|
|
|
|
|
|
|
|
2020-05-08 12:33:14 +00:00
|
|
|
@dataclass
|
|
|
|
class FlowPlan:
|
|
|
|
"""This data-class is the output of a FlowPlanner. It holds a flat list
|
2020-05-08 17:46:39 +00:00
|
|
|
of all Stages that should be run."""
|
2020-05-08 12:33:14 +00:00
|
|
|
|
2020-05-10 18:15:24 +00:00
|
|
|
flow_pk: str
|
2020-05-08 17:46:39 +00:00
|
|
|
stages: List[Stage] = field(default_factory=list)
|
2020-05-08 14:10:27 +00:00
|
|
|
context: Dict[str, Any] = field(default_factory=dict)
|
2020-05-08 12:33:14 +00:00
|
|
|
|
2020-05-08 17:46:39 +00:00
|
|
|
def next(self) -> Stage:
|
|
|
|
"""Return next pending stage from the bottom of the list"""
|
2020-05-09 18:54:56 +00:00
|
|
|
return self.stages[0]
|
2020-05-08 12:33:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
class FlowPlanner:
|
2020-05-08 17:46:39 +00:00
|
|
|
"""Execute all policies to plan out a flat list of all Stages
|
2020-05-08 12:33:14 +00:00
|
|
|
that should be applied."""
|
|
|
|
|
2020-05-11 09:39:58 +00:00
|
|
|
use_cache: bool
|
2020-05-08 12:33:14 +00:00
|
|
|
flow: Flow
|
|
|
|
|
|
|
|
def __init__(self, flow: Flow):
|
2020-05-11 09:39:58 +00:00
|
|
|
self.use_cache = True
|
2020-05-08 12:33:14 +00:00
|
|
|
self.flow = flow
|
|
|
|
|
|
|
|
def _check_flow_root_policies(self, request: HttpRequest) -> Tuple[bool, List[str]]:
|
|
|
|
engine = PolicyEngine(self.flow.policies.all(), request.user, request)
|
|
|
|
engine.build()
|
|
|
|
return engine.result
|
|
|
|
|
2020-05-20 14:15:16 +00:00
|
|
|
def plan(
|
|
|
|
self, request: HttpRequest, default_context: Optional[Dict[str, Any]] = None
|
|
|
|
) -> FlowPlan:
|
2020-05-08 17:46:39 +00:00
|
|
|
"""Check each of the flows' policies, check policies for each stage with PolicyBinding
|
2020-05-08 12:33:14 +00:00
|
|
|
and return ordered list"""
|
2020-05-10 18:15:24 +00:00
|
|
|
LOGGER.debug("f(plan): Starting planning process", flow=self.flow)
|
2020-05-08 12:33:14 +00:00
|
|
|
# First off, check the flow's direct policy bindings
|
|
|
|
# to make sure the user even has access to the flow
|
|
|
|
root_passing, root_passing_messages = self._check_flow_root_policies(request)
|
|
|
|
if not root_passing:
|
2020-05-09 18:54:56 +00:00
|
|
|
raise FlowNonApplicableException(root_passing_messages)
|
2020-05-20 14:15:16 +00:00
|
|
|
# Bit of a workaround here, if there is a pending user set in the default context
|
|
|
|
# we use that user for our cache key
|
|
|
|
# to make sure they don't get the generic response
|
|
|
|
if default_context and PLAN_CONTEXT_PENDING_USER in default_context:
|
|
|
|
user = default_context[PLAN_CONTEXT_PENDING_USER]
|
|
|
|
else:
|
|
|
|
user = request.user
|
|
|
|
cached_plan_key = cache_key(self.flow, user)
|
|
|
|
cached_plan = cache.get(cached_plan_key, None)
|
2020-05-11 09:39:58 +00:00
|
|
|
if cached_plan and self.use_cache:
|
2020-05-20 14:15:16 +00:00
|
|
|
LOGGER.debug(
|
|
|
|
"f(plan): Taking plan from cache", flow=self.flow, key=cached_plan_key
|
|
|
|
)
|
|
|
|
LOGGER.debug(cached_plan)
|
2020-05-11 09:39:58 +00:00
|
|
|
return cached_plan
|
2020-05-20 14:15:16 +00:00
|
|
|
plan = self._build_plan(user, request, default_context)
|
|
|
|
cache.set(cache_key(self.flow, user), plan)
|
|
|
|
if not plan.stages:
|
|
|
|
raise EmptyFlowException()
|
|
|
|
return plan
|
|
|
|
|
|
|
|
def _build_plan(
|
|
|
|
self,
|
|
|
|
user: User,
|
|
|
|
request: HttpRequest,
|
|
|
|
default_context: Optional[Dict[str, Any]],
|
|
|
|
) -> FlowPlan:
|
|
|
|
"""Actually build flow plan"""
|
2020-05-11 09:39:58 +00:00
|
|
|
start_time = time()
|
|
|
|
plan = FlowPlan(flow_pk=self.flow.pk.hex)
|
2020-05-20 14:15:16 +00:00
|
|
|
if default_context:
|
|
|
|
plan.context = default_context
|
2020-05-08 12:33:14 +00:00
|
|
|
# Check Flow policies
|
2020-05-08 17:46:39 +00:00
|
|
|
for stage in (
|
|
|
|
self.flow.stages.order_by("flowstagebinding__order")
|
|
|
|
.select_subclasses()
|
|
|
|
.select_related()
|
|
|
|
):
|
|
|
|
binding = stage.flowstagebinding_set.get(flow__pk=self.flow.pk)
|
2020-05-20 14:15:16 +00:00
|
|
|
engine = PolicyEngine(binding.policies.all(), user, request)
|
|
|
|
engine.request.context = plan.context
|
2020-05-08 12:33:14 +00:00
|
|
|
engine.build()
|
|
|
|
passing, _ = engine.result
|
|
|
|
if passing:
|
2020-05-11 09:39:58 +00:00
|
|
|
LOGGER.debug("f(plan): Stage passing", stage=stage, flow=self.flow)
|
2020-05-08 17:46:39 +00:00
|
|
|
plan.stages.append(stage)
|
2020-05-08 12:33:14 +00:00
|
|
|
end_time = time()
|
|
|
|
LOGGER.debug(
|
2020-05-20 14:15:16 +00:00
|
|
|
"f(plan): Finished building",
|
2020-05-10 18:15:24 +00:00
|
|
|
flow=self.flow,
|
|
|
|
duration_s=end_time - start_time,
|
2020-05-08 12:33:14 +00:00
|
|
|
)
|
|
|
|
return plan
|