2020-05-10 00:14:55 +00:00
|
|
|
"""Dummy policy"""
|
|
|
|
from random import SystemRandom
|
|
|
|
from time import sleep
|
2020-07-20 13:58:48 +00:00
|
|
|
from typing import Type
|
2020-05-10 00:14:55 +00:00
|
|
|
|
|
|
|
from django.db import models
|
2020-07-20 13:58:48 +00:00
|
|
|
from django.forms import ModelForm
|
2020-05-10 00:14:55 +00:00
|
|
|
from django.utils.translation import gettext_lazy as _
|
2020-08-21 22:42:15 +00:00
|
|
|
from rest_framework.serializers import BaseSerializer
|
2020-05-10 00:14:55 +00:00
|
|
|
from structlog import get_logger
|
|
|
|
|
2020-05-16 16:07:00 +00:00
|
|
|
from passbook.policies.models import Policy
|
2020-05-10 00:14:55 +00:00
|
|
|
from passbook.policies.types import PolicyRequest, PolicyResult
|
|
|
|
|
|
|
|
LOGGER = get_logger()
|
|
|
|
|
|
|
|
|
|
|
|
class DummyPolicy(Policy):
|
|
|
|
"""Policy used for debugging the PolicyEngine. Returns a fixed result,
|
|
|
|
but takes a random time to process."""
|
|
|
|
|
2020-07-01 16:53:13 +00:00
|
|
|
__debug_only__ = True
|
|
|
|
|
2020-05-10 00:14:55 +00:00
|
|
|
result = models.BooleanField(default=False)
|
|
|
|
wait_min = models.IntegerField(default=5)
|
|
|
|
wait_max = models.IntegerField(default=30)
|
|
|
|
|
2020-08-21 22:42:15 +00:00
|
|
|
@property
|
|
|
|
def serializer(self) -> BaseSerializer:
|
|
|
|
from passbook.policies.dummy.api import DummyPolicySerializer
|
|
|
|
|
|
|
|
return DummyPolicySerializer
|
|
|
|
|
2020-07-20 13:58:48 +00:00
|
|
|
def form(self) -> Type[ModelForm]:
|
|
|
|
from passbook.policies.dummy.forms import DummyPolicyForm
|
|
|
|
|
|
|
|
return DummyPolicyForm
|
2020-05-10 00:14:55 +00:00
|
|
|
|
|
|
|
def passes(self, request: PolicyRequest) -> PolicyResult:
|
|
|
|
"""Wait random time then return result"""
|
|
|
|
wait = SystemRandom().randrange(self.wait_min, self.wait_max)
|
|
|
|
LOGGER.debug("Policy waiting", policy=self, delay=wait)
|
|
|
|
sleep(wait)
|
|
|
|
return PolicyResult(self.result, "dummy")
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
|
|
|
|
verbose_name = _("Dummy Policy")
|
|
|
|
verbose_name_plural = _("Dummy Policies")
|