cueOS  2.4
cueOS - Universal Show Control OS for ARM
web_application.c
1
6#include <string.h>
7#include "http_server.h"
8#include "http_defs.h"
9#include "web_application_content.c"
10
11struct fs_file file_handle;
12
13
14/*
15 * TODO: reorganise this it works but the structure is quite misleading.
16 */
17
18/***============================================================================================================================
19 * Private functions definitions
20 * These functions are only accessible from within the file's scope
21 *=============================================================================================================================*/
22
30static err_t _web_application_open(struct fs_file *file, const char *name) {
31
32 const struct fsdata_file *f;
33
34 if ((file == NULL) || (name == NULL)) {
35 return ERR_ARG;
36 }
37
38 for (f = FS_ROOT; f != NULL; f = f->next) {
39 if (!strcmp(name, (const char *)f->name)) {
40 file->data = (const char *)f->data;
41 file->len = f->len;
42 file->index = f->len;
43 file->pextension = NULL;
44 file->flags = f->flags;
45 return ERR_OK;
46 }
47 }
48
49 /* file not found */
50 return ERR_VAL;
51}
52
53
63static void _web_application_router(http_request_s *req) {
64
65 struct fs_file *file = NULL;
66 uint16_t uri_len = strlen(req->uri);
67
68 err_t err;
69
71
72 if(uri_len > 0 && req->uri[uri_len - 1] == '/'){
73 char dafault_uri[uri_len + strlen("index.html")];
74 memmove(dafault_uri, req->uri, uri_len);
75 memmove(dafault_uri + uri_len, "index.html", strlen("index.html"));
76 dafault_uri[uri_len + strlen("index.html")] = 0;
77 err = _web_application_open(&file_handle, dafault_uri);
78 }else{
79 err = _web_application_open(&file_handle, req->uri);
80 }
81
82 if(err == ERR_OK){
83 file = &file_handle;
84 req->res->data_ptr = (char*)file->data;
85 req->res->data_len = (uint32_t)file->len;
86 }else{
87 req->res->data_ptr = http_status_codes_str[HTTP_STATUS_CODE_404]; //TODO: point the user to a proper 404 page or point him back to server's index ?
88 req->res->data_len = strlen(req->res->data_ptr);
89 }
90
91}
92
93
94/***============================================================================================================================
95 * Public functions definitions
96 * These functions can be accessed outside of the file's scope
97 * @see DMX512_chaser_pool.h for declarations
98 *=============================================================================================================================*/
99
107 http_server_init(80, _web_application_router);
108}
static char *const http_status_codes_str[]
list of HTTP status codes strings.
Definition: http_defs.h:83
@ HTTP_STATUS_CODE_404
Definition: http_defs.h:31
@ HTTP_RESPONSE_IS_STATIC
Definition: http_response.h:28
http_server_s * http_server_init(uint16_t port, router_fn router)
Initialises a new HTTP server instance.
Definition: http_server.c:256
void web_application_start(void)
Starts static HTTP server on port 80. This server is ONLY dedicated to serve compiled HTML static fil...
web-content file structure object
fs_file_extension * pextension
const char * data
uint8_t flags
web-content file linked list data structure object
const unsigned char * name
const struct fsdata_file * next
const unsigned char * data
HTTP request object.
Definition: http_request.h:44
http_response_s * res
Definition: http_request.h:56
uint32_t data_len
Definition: http_response.h:38