deb-designate/designate/quota/base.py
Kiall Mac Innes ce325c9c04 Introduce RecordSets concept to core, and add initial RRSet API to v2
The v2 RecordSet API is experimental. This commit is intended to only provide
a stable experience with the V1 API.

Change-Id: I168401d8ce3066a19d3538b3ec5cd36338b10b44
2013-12-17 15:16:51 +00:00

70 lines
2.2 KiB
Python

# Copyright 2013 Hewlett-Packard Development Company, L.P.
#
# Author: Kiall Mac Innes <kiall@hp.com>
#
# 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.
import abc
from oslo.config import cfg
from designate import exceptions
from designate.plugin import Plugin
class Quota(Plugin):
""" Base class for quota plugins """
__metaclass__ = abc.ABCMeta
__plugin_ns__ = 'designate.quota'
__plugin_type__ = 'quota'
def limit_check(self, context, tenant_id, **values):
quotas = self.get_quotas(context, tenant_id)
for resource, value in values.items():
if resource in quotas:
if value >= quotas[resource]:
raise exceptions.OverQuota()
else:
raise exceptions.QuotaResourceUnknown()
def get_quotas(self, context, tenant_id):
quotas = self.get_default_quotas(context)
quotas.update(self._get_quotas(context, tenant_id))
return quotas
@abc.abstractmethod
def _get_quotas(self, context, tenant_id):
pass
def get_default_quotas(self, context):
return {
'domains': cfg.CONF.quota_domains,
'domain_recordsets': cfg.CONF.quota_domain_recordsets,
'domain_records': cfg.CONF.quota_domain_records,
'recordset_records': cfg.CONF.quota_recordset_records,
}
def get_quota(self, context, tenant_id, resource):
quotas = self._get_quotas(context, tenant_id)
if resource not in quotas:
raise exceptions.QuotaResourceUnknown()
return quotas[resource]
def set_quota(self, context, tenant_id, resource, hard_limit):
raise NotImplementedError()
def reset_quotas(self, context, tenant_id):
raise NotImplementedError()