a53c3daf16
Based upon the established conf paradigm used in Nova, this patch moves most of the configuration to a central location. Making config a lot easier to manage, as well a lot easier to locate. There is still some configuration listed in classes, that I would like to eventually move to designate.conf as well, but to lower complexity not all config was moved. General changes * Centrelized most configuration under designate.conf. * Cleaned up configuration. * Simplified config generation. * Renamed generated config to designate.conf.sample. Previously broken * xfr_timeout now in the appropriate section. * memcached_servers now in the appropriate section. Previously missing from sample config * allowed_remote_exmods listed in sample config. * backend:akamai section listed in sample config. * backend:dynect section listed in sample config. * backend:infoblox section listed in sample config. blueprint centralize-config-designate Change-Id: I3be68bf294157631a9bac128df0841220020de96
80 lines
3.0 KiB
Python
80 lines
3.0 KiB
Python
#
|
|
# 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 keystoneauth1 import exceptions as kse
|
|
from keystoneauth1 import loading as ksa_loading
|
|
from oslo_config import cfg
|
|
from oslo_log import log as logging
|
|
|
|
from designate import exceptions
|
|
from designate.i18n import _
|
|
|
|
|
|
CONF = cfg.CONF
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
def verify_project_id(context, project_id):
|
|
"""verify that a project_id exists.
|
|
|
|
This attempts to verify that a project id exists. If it does not,
|
|
an HTTPBadRequest is emitted.
|
|
|
|
"""
|
|
session = ksa_loading.load_session_from_conf_options(
|
|
CONF, 'keystone', auth=context.get_auth_plugin())
|
|
adap = ksa_loading.load_adapter_from_conf_options(
|
|
CONF, 'keystone',
|
|
session=session, min_version=(3, 0), max_version=(3, 'latest'))
|
|
try:
|
|
resp = adap.get('/projects/%s' % project_id, raise_exc=False)
|
|
except kse.EndpointNotFound:
|
|
LOG.error(
|
|
"Keystone identity service version 3.0 was not found. This might "
|
|
"be because your endpoint points to the v2.0 versioned endpoint "
|
|
"which is not supported. Please fix this.")
|
|
raise exceptions.KeystoneCommunicationFailure(
|
|
_("KeystoneV3 endpoint not found"))
|
|
except kse.ClientException:
|
|
# something is wrong, like there isn't a keystone v3 endpoint,
|
|
# or nova isn't configured for the interface to talk to it;
|
|
# we'll take the pass and default to everything being ok.
|
|
LOG.info("Unable to contact keystone to verify project_id")
|
|
return True
|
|
|
|
if resp:
|
|
# All is good with this 20x status
|
|
return True
|
|
elif resp.status_code == 404:
|
|
# we got access, and we know this project is not there
|
|
raise exceptions.InvalidProject(
|
|
_("%s is not a valid project ID.") % project_id)
|
|
|
|
elif resp.status_code == 403:
|
|
# we don't have enough permission to verify this, so default
|
|
# to "it's ok".
|
|
LOG.info(
|
|
"Insufficient permissions for user %(user)s to verify "
|
|
"existence of project_id %(pid)s",
|
|
{"user": context.user_id, "pid": project_id})
|
|
return True
|
|
else:
|
|
LOG.warning(
|
|
"Unexpected response from keystone trying to "
|
|
"verify project_id %(pid)s - resp: %(code)s %(content)s",
|
|
{"pid": project_id,
|
|
"code": resp.status_code,
|
|
"content": resp.content})
|
|
# realize we did something wrong, but move on with a warning
|
|
return True
|