
Currently, the way queue's PATCH HTTP method is implemented in API v2 is not correct. This patch makes PATCH HTTP method to work as RFC6902 recommends: http://tools.ietf.org/html/rfc6902 This patch adds tests. This patch makes Zaqar return 404 response in the case when the user tries to perform PATCH on non-existing queue. APIImpact DocImpact Closes-Bug: #1553002 Co-Authored-By: Fei Long Wang <flwang@catalyst.net.nz> Co-Authored-By: Eva Balycheva <ubershy@gmail.com> Change-Id: Id1f02c63e8f078ddb657d3e9bc83ac0668672748
94 lines
2.9 KiB
Python
94 lines
2.9 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.
|
|
|
|
import falcon
|
|
|
|
from zaqar.i18n import _
|
|
|
|
|
|
class HTTPServiceUnavailable(falcon.HTTPServiceUnavailable):
|
|
"""Wraps falcon.HTTPServiceUnavailable with Zaqar messaging."""
|
|
|
|
TITLE = _(u'Service temporarily unavailable')
|
|
DESCRIPTION = _(u'Please try again in a few seconds.')
|
|
|
|
def __init__(self, description, retry_after=30):
|
|
description = description + ' ' + self.DESCRIPTION
|
|
super(HTTPServiceUnavailable, self).__init__(
|
|
self.TITLE, description, retry_after)
|
|
|
|
|
|
class HTTPBadRequestAPI(falcon.HTTPBadRequest):
|
|
"""Wraps falcon.HTTPBadRequest with a contextual title."""
|
|
|
|
TITLE = _(u'Invalid API request')
|
|
|
|
def __init__(self, description):
|
|
super(HTTPBadRequestAPI, self).__init__(self.TITLE, description)
|
|
|
|
|
|
class HTTPBadRequestBody(falcon.HTTPBadRequest):
|
|
"""Wraps falcon.HTTPBadRequest with a contextual title."""
|
|
|
|
TITLE = _(u'Invalid request body')
|
|
|
|
def __init__(self, description):
|
|
super(HTTPBadRequestBody, self).__init__(self.TITLE, description)
|
|
|
|
|
|
class HTTPDocumentTypeNotSupported(HTTPBadRequestBody):
|
|
"""Wraps HTTPBadRequestBody with a standard description."""
|
|
|
|
DESCRIPTION = _(u'Document type not supported.')
|
|
|
|
def __init__(self):
|
|
super(HTTPDocumentTypeNotSupported, self).__init__(self.DESCRIPTION)
|
|
|
|
|
|
class HTTPForbidden(falcon.HTTPForbidden):
|
|
"""Wraps falcon.HTTPForbidden with a contextual title."""
|
|
|
|
TITLE = _(u'Not authorized')
|
|
DESCRIPTION = _(u'You are not authorized to complete this action.')
|
|
|
|
def __init__(self):
|
|
super(HTTPForbidden, self).__init__(self.TITLE, self.DESCRIPTION)
|
|
|
|
|
|
class HTTPConflict(falcon.HTTPConflict):
|
|
"""Wraps falcon.HTTPConflict with contextual title."""
|
|
|
|
TITLE = _(u'Resource conflict')
|
|
|
|
def __init__(self, description, **kwargs):
|
|
super(HTTPConflict, self).__init__(self.TITLE, description, **kwargs)
|
|
|
|
|
|
class HTTPNotFound(falcon.HTTPNotFound):
|
|
"""Wraps falcon.HTTPConflict with contextual title."""
|
|
|
|
TITLE = _(u'Not found')
|
|
|
|
def __init__(self, description):
|
|
super(HTTPNotFound, self).__init__(title=self.TITLE,
|
|
description=description)
|
|
|
|
|
|
class HTTPUnsupportedMediaType(falcon.HTTPUnsupportedMediaType):
|
|
"""Wraps falcon.HTTPUnsupportedMediaType with contextual title."""
|
|
|
|
def __init__(self, description):
|
|
super(HTTPUnsupportedMediaType, self).__init__(description)
|