mirror of
https://github.com/simon987/sist2.git
synced 2025-04-10 14:06:45 +00:00
106 lines
2.9 KiB
C
106 lines
2.9 KiB
C
#include "web_util.h"
|
|
#include "static_generated.c"
|
|
|
|
|
|
void web_serve_asset_index_html(struct mg_connection *nc) {
|
|
web_send_headers(nc, 200, sizeof(index_html), HTTP_CROSS_ORIGIN_HEADERS "Content-Type: text/html");
|
|
mg_send(nc, index_html, sizeof(index_html));
|
|
nc->is_resp = 0;
|
|
}
|
|
|
|
void web_serve_asset_index_js(struct mg_connection *nc) {
|
|
web_send_headers(nc, 200, sizeof(index_js), "Content-Type: application/javascript");
|
|
mg_send(nc, index_js, sizeof(index_js));
|
|
nc->is_resp = 0;
|
|
}
|
|
|
|
void web_serve_asset_chunk_vendors_js(struct mg_connection *nc) {
|
|
web_send_headers(nc, 200, sizeof(chunk_vendors_js), "Content-Type: application/javascript");
|
|
mg_send(nc, chunk_vendors_js, sizeof(chunk_vendors_js));
|
|
nc->is_resp = 0;
|
|
}
|
|
|
|
void web_serve_asset_favicon_ico(struct mg_connection *nc) {
|
|
web_send_headers(nc, 200, sizeof(favicon_ico), "Content-Type: image/x-icon");
|
|
mg_send(nc, favicon_ico, sizeof(favicon_ico));
|
|
nc->is_resp = 0;
|
|
}
|
|
|
|
void web_serve_asset_style_css(struct mg_connection *nc) {
|
|
web_send_headers(nc, 200, sizeof(index_css), "Content-Type: text/css");
|
|
mg_send(nc, index_css, sizeof(index_css));
|
|
nc->is_resp = 0;
|
|
}
|
|
|
|
void web_serve_asset_chunk_vendors_css(struct mg_connection *nc) {
|
|
web_send_headers(nc, 200, sizeof(chunk_vendors_css), "Content-Type: text/css");
|
|
mg_send(nc, chunk_vendors_css, sizeof(chunk_vendors_css));
|
|
nc->is_resp = 0;
|
|
}
|
|
|
|
index_t *web_get_index_by_id(int index_id) {
|
|
for (int i = WebCtx.index_count; i >= 0; i--) {
|
|
if (index_id == WebCtx.indices[i].desc.id) {
|
|
return &WebCtx.indices[i];
|
|
}
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
database_t *web_get_database(int index_id) {
|
|
index_t *idx = web_get_index_by_id(index_id);
|
|
if (idx != NULL) {
|
|
return idx->db;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
void web_send_headers(struct mg_connection *nc, int status_code, size_t length, char *extra_headers) {
|
|
mg_printf(
|
|
nc,
|
|
"HTTP/1.1 %d %s\r\n"
|
|
HTTP_SERVER_HEADER
|
|
"Content-Length: %d\r\n"
|
|
"%s\r\n\r\n",
|
|
status_code, "OK",
|
|
length,
|
|
extra_headers
|
|
);
|
|
}
|
|
cJSON *web_get_json_body(struct mg_http_message *hm) {
|
|
if (hm->body.len == 0) {
|
|
return NULL;
|
|
}
|
|
|
|
char *body = malloc(hm->body.len + 1);
|
|
memcpy(body, hm->body.buf, hm->body.len);
|
|
*(body + hm->body.len) = '\0';
|
|
cJSON *json = cJSON_Parse(body);
|
|
free(body);
|
|
|
|
return json;
|
|
}
|
|
|
|
char *web_get_string_body(struct mg_http_message *hm) {
|
|
if (hm->body.len == 0) {
|
|
return NULL;
|
|
}
|
|
|
|
char *body = malloc(hm->body.len + 1);
|
|
memcpy(body, hm->body.buf, hm->body.len);
|
|
*(body + hm->body.len) = '\0';
|
|
|
|
return body;
|
|
}
|
|
|
|
void mg_send_json(struct mg_connection *nc, const cJSON *json) {
|
|
char *json_str = cJSON_PrintUnformatted(json);
|
|
|
|
web_send_headers(nc, 200, strlen(json_str), "Content-Type: application/json");
|
|
mg_send(nc, json_str, strlen(json_str));
|
|
nc->is_resp = 0;
|
|
|
|
free(json_str);
|
|
}
|
|
|