octavia.api.root_controller

Source code for octavia.api.root_controller

#    Copyright 2014 Rackspace
#
#    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 logging

from oslo_config import cfg
from pecan import rest
from wsme import types as wtypes
from wsmeext import pecan as wsme_pecan

from octavia.api.v1 import controllers as v1_controller
from octavia.api.v2 import controllers as v2_controller


CONF = cfg.CONF
LOG = logging.getLogger(__name__)


[docs]class RootController(rest.RestController): """The controller with which the pecan wsgi app should be created.""" _versions = None def __init__(self): super(RootController, self).__init__() self._versions = [] v1_enabled = CONF.api_settings.api_v1_enabled v2_enabled = CONF.api_settings.api_v2_enabled if v1_enabled: self.v1 = v1_controller.V1Controller() self._versions.append( { 'status': 'SUPPORTED', 'updated': '2014-12-11T00:00:00Z', 'id': 'v1' }) if v2_enabled: setattr(self, 'v2.0', v2_controller.V2Controller()) self._versions.append( { 'status': 'CURRENT', 'updated': '2017-06-22T00:00:00Z', 'id': 'v2.0' }) if not (v1_enabled or v2_enabled): LOG.warning("Both v1 and v2.0 API endpoints are disabled -- is " "this intentional?") elif v1_enabled and v2_enabled: LOG.warning("Both v1 and v2.0 API endpoints are enabled -- it is " "a security risk to expose the v1 endpoint publicly," "so please make sure access to it is secured.")
[docs] @wsme_pecan.wsexpose(wtypes.text) def get(self): return {'versions': self._versions}
Creative Commons Attribution 3.0 License

Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.