ae388911e0
This commit migrate all client policies into code [1] and also remove policy.json usage file completely. Like oslo.config, with oslo.policy, we can define all of default rules in code base and only change some rules via policy file. Another thing that we should use yaml format instead of json format. [1] https://governance.openstack.org/tc/goals/queens/policy-in-code.html Co-authored-By: Dai Dang-Van <daidv@vn.fujitsu.com> Change-Id: I7c7fd83aa2516c053e38d7598cf79e63401f7519
70 lines
1.9 KiB
Python
70 lines
1.9 KiB
Python
# All Rights Reserved.
|
|
#
|
|
# 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.
|
|
from oslo_policy import policy
|
|
|
|
from freezer_api.common.policies import base
|
|
|
|
CLIENTS = 'clients:%s'
|
|
|
|
rules = [
|
|
policy.DocumentedRuleDefault(
|
|
name=CLIENTS % 'create',
|
|
check_str=base.UNPROTECTED,
|
|
description='Create client entry.',
|
|
operations=[
|
|
{
|
|
'path': '/v1/clients',
|
|
'method': 'POST'
|
|
}
|
|
]
|
|
),
|
|
policy.DocumentedRuleDefault(
|
|
name=CLIENTS % 'delete',
|
|
check_str=base.UNPROTECTED,
|
|
description='Delete specified client.',
|
|
operations=[
|
|
{
|
|
'path': '/v1/clients/{client_id}',
|
|
'method': 'DELETE'
|
|
}
|
|
]
|
|
),
|
|
policy.DocumentedRuleDefault(
|
|
name=CLIENTS % 'get',
|
|
check_str=base.UNPROTECTED,
|
|
description='Show clients.',
|
|
operations=[
|
|
{
|
|
'path': '/v1/clients/{client_id}',
|
|
'method': 'GET'
|
|
}
|
|
]
|
|
),
|
|
policy.DocumentedRuleDefault(
|
|
name=CLIENTS % 'get_all',
|
|
check_str=base.UNPROTECTED,
|
|
description='List clients.',
|
|
operations=[
|
|
{
|
|
'path': '/v1/clients',
|
|
'method': 'GET'
|
|
}
|
|
]
|
|
)
|
|
]
|
|
|
|
|
|
def list_rules():
|
|
return rules
|