
The falcon library deprecated some interfaces used in zaqar in 3.0 and removed these in 4.0 . Replace the removed interfaces to fix compatibility with the latest release of the library. * The `body` attribute of Reponse class was removed [1] * HTTP error classes now accepts only keyword arguments [2] [1]c76f44248a
[2]0b9d26c7f6
Change-Id: Ied13446be2e1b5cb7c5839a84e8ad2413cca6fe3
78 lines
2.5 KiB
Python
78 lines
2.5 KiB
Python
# Copyright (c) 2013 Rackspace, Inc.
|
|
#
|
|
# 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 oslo_log import log as logging
|
|
|
|
from zaqar.common import decorators
|
|
from zaqar.i18n import _
|
|
from zaqar.storage import errors as storage_errors
|
|
from zaqar.transport import acl
|
|
from zaqar.transport import utils
|
|
from zaqar.transport.wsgi import errors as wsgi_errors
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class Resource(object):
|
|
|
|
__slots__ = '_queue_ctrl'
|
|
|
|
def __init__(self, queue_controller):
|
|
self._queue_ctrl = queue_controller
|
|
|
|
@decorators.TransportLog("Queues stats item")
|
|
@acl.enforce("queues:stats")
|
|
def on_get(self, req, resp, project_id, queue_name):
|
|
try:
|
|
resp_dict = self._queue_ctrl.stats(queue_name,
|
|
project=project_id)
|
|
|
|
message_stats = resp_dict['messages']
|
|
|
|
if message_stats['total'] != 0:
|
|
base_path = req.path[:req.path.rindex('/')] + '/messages/'
|
|
|
|
newest = message_stats['newest']
|
|
newest['href'] = base_path + newest['id']
|
|
del newest['id']
|
|
|
|
oldest = message_stats['oldest']
|
|
oldest['href'] = base_path + oldest['id']
|
|
del oldest['id']
|
|
|
|
resp.text = utils.to_json(resp_dict)
|
|
# status defaults to 200
|
|
|
|
except (storage_errors.QueueDoesNotExist,
|
|
storage_errors.QueueIsEmpty):
|
|
resp_dict = {
|
|
'messages': {
|
|
'claimed': 0,
|
|
'free': 0,
|
|
'total': 0
|
|
}
|
|
}
|
|
resp.text = utils.to_json(resp_dict)
|
|
|
|
except storage_errors.DoesNotExist as ex:
|
|
LOG.debug(ex)
|
|
raise wsgi_errors.HTTPNotFound(str(ex))
|
|
|
|
except Exception:
|
|
description = _(u'Queue stats could not be read.')
|
|
LOG.exception(description)
|
|
raise wsgi_errors.HTTPServiceUnavailable(description)
|