88b993b192
This commit updates the policies to use the default roles provided by keystone allowing for a more consistent authorization experience across OpenStack services. This commit also includes read-only support for read APIs. Also removes the following from tests/unit/policy.yaml: -"volume:get_snapshot_metadata": "" -"volume:update_snapshot_metadata": "" -"volume:delete_snapshot_metadata": "" Co-Authored-by: Alan Bishop <abishop@redhat.com> Change-Id: I99b44c87d2061524aa2b806da9b091b5602d726c
92 lines
2.9 KiB
Python
92 lines
2.9 KiB
Python
# Copyright (c) 2017 Huawei Technologies Co., Ltd.
|
|
# 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 cinder.policies import base
|
|
|
|
|
|
GET_POLICY = 'volume:get_snapshot_metadata'
|
|
DELETE_POLICY = 'volume:delete_snapshot_metadata'
|
|
UPDATE_POLICY = 'volume:update_snapshot_metadata'
|
|
|
|
deprecated_get_snapshot_metadata = base.CinderDeprecatedRule(
|
|
name=GET_POLICY,
|
|
check_str=base.RULE_ADMIN_OR_OWNER
|
|
)
|
|
deprecated_update_snapshot_metadata = base.CinderDeprecatedRule(
|
|
name=UPDATE_POLICY,
|
|
check_str=base.RULE_ADMIN_OR_OWNER
|
|
)
|
|
deprecated_delete_snapshot_metadata = base.CinderDeprecatedRule(
|
|
name=DELETE_POLICY,
|
|
check_str=base.RULE_ADMIN_OR_OWNER
|
|
)
|
|
|
|
|
|
snapshot_metadata_policies = [
|
|
policy.DocumentedRuleDefault(
|
|
name=GET_POLICY,
|
|
check_str=base.SYSTEM_READER_OR_PROJECT_READER,
|
|
description="Show snapshot's metadata or one specified metadata "
|
|
"with a given key.",
|
|
operations=[
|
|
{
|
|
'method': 'GET',
|
|
'path': '/snapshots/{snapshot_id}/metadata'
|
|
},
|
|
{
|
|
'method': 'GET',
|
|
'path': '/snapshots/{snapshot_id}/metadata/{key}'
|
|
}
|
|
],
|
|
deprecated_rule=deprecated_get_snapshot_metadata,
|
|
),
|
|
policy.DocumentedRuleDefault(
|
|
name=UPDATE_POLICY,
|
|
check_str=base.SYSTEM_ADMIN_OR_PROJECT_MEMBER,
|
|
description="Update snapshot's metadata or one specified "
|
|
"metadata with a given key.",
|
|
operations=[
|
|
{
|
|
'method': 'POST',
|
|
'path': '/snapshots/{snapshot_id}/metadata'
|
|
},
|
|
{
|
|
'method': 'PUT',
|
|
'path': '/snapshots/{snapshot_id}/metadata/{key}'
|
|
}
|
|
],
|
|
deprecated_rule=deprecated_update_snapshot_metadata,
|
|
),
|
|
policy.DocumentedRuleDefault(
|
|
name=DELETE_POLICY,
|
|
check_str=base.SYSTEM_ADMIN_OR_PROJECT_MEMBER,
|
|
description="Delete snapshot's specified metadata "
|
|
"with a given key.",
|
|
operations=[
|
|
{
|
|
'method': 'DELETE',
|
|
'path': '/snapshots/{snapshot_id}/metadata/{key}'
|
|
}
|
|
],
|
|
deprecated_rule=deprecated_delete_snapshot_metadata,
|
|
),
|
|
]
|
|
|
|
|
|
def list_rules():
|
|
return snapshot_metadata_policies
|