__init__.py 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. from enum import IntEnum
  2. __all__ = ['HTTPStatus']
  3. class HTTPStatus(IntEnum):
  4. """HTTP status codes and reason phrases
  5. Status codes from the following RFCs are all observed:
  6. * RFC 7231: Hypertext Transfer Protocol (HTTP/1.1), obsoletes 2616
  7. * RFC 6585: Additional HTTP Status Codes
  8. * RFC 3229: Delta encoding in HTTP
  9. * RFC 4918: HTTP Extensions for WebDAV, obsoletes 2518
  10. * RFC 5842: Binding Extensions to WebDAV
  11. * RFC 7238: Permanent Redirect
  12. * RFC 2295: Transparent Content Negotiation in HTTP
  13. * RFC 2774: An HTTP Extension Framework
  14. """
  15. def __new__(cls, value, phrase, description=''):
  16. obj = int.__new__(cls, value)
  17. obj._value_ = value
  18. obj.phrase = phrase
  19. obj.description = description
  20. return obj
  21. # informational
  22. CONTINUE = 100, 'Continue', 'Request received, please continue'
  23. SWITCHING_PROTOCOLS = (101, 'Switching Protocols',
  24. 'Switching to new protocol; obey Upgrade header')
  25. PROCESSING = 102, 'Processing'
  26. # success
  27. OK = 200, 'OK', 'Request fulfilled, document follows'
  28. CREATED = 201, 'Created', 'Document created, URL follows'
  29. ACCEPTED = (202, 'Accepted',
  30. 'Request accepted, processing continues off-line')
  31. NON_AUTHORITATIVE_INFORMATION = (203,
  32. 'Non-Authoritative Information', 'Request fulfilled from cache')
  33. NO_CONTENT = 204, 'No Content', 'Request fulfilled, nothing follows'
  34. RESET_CONTENT = 205, 'Reset Content', 'Clear input form for further input'
  35. PARTIAL_CONTENT = 206, 'Partial Content', 'Partial content follows'
  36. MULTI_STATUS = 207, 'Multi-Status'
  37. ALREADY_REPORTED = 208, 'Already Reported'
  38. IM_USED = 226, 'IM Used'
  39. # redirection
  40. MULTIPLE_CHOICES = (300, 'Multiple Choices',
  41. 'Object has several resources -- see URI list')
  42. MOVED_PERMANENTLY = (301, 'Moved Permanently',
  43. 'Object moved permanently -- see URI list')
  44. FOUND = 302, 'Found', 'Object moved temporarily -- see URI list'
  45. SEE_OTHER = 303, 'See Other', 'Object moved -- see Method and URL list'
  46. NOT_MODIFIED = (304, 'Not Modified',
  47. 'Document has not changed since given time')
  48. USE_PROXY = (305, 'Use Proxy',
  49. 'You must use proxy specified in Location to access this resource')
  50. TEMPORARY_REDIRECT = (307, 'Temporary Redirect',
  51. 'Object moved temporarily -- see URI list')
  52. PERMANENT_REDIRECT = (308, 'Permanent Redirect',
  53. 'Object moved temporarily -- see URI list')
  54. # client error
  55. BAD_REQUEST = (400, 'Bad Request',
  56. 'Bad request syntax or unsupported method')
  57. UNAUTHORIZED = (401, 'Unauthorized',
  58. 'No permission -- see authorization schemes')
  59. PAYMENT_REQUIRED = (402, 'Payment Required',
  60. 'No payment -- see charging schemes')
  61. FORBIDDEN = (403, 'Forbidden',
  62. 'Request forbidden -- authorization will not help')
  63. NOT_FOUND = (404, 'Not Found',
  64. 'Nothing matches the given URI')
  65. METHOD_NOT_ALLOWED = (405, 'Method Not Allowed',
  66. 'Specified method is invalid for this resource')
  67. NOT_ACCEPTABLE = (406, 'Not Acceptable',
  68. 'URI not available in preferred format')
  69. PROXY_AUTHENTICATION_REQUIRED = (407,
  70. 'Proxy Authentication Required',
  71. 'You must authenticate with this proxy before proceeding')
  72. REQUEST_TIMEOUT = (408, 'Request Timeout',
  73. 'Request timed out; try again later')
  74. CONFLICT = 409, 'Conflict', 'Request conflict'
  75. GONE = (410, 'Gone',
  76. 'URI no longer exists and has been permanently removed')
  77. LENGTH_REQUIRED = (411, 'Length Required',
  78. 'Client must specify Content-Length')
  79. PRECONDITION_FAILED = (412, 'Precondition Failed',
  80. 'Precondition in headers is false')
  81. REQUEST_ENTITY_TOO_LARGE = (413, 'Request Entity Too Large',
  82. 'Entity is too large')
  83. REQUEST_URI_TOO_LONG = (414, 'Request-URI Too Long',
  84. 'URI is too long')
  85. UNSUPPORTED_MEDIA_TYPE = (415, 'Unsupported Media Type',
  86. 'Entity body in unsupported format')
  87. REQUESTED_RANGE_NOT_SATISFIABLE = (416,
  88. 'Requested Range Not Satisfiable',
  89. 'Cannot satisfy request range')
  90. EXPECTATION_FAILED = (417, 'Expectation Failed',
  91. 'Expect condition could not be satisfied')
  92. UNPROCESSABLE_ENTITY = 422, 'Unprocessable Entity'
  93. LOCKED = 423, 'Locked'
  94. FAILED_DEPENDENCY = 424, 'Failed Dependency'
  95. UPGRADE_REQUIRED = 426, 'Upgrade Required'
  96. PRECONDITION_REQUIRED = (428, 'Precondition Required',
  97. 'The origin server requires the request to be conditional')
  98. TOO_MANY_REQUESTS = (429, 'Too Many Requests',
  99. 'The user has sent too many requests in '
  100. 'a given amount of time ("rate limiting")')
  101. REQUEST_HEADER_FIELDS_TOO_LARGE = (431,
  102. 'Request Header Fields Too Large',
  103. 'The server is unwilling to process the request because its header '
  104. 'fields are too large')
  105. # server errors
  106. INTERNAL_SERVER_ERROR = (500, 'Internal Server Error',
  107. 'Server got itself in trouble')
  108. NOT_IMPLEMENTED = (501, 'Not Implemented',
  109. 'Server does not support this operation')
  110. BAD_GATEWAY = (502, 'Bad Gateway',
  111. 'Invalid responses from another server/proxy')
  112. SERVICE_UNAVAILABLE = (503, 'Service Unavailable',
  113. 'The server cannot process the request due to a high load')
  114. GATEWAY_TIMEOUT = (504, 'Gateway Timeout',
  115. 'The gateway server did not receive a timely response')
  116. HTTP_VERSION_NOT_SUPPORTED = (505, 'HTTP Version Not Supported',
  117. 'Cannot fulfill request')
  118. VARIANT_ALSO_NEGOTIATES = 506, 'Variant Also Negotiates'
  119. INSUFFICIENT_STORAGE = 507, 'Insufficient Storage'
  120. LOOP_DETECTED = 508, 'Loop Detected'
  121. NOT_EXTENDED = 510, 'Not Extended'
  122. NETWORK_AUTHENTICATION_REQUIRED = (511,
  123. 'Network Authentication Required',
  124. 'The client needs to authenticate to gain network access')