summaryrefslogtreecommitdiff
path: root/fw/src/http.c
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2025-03-21 22:23:47 +0100
committerxengineering <me@xengineering.eu>2025-03-21 22:23:47 +0100
commit2430e8557685a8af292ae82ca11ec59acb365390 (patch)
treeb830cef277b4a88338342d009ead9f0519885e18 /fw/src/http.c
parentb912c63ca9724a31f57226a44e87954e4fbd46c4 (diff)
downloadiot-contact-2430e8557685a8af292ae82ca11ec59acb365390.tar
iot-contact-2430e8557685a8af292ae82ca11ec59acb365390.tar.zst
iot-contact-2430e8557685a8af292ae82ca11ec59acb365390.zip
fw: http: Add HTML resource /
This provides the index HTML page.
Diffstat (limited to 'fw/src/http.c')
-rw-r--r--fw/src/http.c52
1 files changed, 52 insertions, 0 deletions
diff --git a/fw/src/http.c b/fw/src/http.c
new file mode 100644
index 0000000..36ad7c0
--- /dev/null
+++ b/fw/src/http.c
@@ -0,0 +1,52 @@
+/*
+ * This Source Code Form is subject to the terms of the Mozilla Public License,
+ * v. 2.0. If a copy of the MPL was not distributed with this file, You can
+ * obtain one at https://mozilla.org/MPL/2.0/.
+ */
+
+
+#include <stdint.h>
+
+#include <zephyr/init.h>
+#include <zephyr/logging/log.h>
+#include <zephyr/net/http/server.h>
+#include <zephyr/net/http/service.h>
+
+
+LOG_MODULE_REGISTER(http);
+
+
+static const uint8_t index_html_gz[] = {
+ #include "index.html.gz.inc"
+};
+
+struct http_resource_detail_static index_resource_detail = {
+ .common = {
+ .type = HTTP_RESOURCE_TYPE_STATIC,
+ .bitmask_of_supported_http_methods = BIT(HTTP_GET),
+ .content_encoding = "gzip",
+ .content_type = "text/html",
+ },
+ .static_data = index_html_gz,
+ .static_data_len = sizeof(index_html_gz),
+};
+
+static uint16_t http_port = 80;
+
+HTTP_SERVICE_DEFINE(http_service, NULL, &http_port, 1, 10, NULL, NULL);
+
+HTTP_RESOURCE_DEFINE(index_resource, http_service, "/", &index_resource_detail);
+
+int init_http_server(void) {
+ LOG_DBG("Starting HTTP server");
+
+ int ret = http_server_start();
+ if (ret < 0) {
+ LOG_ERR("Failed to start HTTP server (%d)", ret);
+ return ret;
+ }
+
+ LOG_INF("HTTP server was started");
+ return 0;
+}
+SYS_INIT(init_http_server, APPLICATION, 99);