From ce1cc7b2b2f74fc3733d19aeff2159474567dad3 Mon Sep 17 00:00:00 2001 From: The-EDev Date: Sat, 2 Oct 2021 17:11:19 +0300 Subject: [PATCH] replaced http_connection.h integers with enum values --- include/crow/http_connection.h | 81 +++++++++++++++++----------------- 1 file changed, 41 insertions(+), 40 deletions(-) diff --git a/include/crow/http_connection.h b/include/crow/http_connection.h index b7f0b69f1..da11fab72 100644 --- a/include/crow/http_connection.h +++ b/include/crow/http_connection.h @@ -9,6 +9,7 @@ #include "crow/http_parser_merged.h" +#include "crow/common.h" #include "crow/parser.h" #include "crow/http_response.h" #include "crow/logging.h" @@ -420,46 +421,46 @@ namespace crow // Keep in sync with common.h/status static std::unordered_map statusCodes = { - {100, "HTTP/1.1 100 Continue\r\n"}, - {101, "HTTP/1.1 101 Switching Protocols\r\n"}, - - {200, "HTTP/1.1 200 OK\r\n"}, - {201, "HTTP/1.1 201 Created\r\n"}, - {202, "HTTP/1.1 202 Accepted\r\n"}, - {203, "HTTP/1.1 203 Non-Authoritative Information\r\n"}, - {204, "HTTP/1.1 204 No Content\r\n"}, - {205, "HTTP/1.1 205 Reset Content\r\n"}, - {206, "HTTP/1.1 206 Partial Content\r\n"}, - - {300, "HTTP/1.1 300 Multiple Choices\r\n"}, - {301, "HTTP/1.1 301 Moved Permanently\r\n"}, - {302, "HTTP/1.1 302 Found\r\n"}, - {303, "HTTP/1.1 303 See Other\r\n"}, - {304, "HTTP/1.1 304 Not Modified\r\n"}, - {307, "HTTP/1.1 307 Temporary Redirect\r\n"}, - {308, "HTTP/1.1 308 Permanent Redirect\r\n"}, - - {400, "HTTP/1.1 400 Bad Request\r\n"}, - {401, "HTTP/1.1 401 Unauthorized\r\n"}, - {403, "HTTP/1.1 403 Forbidden\r\n"}, - {404, "HTTP/1.1 404 Not Found\r\n"}, - {405, "HTTP/1.1 405 Method Not Allowed\r\n"}, - {407, "HTTP/1.1 407 Proxy Authentication Required\r\n"}, - {409, "HTTP/1.1 409 Conflict\r\n"}, - {410, "HTTP/1.1 410 Gone\r\n"}, - {413, "HTTP/1.1 413 Payload Too Large\r\n"}, - {415, "HTTP/1.1 415 Unsupported Media Type\r\n"}, - {416, "HTTP/1.1 416 Range Not Satisfiable\r\n"}, - {417, "HTTP/1.1 417 Expectation Failed\r\n"}, - {428, "HTTP/1.1 428 Precondition Required\r\n"}, - {429, "HTTP/1.1 429 Too Many Requests\r\n"}, - {451, "HTTP/1.1 451 Unavailable For Legal Reasons\r\n"}, - - {500, "HTTP/1.1 500 Internal Server Error\r\n"}, - {501, "HTTP/1.1 501 Not Implemented\r\n"}, - {502, "HTTP/1.1 502 Bad Gateway\r\n"}, - {503, "HTTP/1.1 503 Service Unavailable\r\n"}, - {506, "HTTP/1.1 506 Variant Also Negotiates\r\n"}, + {status::CONTINUE, "HTTP/1.1 100 Continue\r\n"}, + {status::SWITCHING_PROTOCOLS, "HTTP/1.1 101 Switching Protocols\r\n"}, + + {status::OK, "HTTP/1.1 200 OK\r\n"}, + {status::CREATED, "HTTP/1.1 201 Created\r\n"}, + {status::ACCEPTED, "HTTP/1.1 202 Accepted\r\n"}, + {status::NON_AUTHORITATIVE_INFORMATION, "HTTP/1.1 203 Non-Authoritative Information\r\n"}, + {status::NO_CONTENT, "HTTP/1.1 204 No Content\r\n"}, + {status::RESET_CONTENT, "HTTP/1.1 205 Reset Content\r\n"}, + {status::PARTIAL_CONTENT, "HTTP/1.1 206 Partial Content\r\n"}, + + {status::MULTIPLE_CHOICES, "HTTP/1.1 300 Multiple Choices\r\n"}, + {status::MOVED_PERMANENTLY, "HTTP/1.1 301 Moved Permanently\r\n"}, + {status::FOUND, "HTTP/1.1 302 Found\r\n"}, + {status::SEE_OTHER, "HTTP/1.1 303 See Other\r\n"}, + {status::NOT_MODIFIED, "HTTP/1.1 304 Not Modified\r\n"}, + {status::TEMPORARY_REDIRECT, "HTTP/1.1 307 Temporary Redirect\r\n"}, + {status::PERMANENT_REDIRECT, "HTTP/1.1 308 Permanent Redirect\r\n"}, + + {status::BAD_REQUEST, "HTTP/1.1 400 Bad Request\r\n"}, + {status::UNAUTHORIZED, "HTTP/1.1 401 Unauthorized\r\n"}, + {status::FORBIDDEN, "HTTP/1.1 403 Forbidden\r\n"}, + {status::NOT_FOUND, "HTTP/1.1 404 Not Found\r\n"}, + {status::METHOD_NOT_ALLOWED, "HTTP/1.1 405 Method Not Allowed\r\n"}, + {status::PROXY_AUTHENTICATION_REQUIRED, "HTTP/1.1 407 Proxy Authentication Required\r\n"}, + {status::CONFLICT, "HTTP/1.1 409 Conflict\r\n"}, + {status::GONE, "HTTP/1.1 410 Gone\r\n"}, + {status::PAYLOAD_TOO_LARGE, "HTTP/1.1 413 Payload Too Large\r\n"}, + {status::UNSUPPORTED_MEDIA_TYPE, "HTTP/1.1 415 Unsupported Media Type\r\n"}, + {status::RANGE_NOT_SATISFIABLE, "HTTP/1.1 416 Range Not Satisfiable\r\n"}, + {status::EXPECTATION_FAILED, "HTTP/1.1 417 Expectation Failed\r\n"}, + {status::PRECONDITION_REQUIRED, "HTTP/1.1 428 Precondition Required\r\n"}, + {status::TOO_MANY_REQUESTS, "HTTP/1.1 429 Too Many Requests\r\n"}, + {status::UNAVAILABLE_FOR_LEGAL_REASONS, "HTTP/1.1 451 Unavailable For Legal Reasons\r\n"}, + + {status::INTERNAL_SERVER_ERROR, "HTTP/1.1 500 Internal Server Error\r\n"}, + {status::NOT_IMPLEMENTED, "HTTP/1.1 501 Not Implemented\r\n"}, + {status::BAD_GATEWAY, "HTTP/1.1 502 Bad Gateway\r\n"}, + {status::SERVICE_UNAVAILABLE, "HTTP/1.1 503 Service Unavailable\r\n"}, + {status::VARIANT_ALSO_NEGOTIATES, "HTTP/1.1 506 Variant Also Negotiates\r\n"}, }; static std::string seperator = ": ";