Implement policy in code - service and task (8)

This commit migrate all service and task 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: I20e9be2705a41931309b5da4f114715485d1797e
This commit is contained in:
Hieu LE 2017-10-13 11:38:49 +07:00 committed by Dai Dang Van
parent 3c999d01b2
commit 643da24ff2
5 changed files with 99 additions and 13 deletions

View File

@ -1,12 +1,6 @@
{
"default": "rule:admin_or_owner",
"services:list": "rule:admin_or_owner",
"tasks:get": "rule:admin_or_owner",
"tasks:list": "rule:admin_or_owner",
"tasks:update": "rule:admin_or_owner",
"workbooks:create": "rule:admin_or_owner",
"workbooks:delete": "rule:admin_or_owner",
"workbooks:get": "rule:admin_or_owner",

View File

@ -21,6 +21,8 @@ from mistral.policies import cron_trigger
from mistral.policies import environment
from mistral.policies import execution
from mistral.policies import member
from mistral.policies import service
from mistral.policies import task
def list_rules():
@ -31,5 +33,7 @@ def list_rules():
cron_trigger.list_rules(),
environment.list_rules(),
execution.list_rules(),
member.list_rules()
member.list_rules(),
service.list_rules(),
task.list_rules()
)

View File

@ -0,0 +1,36 @@
# 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
SERVICES = 'services:%s'
rules = [
policy.DocumentedRuleDefault(
name=SERVICES % 'list',
check_str=base.RULE_ADMIN_OR_OWNER,
description='Return all Mistral services.',
operations=[
{
'path': '/v2/services',
'method': 'GET'
}
]
)
]
def list_rules():
return rules

58
mistral/policies/task.py Normal file
View File

@ -0,0 +1,58 @@
# 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
TASKS = 'tasks:%s'
rules = [
policy.DocumentedRuleDefault(
name=TASKS % 'get',
check_str=base.RULE_ADMIN_OR_OWNER,
description='Return the specified task.',
operations=[
{
'path': '/v2/tasks/{task_id}',
'method': 'GET'
}
]
),
policy.DocumentedRuleDefault(
name=TASKS % 'list',
check_str=base.RULE_ADMIN_OR_OWNER,
description='Return all tasks.',
operations=[
{
'path': '/v2/tasks',
'method': 'GET'
}
]
),
policy.DocumentedRuleDefault(
name=TASKS % 'update',
check_str=base.RULE_ADMIN_OR_OWNER,
description='Update the specified task execution.',
operations=[
{
'path': '/v2/tasks',
'method': 'PUT'
}
]
)
]
def list_rules():
return rules

View File

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