mirror of
https://github.com/simon987/sist2.git
synced 2025-04-20 02:36:43 +00:00
38 lines
1.3 KiB
C
38 lines
1.3 KiB
C
#ifndef SIST2_WEB_UTIL_H
|
|
#define SIST2_WEB_UTIL_H
|
|
|
|
#include "src/sist.h"
|
|
#include "src/index/elastic.h"
|
|
#include "src/ctx.h"
|
|
#include <mongoose.h>
|
|
|
|
#define HTTP_SERVER_HEADER "Server: sist2/" VERSION "\r\n"
|
|
// See https://web.dev/coop-coep/
|
|
#define HTTP_CROSS_ORIGIN_HEADERS "Cross-Origin-Embedder-Policy: require-corp\r\nCross-Origin-Opener-Policy: same-origin\r\n"
|
|
|
|
index_t *web_get_index_by_id(int index_id);
|
|
|
|
database_t *web_get_database(int index_id);
|
|
|
|
__always_inline
|
|
static char *web_address_to_string(struct mg_addr *addr) {
|
|
static char address_to_string_buf[INET6_ADDRSTRLEN];
|
|
|
|
return mg_ntoa(addr, address_to_string_buf, sizeof(address_to_string_buf));
|
|
}
|
|
|
|
void web_send_headers(struct mg_connection *nc, int status_code, size_t length, char *extra_headers);
|
|
|
|
void web_serve_asset_index_html(struct mg_connection *nc);
|
|
void web_serve_asset_index_js(struct mg_connection *nc);
|
|
void web_serve_asset_chunk_vendors_js(struct mg_connection *nc);
|
|
void web_serve_asset_favicon_ico(struct mg_connection *nc);
|
|
void web_serve_asset_style_css(struct mg_connection *nc);
|
|
void web_serve_asset_chunk_vendors_css(struct mg_connection *nc);
|
|
|
|
cJSON *web_get_json_body(struct mg_http_message *hm);
|
|
char *web_get_string_body(struct mg_http_message *hm);
|
|
void mg_send_json(struct mg_connection *nc, const cJSON *json);
|
|
|
|
#endif //SIST2_WEB_UTIL_H
|