Skip to content

Commit

Permalink
Replace FLAGS with cfg.CONF in api
Browse files Browse the repository at this point in the history
Replace all the FLAGS with cfg.CONF in cinder/api
Large commit was split into several parts

Change-Id: I2114d5fc45f5299c3b2011270034a3370e0ec388
Fixes: bug #1182037
  • Loading branch information
Sergey Vilgelm committed Jun 10, 2013
1 parent aa7fde5 commit 67f39bf
Show file tree
Hide file tree
Showing 15 changed files with 57 additions and 60 deletions.
10 changes: 5 additions & 5 deletions cinder/api/__init__.py
Expand Up @@ -16,17 +16,17 @@
# License for the specific language governing permissions and limitations
# under the License.

import paste.urlmap

from cinder import flags
from oslo.config import cfg
import paste.urlmap


FLAGS = flags.FLAGS
CONF = cfg.CONF


def root_app_factory(loader, global_conf, **local_conf):
if not FLAGS.enable_v1_api:
if not CONF.enable_v1_api:
del local_conf['/v1']
if not FLAGS.enable_v2_api:
if not CONF.enable_v2_api:
del local_conf['/v2']
return paste.urlmap.urlmap_factory(loader, global_conf, **local_conf)
15 changes: 8 additions & 7 deletions cinder/api/common.py
Expand Up @@ -15,21 +15,22 @@
# License for the specific language governing permissions and limitations
# under the License.


import os
import re
import urlparse

from oslo.config import cfg
import webob

from cinder.api.openstack import wsgi
from cinder.api import xmlutil
from cinder import flags
from cinder.openstack.common import log as logging
from cinder import utils


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


XML_NS_V1 = 'http://docs.openstack.org/volume/api/v1'
Expand Down Expand Up @@ -73,7 +74,7 @@ def _get_marker_param(request):
return request.GET['marker']


def limited(items, request, max_limit=FLAGS.osapi_max_limit):
def limited(items, request, max_limit=CONF.osapi_max_limit):
"""Return a slice of items according to requested offset and limit.
:param items: A sliceable entity
Expand Down Expand Up @@ -110,7 +111,7 @@ def limited(items, request, max_limit=FLAGS.osapi_max_limit):
return items[offset:range_end]


def limited_by_marker(items, request, max_limit=FLAGS.osapi_max_limit):
def limited_by_marker(items, request, max_limit=CONF.osapi_max_limit):
"""Return a slice of items according to the requested marker and limit."""
params = get_pagination_params(request)

Expand Down Expand Up @@ -192,7 +193,7 @@ def _get_next_link(self, request, identifier):
params = request.params.copy()
params["marker"] = identifier
prefix = self._update_link_prefix(request.application_url,
FLAGS.osapi_volume_base_URL)
CONF.osapi_volume_base_URL)
url = os.path.join(prefix,
request.environ["cinder.context"].project_id,
self._collection_name)
Expand All @@ -201,7 +202,7 @@ def _get_next_link(self, request, identifier):
def _get_href_link(self, request, identifier):
"""Return an href string pointing to this object."""
prefix = self._update_link_prefix(request.application_url,
FLAGS.osapi_volume_base_URL)
CONF.osapi_volume_base_URL)
return os.path.join(prefix,
request.environ["cinder.context"].project_id,
self._collection_name,
Expand All @@ -211,7 +212,7 @@ def _get_bookmark_link(self, request, identifier):
"""Create a URL that refers to a specific resource."""
base_url = remove_version_from_href(request.application_url)
base_url = self._update_link_prefix(base_url,
FLAGS.osapi_volume_base_URL)
CONF.osapi_volume_base_URL)
return os.path.join(base_url,
request.environ["cinder.context"].project_id,
self._collection_name,
Expand Down
7 changes: 4 additions & 3 deletions cinder/api/contrib/__init__.py
Expand Up @@ -21,12 +21,13 @@
"""

from oslo.config import cfg

from cinder.api import extensions
from cinder import flags
from cinder.openstack.common import log as logging


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


Expand All @@ -36,4 +37,4 @@ def standard_extensions(ext_mgr):

def select_extensions(ext_mgr):
extensions.load_standard_extensions(ext_mgr, LOG, __path__, __package__,
FLAGS.osapi_volume_ext_list)
CONF.osapi_volume_ext_list)
4 changes: 2 additions & 2 deletions cinder/api/contrib/backups.py
Expand Up @@ -15,6 +15,7 @@

"""The backups api."""


import webob
from webob import exc
from xml.dom import minidom
Expand All @@ -26,10 +27,9 @@
from cinder.api import xmlutil
from cinder import backup as backupAPI
from cinder import exception
from cinder import flags
from cinder.openstack.common import log as logging

FLAGS = flags.FLAGS

LOG = logging.getLogger(__name__)


Expand Down
3 changes: 1 addition & 2 deletions cinder/api/contrib/extended_snapshot_attributes.py
Expand Up @@ -14,18 +14,17 @@

"""The Extended Snapshot Attributes API extension."""


from webob import exc

from cinder.api import extensions
from cinder.api.openstack import wsgi
from cinder.api import xmlutil
from cinder import exception
from cinder import flags
from cinder.openstack.common import log as logging
from cinder import volume


FLAGS = flags.FLAGS
LOG = logging.getLogger(__name__)
authorize = extensions.soft_extension_authorizer(
'volume',
Expand Down
11 changes: 7 additions & 4 deletions cinder/api/contrib/hosts.py
Expand Up @@ -15,6 +15,8 @@

"""The hosts admin extension."""


from oslo.config import cfg
import webob.exc
from xml.parsers import expat

Expand All @@ -23,13 +25,14 @@
from cinder.api import xmlutil
from cinder import db
from cinder import exception
from cinder import flags
from cinder.openstack.common import log as logging
from cinder.openstack.common import timeutils
from cinder import utils
from cinder.volume import api as volume_api

FLAGS = flags.FLAGS

CONF = cfg.CONF

LOG = logging.getLogger(__name__)
authorize = extensions.extension_authorizer('volume', 'hosts')

Expand Down Expand Up @@ -103,7 +106,7 @@ def _list_hosts(req, service=None):
hosts = []
for host in services:
delta = curr_time - (host['updated_at'] or host['created_at'])
alive = abs(utils.total_seconds(delta)) <= FLAGS.service_down_time
alive = abs(utils.total_seconds(delta)) <= CONF.service_down_time
status = (alive and "available") or "unavailable"
active = 'enabled'
if host['disabled']:
Expand Down Expand Up @@ -205,7 +208,7 @@ def show(self, req, id):
try:
host_ref = db.service_get_by_host_and_topic(context,
host,
FLAGS.volume_topic)
CONF.volume_topic)
except exception.ServiceNotFound:
raise webob.exc.HTTPNotFound(explanation=_("Host not found"))

Expand Down
2 changes: 0 additions & 2 deletions cinder/api/contrib/volume_actions.py
Expand Up @@ -18,14 +18,12 @@
from cinder.api.openstack import wsgi
from cinder.api import xmlutil
from cinder import exception
from cinder import flags
from cinder.openstack.common import log as logging
from cinder.openstack.common.rpc import common as rpc_common
from cinder import utils
from cinder import volume


FLAGS = flags.FLAGS
LOG = logging.getLogger(__name__)


Expand Down
7 changes: 4 additions & 3 deletions cinder/api/extensions.py
Expand Up @@ -18,22 +18,23 @@

import os

from oslo.config import cfg
import webob.dec
import webob.exc

import cinder.api.openstack
from cinder.api.openstack import wsgi
from cinder.api import xmlutil
from cinder import exception
from cinder import flags
from cinder.openstack.common import exception as common_exception
from cinder.openstack.common import importutils
from cinder.openstack.common import log as logging
import cinder.policy


CONF = cfg.CONF

LOG = logging.getLogger(__name__)
FLAGS = flags.FLAGS


class ExtensionDescriptor(object):
Expand Down Expand Up @@ -183,7 +184,7 @@ class ExtensionManager(object):
def __init__(self):
LOG.audit(_('Initializing extension manager.'))

self.cls_list = FLAGS.osapi_volume_extension
self.cls_list = CONF.osapi_volume_extension
self.extensions = {}
self._load_extensions()

Expand Down
19 changes: 11 additions & 8 deletions cinder/api/middleware/auth.py
Expand Up @@ -18,6 +18,8 @@
Common Auth Middleware.
"""


import os

from oslo.config import cfg
Expand All @@ -26,26 +28,27 @@

from cinder.api.openstack import wsgi
from cinder import context
from cinder import flags
from cinder.openstack.common import log as logging
from cinder import wsgi as base_wsgi


use_forwarded_for_opt = cfg.BoolOpt(
'use_forwarded_for',
default=False,
help='Treat X-Forwarded-For as the canonical remote address. '
'Only enable this if you have a sanitizing proxy.')

FLAGS = flags.FLAGS
FLAGS.register_opt(use_forwarded_for_opt)
CONF = cfg.CONF
CONF.register_opt(use_forwarded_for_opt)

LOG = logging.getLogger(__name__)


def pipeline_factory(loader, global_conf, **local_conf):
"""A paste pipeline replica that keys off of auth_strategy."""
pipeline = local_conf[FLAGS.auth_strategy]
if not FLAGS.api_rate_limit:
limit_name = FLAGS.auth_strategy + '_nolimit'
pipeline = local_conf[CONF.auth_strategy]
if not CONF.api_rate_limit:
limit_name = CONF.auth_strategy + '_nolimit'
pipeline = local_conf.get(limit_name, pipeline)
pipeline = pipeline.split()
filters = [loader.get_filter(n) for n in pipeline[:-1]]
Expand Down Expand Up @@ -94,7 +97,7 @@ def __call__(self, req):

# Build a context, including the auth_token...
remote_address = req.remote_addr
if FLAGS.use_forwarded_for:
if CONF.use_forwarded_for:
remote_address = req.headers.get('X-Forwarded-For', remote_address)
ctx = context.RequestContext(user_id,
project_id,
Expand Down Expand Up @@ -129,7 +132,7 @@ def __call__(self, req):
user_id, _sep, project_id = token.partition(':')
project_id = project_id or user_id
remote_address = getattr(req, 'remote_address', '127.0.0.1')
if FLAGS.use_forwarded_for:
if CONF.use_forwarded_for:
remote_address = req.headers.get('X-Forwarded-For', remote_address)
ctx = context.RequestContext(user_id,
project_id,
Expand Down
12 changes: 7 additions & 5 deletions cinder/api/middleware/sizelimit.py
Expand Up @@ -18,21 +18,23 @@
"""


from oslo.config import cfg
import webob.dec
import webob.exc

from cinder import flags
from cinder.openstack.common import log as logging
from cinder import wsgi


#default request size is 112k
max_request_body_size_opt = cfg.IntOpt('osapi_max_request_body_size',
default=114688,
help='Max size for body of a request')

FLAGS = flags.FLAGS
FLAGS.register_opt(max_request_body_size_opt)
CONF = cfg.CONF
CONF.register_opt(max_request_body_size_opt)

LOG = logging.getLogger(__name__)


Expand Down Expand Up @@ -73,11 +75,11 @@ def __init__(self, *args, **kwargs):

@webob.dec.wsgify(RequestClass=wsgi.Request)
def __call__(self, req):
if req.content_length > FLAGS.osapi_max_request_body_size:
if req.content_length > CONF.osapi_max_request_body_size:
msg = _("Request is too large.")
raise webob.exc.HTTPRequestEntityTooLarge(explanation=msg)
if req.content_length is None and req.is_body_readable:
limiter = LimitingReader(req.body_file,
FLAGS.osapi_max_request_body_size)
CONF.osapi_max_request_body_size)
req.body_file = limiter
return self.application
4 changes: 0 additions & 4 deletions cinder/api/v1/snapshots.py
Expand Up @@ -23,7 +23,6 @@
from cinder.api.v1 import volumes
from cinder.api import xmlutil
from cinder import exception
from cinder import flags
from cinder.openstack.common import log as logging
from cinder.openstack.common import strutils
from cinder import utils
Expand All @@ -33,9 +32,6 @@
LOG = logging.getLogger(__name__)


FLAGS = flags.FLAGS


def _translate_snapshot_detail_view(context, snapshot):
"""Maps keys for snapshots details view."""

Expand Down
4 changes: 0 additions & 4 deletions cinder/api/v1/volumes.py
Expand Up @@ -22,7 +22,6 @@
from cinder.api.openstack import wsgi
from cinder.api import xmlutil
from cinder import exception
from cinder import flags
from cinder.openstack.common import log as logging
from cinder.openstack.common import uuidutils
from cinder import utils
Expand All @@ -33,9 +32,6 @@
LOG = logging.getLogger(__name__)


FLAGS = flags.FLAGS


def _translate_attachment_detail_view(_context, vol):
"""Maps keys for attachment details view."""

Expand Down

0 comments on commit 67f39bf

Please sign in to comment.