aboutsummaryrefslogtreecommitdiffstats
path: root/keystone-moon/keystone/trust/routers.py
blob: 3a6243ccdccf420aff5f3028f2ceb75356cd9e32 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Copyright 2012 OpenStack Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
"""WSGI Routers for the Trust service."""

import functools

from keystone.common import json_home
from keystone.common import wsgi
from keystone.trust import controllers


_build_resource_relation = functools.partial(
    json_home.build_v3_extension_resource_relation, extension_name='OS-TRUST',
    extension_version='1.0')

TRUST_ID_PARAMETER_RELATION = json_home.build_v3_extension_parameter_relation(
    'OS-TRUST', '1.0', 'trust_id')


class Routers(wsgi.RoutersBase):

    def append_v3_routers(self, mapper, routers):
        trust_controller = controllers.TrustV3()

        self._add_resource(
            mapper, trust_controller,
            path='/OS-TRUST/trusts',
            get_action='list_trusts',
            post_action='create_trust',
            rel=_build_resource_relation(resource_name='trusts'))
        self._add_resource(
            mapper, trust_controller,
            path='/OS-TRUST/trusts/{trust_id}',
            get_action='get_trust',
            delete_action='delete_trust',
            rel=_build_resource_relation(resource_name='trust'),
            path_vars={
                'trust_id': TRUST_ID_PARAMETER_RELATION,
            })
        self._add_resource(
            mapper, trust_controller,
            path='/OS-TRUST/trusts/{trust_id}/roles',
            get_action='list_roles_for_trust',
            rel=_build_resource_relation(resource_name='trust_roles'),
            path_vars={
                'trust_id': TRUST_ID_PARAMETER_RELATION,
            })
        self._add_resource(
            mapper, trust_controller,
            path='/OS-TRUST/trusts/{trust_id}/roles/{role_id}',
            get_head_action='get_role_for_trust',
            rel=_build_resource_relation(resource_name='trust_role'),
            path_vars={
                'trust_id': TRUST_ID_PARAMETER_RELATION,
                'role_id': json_home.Parameters.ROLE_ID,
            })