Implement policy in code - action (3)

This commit migrate all action policies into code [1].

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: I2ced708b492026c7561cdfc417c43cfa0e4bb503
This commit is contained in:
Hieu LE 2017-10-12 10:26:42 +07:00 committed by Dai Dang Van
parent 33407d6f44
commit e32fa68bcb
4 changed files with 82 additions and 12 deletions

View File

@ -1,12 +1,6 @@
{
"default": "rule:admin_or_owner",
"actions:create": "rule:admin_or_owner",
"actions:delete": "rule:admin_or_owner",
"actions:get": "rule:admin_or_owner",
"actions:list": "rule:admin_or_owner",
"actions:update": "rule:admin_or_owner",
"cron_triggers:create": "rule:admin_or_owner",
"cron_triggers:delete": "rule:admin_or_owner",
"cron_triggers:get": "rule:admin_or_owner",

View File

@ -14,12 +14,14 @@
import itertools
from mistral.policies import action
from mistral.policies import action_executions
from mistral.policies import base
def list_rules():
return itertools.chain(
action.list_rules(),
action_executions.list_rules(),
base.list_rules()
)

View File

@ -0,0 +1,80 @@
# 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 mistral.policies import base
ACTIONS = 'actions:%s'
rules = [
policy.DocumentedRuleDefault(
name=ACTIONS % 'create',
check_str=base.RULE_ADMIN_OR_OWNER,
description='Create a new action.',
operations=[
{
'path': '/v2/actions',
'method': 'POST'
}
]
),
policy.DocumentedRuleDefault(
name=ACTIONS % 'delete',
check_str=base.RULE_ADMIN_OR_OWNER,
description='Delete the named action.',
operations=[
{
'path': '/v2/actions',
'method': 'DELETE'
}
]
),
policy.DocumentedRuleDefault(
name=ACTIONS % 'get',
check_str=base.RULE_ADMIN_OR_OWNER,
description='Return the named action.',
operations=[
{
'path': '/v2/actions/{action_id}',
'method': 'GET'
}
]
),
policy.DocumentedRuleDefault(
name=ACTIONS % 'list',
check_str=base.RULE_ADMIN_OR_OWNER,
description='Return all actions.',
operations=[
{
'path': '/v2/actions',
'method': 'GET'
}
]
),
policy.DocumentedRuleDefault(
name=ACTIONS % 'update',
check_str=base.RULE_ADMIN_OR_OWNER,
description='Update one or more actions.',
operations=[
{
'path': '/v2/actions',
'method': 'PUT'
}
]
)
]
def list_rules():
return rules

View File

@ -15,12 +15,6 @@
policy_data = """{
"default": "rule:admin_or_owner",
"actions:create": "rule:admin_or_owner",
"actions:delete": "rule:admin_or_owner",
"actions:get": "rule:admin_or_owner",
"actions:list": "rule:admin_or_owner",
"actions:update": "rule:admin_or_owner",
"cron_triggers:create": "rule:admin_or_owner",
"cron_triggers:delete": "rule:admin_or_owner",
"cron_triggers:get": "rule:admin_or_owner",