2022-07-28 15:15:04 +00:00
|
|
|
/*
|
2022-12-26 15:52:52 +00:00
|
|
|
* Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net>
|
2022-07-28 15:15:04 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person
|
|
|
|
* obtaining a copy of this software and associated documentation files
|
|
|
|
* (the "Software"), to deal in the Software without restriction,
|
|
|
|
* including without limitation the rights to use, copy, modify, merge,
|
|
|
|
* publish, distribute, sublicense, and/or sell copies of the Software,
|
|
|
|
* and to permit persons to whom the Software is furnished to do so,
|
|
|
|
* subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
2022-07-28 16:00:52 +00:00
|
|
|
* included in all copies or portions of the Software.
|
2022-07-28 15:15:04 +00:00
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
|
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
|
|
|
*/
|
2022-07-23 00:19:12 +00:00
|
|
|
#ifndef TELODENDRIA_HTTP_H
|
|
|
|
#define TELODENDRIA_HTTP_H
|
|
|
|
|
2022-10-03 17:40:29 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2022-09-09 01:09:47 +00:00
|
|
|
#include <HashMap.h>
|
|
|
|
|
2022-07-25 19:25:06 +00:00
|
|
|
typedef enum HttpRequestMethod
|
|
|
|
{
|
2022-08-28 18:30:15 +00:00
|
|
|
HTTP_METHOD_UNKNOWN,
|
2022-07-23 00:19:12 +00:00
|
|
|
HTTP_GET,
|
|
|
|
HTTP_HEAD,
|
|
|
|
HTTP_POST,
|
|
|
|
HTTP_PUT,
|
|
|
|
HTTP_DELETE,
|
|
|
|
HTTP_CONNECT,
|
|
|
|
HTTP_OPTIONS,
|
|
|
|
HTTP_TRACE,
|
|
|
|
HTTP_PATCH
|
|
|
|
} HttpRequestMethod;
|
|
|
|
|
2022-07-25 19:25:06 +00:00
|
|
|
typedef enum HttpStatus
|
|
|
|
{
|
2022-07-23 00:19:12 +00:00
|
|
|
/* Informational responses */
|
|
|
|
HTTP_CONTINUE = 100,
|
|
|
|
HTTP_SWITCHING_PROTOCOLS = 101,
|
|
|
|
HTTP_EARLY_HINTS = 103,
|
2022-07-25 19:25:06 +00:00
|
|
|
|
2022-07-23 00:19:12 +00:00
|
|
|
/* Successful responses */
|
|
|
|
HTTP_OK = 200,
|
|
|
|
HTTP_CREATED = 201,
|
|
|
|
HTTP_ACCEPTED = 202,
|
|
|
|
HTTP_NON_AUTHORITATIVE_INFORMATION = 203,
|
|
|
|
HTTP_NO_CONTENT = 204,
|
|
|
|
HTTP_RESET_CONTENT = 205,
|
|
|
|
HTTP_PARTIAL_CONTENT = 206,
|
2022-07-25 19:25:06 +00:00
|
|
|
|
2022-07-23 00:19:12 +00:00
|
|
|
/* Redirection messages */
|
|
|
|
HTTP_MULTIPLE_CHOICES = 300,
|
|
|
|
HTTP_MOVED_PERMANENTLY = 301,
|
|
|
|
HTTP_FOUND = 302,
|
|
|
|
HTTP_SEE_OTHER = 303,
|
|
|
|
HTTP_NOT_MODIFIED = 304,
|
|
|
|
HTTP_TEMPORARY_REDIRECT = 307,
|
|
|
|
HTTP_PERMANENT_REDIRECT = 308,
|
2022-07-25 19:25:06 +00:00
|
|
|
|
2022-07-23 00:19:12 +00:00
|
|
|
/* Client error messages */
|
|
|
|
HTTP_BAD_REQUEST = 400,
|
|
|
|
HTTP_UNAUTHORIZED = 401,
|
|
|
|
HTTP_FORBIDDEN = 403,
|
|
|
|
HTTP_NOT_FOUND = 404,
|
|
|
|
HTTP_METHOD_NOT_ALLOWED = 405,
|
|
|
|
HTTP_NOT_ACCEPTABLE = 406,
|
|
|
|
HTTP_PROXY_AUTH_REQUIRED = 407,
|
|
|
|
HTTP_REQUEST_TIMEOUT = 408,
|
|
|
|
HTTP_CONFLICT = 409,
|
|
|
|
HTTP_GONE = 410,
|
|
|
|
HTTP_LENGTH_REQUIRED = 411,
|
|
|
|
HTTP_PRECONDITION_FAILED = 412,
|
|
|
|
HTTP_PAYLOAD_TOO_LARGE = 413,
|
|
|
|
HTTP_URI_TOO_LONG = 414,
|
|
|
|
HTTP_UNSUPPORTED_MEDIA_TYPE = 415,
|
|
|
|
HTTP_RANGE_NOT_SATISFIABLE = 416,
|
|
|
|
HTTP_EXPECTATION_FAILED = 417,
|
|
|
|
HTTP_TEAPOT = 418,
|
|
|
|
HTTP_UPGRADE_REQUIRED = 426,
|
|
|
|
HTTP_PRECONDITION_REQUIRED = 428,
|
|
|
|
HTTP_TOO_MANY_REQUESTS = 429,
|
|
|
|
HTTP_REQUEST_HEADER_FIELDS_TOO_LARGE = 431,
|
|
|
|
HTTP_UNAVAILABLE_FOR_LEGAL_REASONS = 451,
|
2022-07-25 19:25:06 +00:00
|
|
|
|
2022-07-23 00:19:12 +00:00
|
|
|
/* Server error responses */
|
|
|
|
HTTP_INTERNAL_SERVER_ERROR = 500,
|
|
|
|
HTTP_NOT_IMPLEMENTED = 501,
|
|
|
|
HTTP_BAD_GATEWAY = 502,
|
|
|
|
HTTP_SERVICE_UNAVAILABLE = 503,
|
|
|
|
HTTP_GATEWAY_TIMEOUT = 504,
|
|
|
|
HTTP_VERSION_NOT_SUPPORTED = 505,
|
|
|
|
HTTP_VARIANT_ALSO_NEGOTIATES = 506,
|
|
|
|
HTTP_NOT_EXTENDED = 510,
|
|
|
|
HTTP_NETWORK_AUTH_REQUIRED = 511
|
|
|
|
} HttpStatus;
|
|
|
|
|
2022-08-26 15:07:54 +00:00
|
|
|
extern const char *
|
|
|
|
HttpStatusToString(const HttpStatus);
|
2022-07-23 00:19:12 +00:00
|
|
|
|
|
|
|
extern HttpRequestMethod
|
2022-08-26 15:07:54 +00:00
|
|
|
HttpRequestMethodFromString(const char *);
|
2022-07-23 00:19:12 +00:00
|
|
|
|
2022-08-26 15:07:54 +00:00
|
|
|
extern const char *
|
|
|
|
HttpRequestMethodToString(const HttpRequestMethod);
|
2022-07-23 00:19:12 +00:00
|
|
|
|
2022-09-07 00:48:27 +00:00
|
|
|
extern char *
|
|
|
|
HttpUrlEncode(char *);
|
|
|
|
|
|
|
|
extern char *
|
|
|
|
HttpUrlDecode(char *);
|
|
|
|
|
2022-09-09 01:09:47 +00:00
|
|
|
extern HashMap *
|
2022-10-15 20:28:32 +00:00
|
|
|
HttpParamDecode(char *);
|
2022-09-09 01:09:47 +00:00
|
|
|
|
2022-10-15 20:28:32 +00:00
|
|
|
extern char *
|
|
|
|
HttpParamEncode(HashMap *);
|
2022-09-09 01:09:47 +00:00
|
|
|
|
2022-07-23 00:19:12 +00:00
|
|
|
#endif
|