summaryrefslogtreecommitdiff
path: root/macaroonbakery/checkers/__init__.py
blob: 9f0b022c6f34e0f75c34d3ed62637501ce3ebc60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Copyright 2017 Canonical Ltd.
# Licensed under the LGPLv3, see LICENCE file for details.
from macaroonbakery.checkers.conditions import (
    STD_NAMESPACE, COND_DECLARED, COND_TIME_BEFORE, COND_ERROR, COND_ALLOW,
    COND_DENY, COND_NEED_DECLARED
)
from macaroonbakery.checkers.caveat import (
    allow_caveat, deny_caveat, declared_caveat, parse_caveat,
    time_before_caveat, Caveat
)
from macaroonbakery.checkers.declared import (
    context_with_declared, infer_declared, infer_declared_from_conditions,
    need_declared_caveat
)
from macaroonbakery.checkers.operation import context_with_operations
from macaroonbakery.checkers.namespace import Namespace, deserialize_namespace
from macaroonbakery.checkers.time import context_with_clock
from macaroonbakery.checkers.checkers import (
    Checker, CheckerInfo, RegisterError
)
from macaroonbakery.checkers.auth_context import AuthContext, ContextKey

__all__ = [
    'AuthContext',
    'Caveat',
    'Checker',
    'CheckerInfo',
    'COND_ALLOW',
    'COND_DECLARED',
    'COND_DENY',
    'COND_ERROR',
    'COND_NEED_DECLARED',
    'COND_TIME_BEFORE',
    'ContextKey',
    'STD_NAMESPACE',
    'Namespace',
    'RegisterError',
    'allow_caveat',
    'context_with_declared',
    'context_with_operations',
    'context_with_clock',
    'declared_caveat',
    'deny_caveat',
    'deserialize_namespace',
    'infer_declared',
    'infer_declared_from_conditions',
    'need_declared_caveat',
    'parse_caveat',
    'time_before_caveat',
]