http_server_handlers.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. /*
  2. *
  3. * Sebastien L. 2023, sle118@hotmail.com
  4. * Philippe G. 2023, philippe_44@outlook.com
  5. *
  6. * This software is released under the MIT License.
  7. * https://opensource.org/licenses/MIT
  8. *
  9. * License Overview:
  10. * ----------------
  11. * The MIT License is a permissive open source license. As a user of this software, you are free to:
  12. * - Use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of this software.
  13. * - Use the software for private, commercial, or any other purposes.
  14. *
  15. * Conditions:
  16. * - You must include the above copyright notice and this permission notice in all
  17. * copies or substantial portions of the Software.
  18. *
  19. * The MIT License offers a high degree of freedom and is well-suited for both open source and
  20. * commercial applications. It places minimal restrictions on how the software can be used,
  21. * modified, and redistributed. For more details on the MIT License, please refer to the link above.
  22. */
  23. #ifndef HTTP_SERVER_H_INCLUDED
  24. #define HTTP_SERVER_H_INCLUDED
  25. #include "driver/gpio.h"
  26. #include "esp_console.h"
  27. #include "esp_http_server.h"
  28. #include "esp_log.h"
  29. #include "esp_vfs.h"
  30. #include "esp_wifi.h"
  31. #include "freertos/FreeRTOS.h"
  32. #include "freertos/event_groups.h"
  33. #include "freertos/task.h"
  34. #include "lwip/api.h"
  35. #include "lwip/err.h"
  36. #include "lwip/ip.h"
  37. #include "lwip/memp.h"
  38. #include "lwip/netdb.h"
  39. #include "lwip/opt.h"
  40. #include "lwip/priv/api_msg.h"
  41. #include "lwip/priv/tcp_priv.h"
  42. #include "lwip/priv/tcpip_priv.h"
  43. #include "lwip/raw.h"
  44. #include "lwip/udp.h"
  45. #include "mdns.h"
  46. #include "network_manager.h"
  47. #include "nvs_flash.h"
  48. #include <stdbool.h>
  49. #include <stdio.h>
  50. #include <stdlib.h>
  51. #include <string.h>
  52. #ifdef __cplusplus
  53. extern "C" {
  54. #endif
  55. #define ESP_LOGE_LOC(t, str, ...) ESP_LOGE(t, "%s(%d): " str, __FUNCTION__, __LINE__, ##__VA_ARGS__)
  56. #define ESP_LOGI_LOC(t, str, ...) ESP_LOGI(t, "%s(%d): " str, __FUNCTION__, __LINE__, ##__VA_ARGS__)
  57. #define ESP_LOGD_LOC(t, str, ...) ESP_LOGD(t, "%s(%d): " str, __FUNCTION__, __LINE__, ##__VA_ARGS__)
  58. #define ESP_LOGW_LOC(t, str, ...) ESP_LOGW(t, "%s(%d): " str, __FUNCTION__, __LINE__, ##__VA_ARGS__)
  59. #define ESP_LOGV_LOC(t, str, ...) ESP_LOGV(t, "%s(%d): " str, __FUNCTION__, __LINE__, ##__VA_ARGS__)
  60. esp_err_t root_get_handler(httpd_req_t* req);
  61. esp_err_t resource_filehandler(httpd_req_t* req);
  62. esp_err_t connect_post_handler(httpd_req_t* req);
  63. esp_err_t connect_delete_handler(httpd_req_t* req);
  64. esp_err_t reboot_ota_post_handler(httpd_req_t* req);
  65. esp_err_t reboot_post_handler(httpd_req_t* req);
  66. esp_err_t recovery_post_handler(httpd_req_t* req);
  67. esp_err_t flash_post_handler(httpd_req_t* req);
  68. esp_err_t status_get_handler(httpd_req_t* req);
  69. esp_err_t messages_get_handler(httpd_req_t* req);
  70. esp_err_t console_cmd_get_handler(httpd_req_t* req);
  71. esp_err_t console_cmd_post_handler(httpd_req_t* req);
  72. esp_err_t ap_scan_handler(httpd_req_t* req);
  73. esp_err_t redirect_ev_handler(httpd_req_t* req);
  74. esp_err_t redirect_200_ev_handler(httpd_req_t* req);
  75. esp_err_t data_post_handler(httpd_req_t* req);
  76. esp_err_t err_handler(httpd_req_t* req, httpd_err_code_t error);
  77. #define SCRATCH_BUFSIZE (8192)
  78. #define FILE_PATH_MAX (ESP_VFS_PATH_MAX + 128)
  79. typedef struct rest_server_context {
  80. char base_path[ESP_VFS_PATH_MAX + 1];
  81. char scratch[SCRATCH_BUFSIZE];
  82. } rest_server_context_t;
  83. /**
  84. * @brief RTOS task for the HTTP server. Do not start manually.
  85. * @see void http_server_start()
  86. */
  87. void http_server(void* pvParameters);
  88. /* @brief helper function that processes one HTTP request at a time */
  89. void http_server_netconn_serve(struct netconn* conn);
  90. /* @brief create the task for the http server */
  91. esp_err_t http_server_start();
  92. /**
  93. * @brief gets a char* pointer to the first occurence of header_name withing the complete http
  94. * request request.
  95. *
  96. * For optimization purposes, no local copy is made. memcpy can then be used in coordination with
  97. * len to extract the data.
  98. *
  99. * @param request the full HTTP raw request.
  100. * @param header_name the header that is being searched.
  101. * @param len the size of the header value if found.
  102. * @return pointer to the beginning of the header value.
  103. */
  104. char* http_server_get_header(char* request, char* header_name, int* len);
  105. void strreplace(char* src, char* str, char* rep);
  106. /* @brief lock the json config object */
  107. bool http_server_lock_json_object(TickType_t xTicksToWait);
  108. /* @brief unlock the json config object */
  109. void http_server_unlock_json_object();
  110. httpd_handle_t http_get_server(int* port);
  111. #define PROTECTED_JSON_CALL(a) \
  112. if (http_server_lock_json_object(portMAX_DELAY)) { \
  113. \ a; \
  114. http_server_unlocklock_json_object(); \
  115. } else { \
  116. ESP_LOGE(TAG, "could not get access to json mutex in wifi_scan"); \
  117. }
  118. #ifdef __cplusplus
  119. }
  120. #endif
  121. #endif