manila/manila/api/views/quota_sets.py

56 lines
2.0 KiB
Python

# Copyright (c) 2015 Mirantis inc.
# 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 manila.api import common
class ViewBuilder(common.ViewBuilder):
_collection_name = "quota_set"
_detail_version_modifiers = [
"add_share_group_quotas",
]
def detail_list(self, request, quota_set, project_id=None,
share_type=None):
"""Detailed view of quota set."""
keys = (
'shares',
'gigabytes',
'snapshots',
'snapshot_gigabytes',
)
view = {key: quota_set.get(key) for key in keys}
if project_id:
view['id'] = project_id
if share_type:
# NOTE(vponomaryov): remove share groups related data for quotas
# that are share-type based.
quota_set.pop('share_groups', None)
quota_set.pop('share_group_snapshots', None)
else:
view['share_networks'] = quota_set.get('share_networks')
self.update_versioned_resource_dict(request, view, quota_set)
return {self._collection_name: view}
@common.ViewBuilder.versioned_method("2.40")
def add_share_group_quotas(self, context, view, quota_set):
share_groups = quota_set.get('share_groups')
share_group_snapshots = quota_set.get('share_group_snapshots')
if share_groups is not None:
view['share_groups'] = share_groups
if share_group_snapshots is not None:
view['share_group_snapshots'] = share_group_snapshots