mirror of
https://github.com/esphome/esphome.git
synced 2026-02-21 08:55:36 -07:00
372 lines
11 KiB
C++
372 lines
11 KiB
C++
#ifdef USE_ESP_IDF
|
|
|
|
#include <cstdarg>
|
|
|
|
#include "esphome/core/log.h"
|
|
#include "esphome/core/helpers.h"
|
|
|
|
#include "esp_tls_crypto.h"
|
|
|
|
#include "utils.h"
|
|
#include "web_server_idf.h"
|
|
|
|
namespace esphome {
|
|
namespace web_server_idf {
|
|
|
|
#ifndef HTTPD_409
|
|
#define HTTPD_409 "409 Conflict"
|
|
#endif
|
|
|
|
#define CRLF_STR "\r\n"
|
|
#define CRLF_LEN (sizeof(CRLF_STR) - 1)
|
|
|
|
static const char *const TAG = "web_server_idf";
|
|
|
|
void AsyncWebServer::end() {
|
|
if (this->server_) {
|
|
httpd_stop(this->server_);
|
|
this->server_ = nullptr;
|
|
}
|
|
}
|
|
|
|
void AsyncWebServer::begin() {
|
|
if (this->server_) {
|
|
this->end();
|
|
}
|
|
httpd_config_t config = HTTPD_DEFAULT_CONFIG();
|
|
config.server_port = this->port_;
|
|
config.uri_match_fn = [](const char * /*unused*/, const char * /*unused*/, size_t /*unused*/) { return true; };
|
|
if (httpd_start(&this->server_, &config) == ESP_OK) {
|
|
const httpd_uri_t handler_get = {
|
|
.uri = "",
|
|
.method = HTTP_GET,
|
|
.handler = AsyncWebServer::request_handler,
|
|
.user_ctx = this,
|
|
};
|
|
httpd_register_uri_handler(this->server_, &handler_get);
|
|
|
|
const httpd_uri_t handler_post = {
|
|
.uri = "",
|
|
.method = HTTP_POST,
|
|
.handler = AsyncWebServer::request_post_handler,
|
|
.user_ctx = this,
|
|
};
|
|
httpd_register_uri_handler(this->server_, &handler_post);
|
|
|
|
const httpd_uri_t handler_options = {
|
|
.uri = "",
|
|
.method = HTTP_OPTIONS,
|
|
.handler = AsyncWebServer::request_handler,
|
|
.user_ctx = this,
|
|
};
|
|
httpd_register_uri_handler(this->server_, &handler_options);
|
|
}
|
|
}
|
|
|
|
esp_err_t AsyncWebServer::request_post_handler(httpd_req_t *r) {
|
|
ESP_LOGVV(TAG, "Enter AsyncWebServer::request_post_handler. uri=%s", r->uri);
|
|
auto content_type = request_get_header(r, "Content-Type");
|
|
if (content_type.has_value() && *content_type != "application/x-www-form-urlencoded") {
|
|
ESP_LOGW(TAG, "Only application/x-www-form-urlencoded supported for POST request");
|
|
// fallback to get handler to support backward compatibility
|
|
return AsyncWebServer::request_handler(r);
|
|
}
|
|
|
|
if (!request_has_header(r, "Content-Length")) {
|
|
ESP_LOGW(TAG, "Content length is requred for post: %s", r->uri);
|
|
httpd_resp_send_err(r, HTTPD_411_LENGTH_REQUIRED, nullptr);
|
|
return ESP_OK;
|
|
}
|
|
|
|
if (r->content_len > HTTPD_MAX_REQ_HDR_LEN) {
|
|
ESP_LOGW(TAG, "Request size is to big: %zu", r->content_len);
|
|
httpd_resp_send_err(r, HTTPD_400_BAD_REQUEST, nullptr);
|
|
return ESP_FAIL;
|
|
}
|
|
|
|
std::string post_query;
|
|
if (r->content_len > 0) {
|
|
post_query.resize(r->content_len);
|
|
const int ret = httpd_req_recv(r, &post_query[0], r->content_len + 1);
|
|
if (ret <= 0) { // 0 return value indicates connection closed
|
|
if (ret == HTTPD_SOCK_ERR_TIMEOUT) {
|
|
httpd_resp_send_err(r, HTTPD_408_REQ_TIMEOUT, nullptr);
|
|
return ESP_ERR_TIMEOUT;
|
|
}
|
|
httpd_resp_send_err(r, HTTPD_400_BAD_REQUEST, nullptr);
|
|
return ESP_FAIL;
|
|
}
|
|
}
|
|
|
|
AsyncWebServerRequest req(r, std::move(post_query));
|
|
return static_cast<AsyncWebServer *>(r->user_ctx)->request_handler_(&req);
|
|
}
|
|
|
|
esp_err_t AsyncWebServer::request_handler(httpd_req_t *r) {
|
|
ESP_LOGVV(TAG, "Enter AsyncWebServer::request_handler. method=%u, uri=%s", r->method, r->uri);
|
|
AsyncWebServerRequest req(r);
|
|
return static_cast<AsyncWebServer *>(r->user_ctx)->request_handler_(&req);
|
|
}
|
|
|
|
esp_err_t AsyncWebServer::request_handler_(AsyncWebServerRequest *request) const {
|
|
for (auto *handler : this->handlers_) {
|
|
if (handler->canHandle(request)) {
|
|
// At now process only basic requests.
|
|
// OTA requires multipart request support and handleUpload for it
|
|
handler->handleRequest(request);
|
|
return ESP_OK;
|
|
}
|
|
}
|
|
if (this->on_not_found_) {
|
|
this->on_not_found_(request);
|
|
return ESP_OK;
|
|
}
|
|
return ESP_ERR_NOT_FOUND;
|
|
}
|
|
|
|
AsyncWebServerRequest::~AsyncWebServerRequest() {
|
|
delete this->rsp_;
|
|
for (const auto &pair : this->params_) {
|
|
delete pair.second; // NOLINT(cppcoreguidelines-owning-memory)
|
|
}
|
|
}
|
|
|
|
bool AsyncWebServerRequest::hasHeader(const char *name) const { return request_has_header(*this, name); }
|
|
|
|
optional<std::string> AsyncWebServerRequest::get_header(const char *name) const {
|
|
return request_get_header(*this, name);
|
|
}
|
|
|
|
std::string AsyncWebServerRequest::url() const {
|
|
auto *str = strchr(this->req_->uri, '?');
|
|
if (str == nullptr) {
|
|
return this->req_->uri;
|
|
}
|
|
return std::string(this->req_->uri, str - this->req_->uri);
|
|
}
|
|
|
|
std::string AsyncWebServerRequest::host() const { return this->get_header("Host").value(); }
|
|
|
|
void AsyncWebServerRequest::send(AsyncWebServerResponse *response) {
|
|
httpd_resp_send(*this, response->get_content_data(), response->get_content_size());
|
|
}
|
|
|
|
void AsyncWebServerRequest::send(int code, const char *content_type, const char *content) {
|
|
this->init_response_(nullptr, code, content_type);
|
|
if (content) {
|
|
httpd_resp_send(*this, content, HTTPD_RESP_USE_STRLEN);
|
|
} else {
|
|
httpd_resp_send(*this, nullptr, 0);
|
|
}
|
|
}
|
|
|
|
void AsyncWebServerRequest::redirect(const std::string &url) {
|
|
httpd_resp_set_status(*this, "302 Found");
|
|
httpd_resp_set_hdr(*this, "Location", url.c_str());
|
|
httpd_resp_send(*this, nullptr, 0);
|
|
}
|
|
|
|
void AsyncWebServerRequest::init_response_(AsyncWebServerResponse *rsp, int code, const char *content_type) {
|
|
httpd_resp_set_status(*this, code == 200 ? HTTPD_200
|
|
: code == 404 ? HTTPD_404
|
|
: code == 409 ? HTTPD_409
|
|
: to_string(code).c_str());
|
|
|
|
if (content_type && *content_type) {
|
|
httpd_resp_set_type(*this, content_type);
|
|
}
|
|
httpd_resp_set_hdr(*this, "Accept-Ranges", "none");
|
|
|
|
for (const auto &pair : DefaultHeaders::Instance().headers_) {
|
|
httpd_resp_set_hdr(*this, pair.first.c_str(), pair.second.c_str());
|
|
}
|
|
|
|
delete this->rsp_;
|
|
this->rsp_ = rsp;
|
|
}
|
|
|
|
bool AsyncWebServerRequest::authenticate(const char *username, const char *password) const {
|
|
if (username == nullptr || password == nullptr || *username == 0) {
|
|
return true;
|
|
}
|
|
auto auth = this->get_header("Authorization");
|
|
if (!auth.has_value()) {
|
|
return false;
|
|
}
|
|
|
|
auto *auth_str = auth.value().c_str();
|
|
|
|
const auto auth_prefix_len = sizeof("Basic ") - 1;
|
|
if (strncmp("Basic ", auth_str, auth_prefix_len) != 0) {
|
|
ESP_LOGW(TAG, "Only Basic authorization supported yet");
|
|
return false;
|
|
}
|
|
|
|
std::string user_info;
|
|
user_info += username;
|
|
user_info += ':';
|
|
user_info += password;
|
|
|
|
size_t n = 0, out;
|
|
esp_crypto_base64_encode(nullptr, 0, &n, reinterpret_cast<const uint8_t *>(user_info.c_str()), user_info.size());
|
|
|
|
auto digest = std::unique_ptr<char[]>(new char[n + 1]);
|
|
esp_crypto_base64_encode(reinterpret_cast<uint8_t *>(digest.get()), n, &out,
|
|
reinterpret_cast<const uint8_t *>(user_info.c_str()), user_info.size());
|
|
|
|
return strncmp(digest.get(), auth_str + auth_prefix_len, auth.value().size() - auth_prefix_len) == 0;
|
|
}
|
|
|
|
void AsyncWebServerRequest::requestAuthentication(const char *realm) const {
|
|
httpd_resp_set_hdr(*this, "Connection", "keep-alive");
|
|
auto auth_val = str_sprintf("Basic realm=\"%s\"", realm ? realm : "Login Required");
|
|
httpd_resp_set_hdr(*this, "WWW-Authenticate", auth_val.c_str());
|
|
httpd_resp_send_err(*this, HTTPD_401_UNAUTHORIZED, nullptr);
|
|
}
|
|
|
|
AsyncWebParameter *AsyncWebServerRequest::getParam(const std::string &name) {
|
|
auto find = this->params_.find(name);
|
|
if (find != this->params_.end()) {
|
|
return find->second;
|
|
}
|
|
|
|
optional<std::string> val = query_key_value(this->post_query_, name);
|
|
if (!val.has_value()) {
|
|
auto url_query = request_get_url_query(*this);
|
|
if (url_query.has_value()) {
|
|
val = query_key_value(url_query.value(), name);
|
|
}
|
|
}
|
|
|
|
AsyncWebParameter *param = nullptr;
|
|
if (val.has_value()) {
|
|
param = new AsyncWebParameter(val.value()); // NOLINT(cppcoreguidelines-owning-memory)
|
|
}
|
|
this->params_.insert({name, param});
|
|
return param;
|
|
}
|
|
|
|
void AsyncWebServerResponse::addHeader(const char *name, const char *value) {
|
|
httpd_resp_set_hdr(*this->req_, name, value);
|
|
}
|
|
|
|
void AsyncResponseStream::print(float value) { this->print(to_string(value)); }
|
|
|
|
void AsyncResponseStream::printf(const char *fmt, ...) {
|
|
va_list args;
|
|
|
|
va_start(args, fmt);
|
|
const int length = vsnprintf(nullptr, 0, fmt, args);
|
|
va_end(args);
|
|
|
|
std::string str;
|
|
str.resize(length);
|
|
|
|
va_start(args, fmt);
|
|
vsnprintf(&str[0], length + 1, fmt, args);
|
|
va_end(args);
|
|
|
|
this->print(str);
|
|
}
|
|
|
|
AsyncEventSource::~AsyncEventSource() {
|
|
for (auto *ses : this->sessions_) {
|
|
delete ses; // NOLINT(cppcoreguidelines-owning-memory)
|
|
}
|
|
}
|
|
|
|
void AsyncEventSource::handleRequest(AsyncWebServerRequest *request) {
|
|
auto *rsp = new AsyncEventSourceResponse(request, this); // NOLINT(cppcoreguidelines-owning-memory)
|
|
if (this->on_connect_) {
|
|
this->on_connect_(rsp);
|
|
}
|
|
this->sessions_.insert(rsp);
|
|
}
|
|
|
|
void AsyncEventSource::send(const char *message, const char *event, uint32_t id, uint32_t reconnect) {
|
|
for (auto *ses : this->sessions_) {
|
|
ses->send(message, event, id, reconnect);
|
|
}
|
|
}
|
|
|
|
AsyncEventSourceResponse::AsyncEventSourceResponse(const AsyncWebServerRequest *request, AsyncEventSource *server)
|
|
: server_(server) {
|
|
httpd_req_t *req = *request;
|
|
|
|
httpd_resp_set_status(req, HTTPD_200);
|
|
httpd_resp_set_type(req, "text/event-stream");
|
|
httpd_resp_set_hdr(req, "Cache-Control", "no-cache");
|
|
httpd_resp_set_hdr(req, "Connection", "keep-alive");
|
|
|
|
for (const auto &pair : DefaultHeaders::Instance().headers_) {
|
|
httpd_resp_set_hdr(req, pair.first.c_str(), pair.second.c_str());
|
|
}
|
|
|
|
httpd_resp_send_chunk(req, CRLF_STR, CRLF_LEN);
|
|
|
|
req->sess_ctx = this;
|
|
req->free_ctx = AsyncEventSourceResponse::destroy;
|
|
|
|
this->hd_ = req->handle;
|
|
this->fd_ = httpd_req_to_sockfd(req);
|
|
}
|
|
|
|
void AsyncEventSourceResponse::destroy(void *ptr) {
|
|
auto *rsp = static_cast<AsyncEventSourceResponse *>(ptr);
|
|
rsp->server_->sessions_.erase(rsp);
|
|
delete rsp; // NOLINT(cppcoreguidelines-owning-memory)
|
|
}
|
|
|
|
void AsyncEventSourceResponse::send(const char *message, const char *event, uint32_t id, uint32_t reconnect) {
|
|
if (this->fd_ == 0) {
|
|
return;
|
|
}
|
|
|
|
std::string ev;
|
|
|
|
if (reconnect) {
|
|
ev.append("retry: ", sizeof("retry: ") - 1);
|
|
ev.append(to_string(reconnect));
|
|
ev.append(CRLF_STR, CRLF_LEN);
|
|
}
|
|
|
|
if (id) {
|
|
ev.append("id: ", sizeof("id: ") - 1);
|
|
ev.append(to_string(id));
|
|
ev.append(CRLF_STR, CRLF_LEN);
|
|
}
|
|
|
|
if (event && *event) {
|
|
ev.append("event: ", sizeof("event: ") - 1);
|
|
ev.append(event);
|
|
ev.append(CRLF_STR, CRLF_LEN);
|
|
}
|
|
|
|
if (message && *message) {
|
|
ev.append("data: ", sizeof("data: ") - 1);
|
|
ev.append(message);
|
|
ev.append(CRLF_STR, CRLF_LEN);
|
|
}
|
|
|
|
if (ev.empty()) {
|
|
return;
|
|
}
|
|
|
|
ev.append(CRLF_STR, CRLF_LEN);
|
|
|
|
// Sending chunked content prelude
|
|
auto cs = str_snprintf("%x" CRLF_STR, 4 * sizeof(ev.size()) + CRLF_LEN, ev.size());
|
|
httpd_socket_send(this->hd_, this->fd_, cs.c_str(), cs.size(), 0);
|
|
|
|
// Sendiing content chunk
|
|
httpd_socket_send(this->hd_, this->fd_, ev.c_str(), ev.size(), 0);
|
|
|
|
// Indicate end of chunk
|
|
httpd_socket_send(this->hd_, this->fd_, CRLF_STR, CRLF_LEN, 0);
|
|
}
|
|
|
|
} // namespace web_server_idf
|
|
} // namespace esphome
|
|
|
|
#endif // !defined(USE_ESP_IDF)
|