forked from Telodendria/Telodendria
Jordan Bancino
8d75d8a023
You might be asking why I would just write a simple curl replacement when curl does the job just fine. Well, the most immediate reason is to test the HttpClient API, but since Telodendria's goal is to not be dependent on any third-party code if at all possible, it makes sense to have a simple HTTP client to use not only for testing Telodendria, but also for configuring it. When we move the configuration to the database, we'll ship a script that uses this tool to allow admins to easily submit API requests. Do not be concerned that HttpClient does not support TLS yet. TLS support is necessary for federation to work, so it is coming eventually.
58 lines
1.8 KiB
C
58 lines
1.8 KiB
C
/*
|
|
* Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net>
|
|
*
|
|
* 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
|
|
* included in all copies or portions of the Software.
|
|
*
|
|
* 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.
|
|
*/
|
|
#ifndef TELODENDRIA_HTTPCLIENT_H
|
|
#define TELODENDRIA_HTTPCLIENT_H
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <HashMap.h>
|
|
#include <Http.h>
|
|
|
|
#define HTTP_NONE 0
|
|
#define HTTP_TLS (1 << 0)
|
|
|
|
typedef struct HttpClientContext HttpClientContext;
|
|
|
|
extern HttpClientContext *
|
|
HttpRequest(HttpRequestMethod, int, unsigned short, char *, char *);
|
|
|
|
extern void
|
|
HttpRequestHeader(HttpClientContext *, char *, char *);
|
|
|
|
extern void
|
|
HttpRequestSendHeaders(HttpClientContext *);
|
|
|
|
extern HttpStatus
|
|
HttpRequestSend(HttpClientContext *);
|
|
|
|
extern HashMap *
|
|
HttpResponseHeaders(HttpClientContext *);
|
|
|
|
extern FILE *
|
|
HttpClientStream(HttpClientContext *);
|
|
|
|
extern void
|
|
HttpClientContextFree(HttpClientContext *);
|
|
|
|
#endif /* TELODENDRIA_HTTPCLIENT_H */
|