From b2afe2a52d421a6f9ce87d6b20c0230f93ecbdc4 Mon Sep 17 00:00:00 2001 From: xengineering Date: Thu, 27 Mar 2025 21:19:30 +0100 Subject: fw: app: update: Add source file and HTTP 204 handler This adds the HTTP PUT /update handler which just returns HTTP 204 No Content. This is the minimal first step towards a working /update handler. --- fw/app/src/update.c | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 fw/app/src/update.c (limited to 'fw/app/src/update.c') diff --git a/fw/app/src/update.c b/fw/app/src/update.c new file mode 100644 index 0000000..13471d2 --- /dev/null +++ b/fw/app/src/update.c @@ -0,0 +1,42 @@ +/* + * 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 +#include +#include + +LOG_MODULE_REGISTER(update); + + +static int update_handler( + struct http_client_ctx *client, + enum http_data_status status, + const struct http_request_ctx *request_ctx, + struct http_response_ctx *response_ctx, + void *user_data +) { + LOG_DBG("Handling update request"); + + response_ctx->body = NULL; + response_ctx->body_len = 0; + response_ctx->final_chunk = true; + response_ctx->status = HTTP_204_NO_CONTENT; + + LOG_DBG("Update request handled"); + return 0; +} + +static struct http_resource_detail_dynamic update_resource_detail = { + .common = { + .type = HTTP_RESOURCE_TYPE_DYNAMIC, + .bitmask_of_supported_http_methods = BIT(HTTP_GET), + }, + .cb = update_handler, + .user_data = NULL, +}; + +HTTP_RESOURCE_DEFINE(update_resource, http_service, "/update", &update_resource_detail); -- cgit v1.2.3-70-g09d2