116 lines
4.2 KiB
Python
116 lines
4.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (C) 2014-2016 Andrey Antukh <niwi@niwi.nz>
|
|
# Copyright (C) 2014-2016 Jesús Espino <jespinog@gmail.com>
|
|
# Copyright (C) 2014-2016 David Barragán <bameda@dbarragan.com>
|
|
# Copyright (C) 2014-2016 Alejandro Alonso <alejandro.alonso@kaleidos.net>
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
# The code is partially taken (and modified) from django rest framework
|
|
# that is licensed under the following terms:
|
|
#
|
|
# Copyright (c) 2011-2014, Tom Christie
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions are met:
|
|
#
|
|
# Redistributions of source code must retain the above copyright notice, this
|
|
# list of conditions and the following disclaimer.
|
|
# Redistributions in binary form must reproduce the above copyright notice, this
|
|
# list of conditions and the following disclaimer in the documentation and/or
|
|
# other materials provided with the distribution.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
"""
|
|
Descriptive HTTP status codes, for code readability.
|
|
|
|
See RFC 2616 - http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
|
|
And RFC 6585 - http://tools.ietf.org/html/rfc6585
|
|
"""
|
|
|
|
|
|
def is_informational(code):
|
|
return code >= 100 and code <= 199
|
|
|
|
def is_success(code):
|
|
return code >= 200 and code <= 299
|
|
|
|
def is_redirect(code):
|
|
return code >= 300 and code <= 399
|
|
|
|
def is_client_error(code):
|
|
return code >= 400 and code <= 499
|
|
|
|
def is_server_error(code):
|
|
return code >= 500 and code <= 599
|
|
|
|
|
|
HTTP_100_CONTINUE = 100
|
|
HTTP_101_SWITCHING_PROTOCOLS = 101
|
|
HTTP_200_OK = 200
|
|
HTTP_201_CREATED = 201
|
|
HTTP_202_ACCEPTED = 202
|
|
HTTP_203_NON_AUTHORITATIVE_INFORMATION = 203
|
|
HTTP_204_NO_CONTENT = 204
|
|
HTTP_205_RESET_CONTENT = 205
|
|
HTTP_206_PARTIAL_CONTENT = 206
|
|
HTTP_300_MULTIPLE_CHOICES = 300
|
|
HTTP_301_MOVED_PERMANENTLY = 301
|
|
HTTP_302_FOUND = 302
|
|
HTTP_303_SEE_OTHER = 303
|
|
HTTP_304_NOT_MODIFIED = 304
|
|
HTTP_305_USE_PROXY = 305
|
|
HTTP_306_RESERVED = 306
|
|
HTTP_307_TEMPORARY_REDIRECT = 307
|
|
HTTP_400_BAD_REQUEST = 400
|
|
HTTP_401_UNAUTHORIZED = 401
|
|
HTTP_402_PAYMENT_REQUIRED = 402
|
|
HTTP_403_FORBIDDEN = 403
|
|
HTTP_404_NOT_FOUND = 404
|
|
HTTP_405_METHOD_NOT_ALLOWED = 405
|
|
HTTP_406_NOT_ACCEPTABLE = 406
|
|
HTTP_407_PROXY_AUTHENTICATION_REQUIRED = 407
|
|
HTTP_408_REQUEST_TIMEOUT = 408
|
|
HTTP_409_CONFLICT = 409
|
|
HTTP_410_GONE = 410
|
|
HTTP_411_LENGTH_REQUIRED = 411
|
|
HTTP_412_PRECONDITION_FAILED = 412
|
|
HTTP_413_REQUEST_ENTITY_TOO_LARGE = 413
|
|
HTTP_414_REQUEST_URI_TOO_LONG = 414
|
|
HTTP_415_UNSUPPORTED_MEDIA_TYPE = 415
|
|
HTTP_416_REQUESTED_RANGE_NOT_SATISFIABLE = 416
|
|
HTTP_417_EXPECTATION_FAILED = 417
|
|
HTTP_428_PRECONDITION_REQUIRED = 428
|
|
HTTP_429_TOO_MANY_REQUESTS = 429
|
|
HTTP_431_REQUEST_HEADER_FIELDS_TOO_LARGE = 431
|
|
HTTP_451_BLOCKED = 451
|
|
HTTP_500_INTERNAL_SERVER_ERROR = 500
|
|
HTTP_501_NOT_IMPLEMENTED = 501
|
|
HTTP_502_BAD_GATEWAY = 502
|
|
HTTP_503_SERVICE_UNAVAILABLE = 503
|
|
HTTP_504_GATEWAY_TIMEOUT = 504
|
|
HTTP_505_HTTP_VERSION_NOT_SUPPORTED = 505
|
|
HTTP_511_NETWORK_AUTHENTICATION_REQUIRED = 511
|