mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 03:34:18 +01:00
7a551081ee
* initial web_server_idf implementation * initial web_server_idf implementation * fix lint errors * fix lint errors * add captive_portal support * fix lint errors * fix lint errors * add url decode * Increase the max supported size of headers section in HTTP request * add ota support * add mulipart form data support (ota required) * make linter happy * make linter happy * make linter happy * fix review marks * add DefaultHeaders support * add DefaultHeaders support * unify file names * using std::isnan * parse multipart requests only when ota enabled * parse multipart requests only when ota enabled * parse multipart requests only when ota enabled * parse multipart requests only when ota enabled * parse multipart requests only when ota enabled * drop multipart request support * drop multipart request support * drop multipart request support * OTA is disabled by default * fail when OTA enabled on IDF framework * changing file permissions to remove execute bit * return back PGM_P and strncpy_P macro * temp web_server fix to be compat with 2022.12 * fix config handling w/o web_server * fix compilation with "local" * fully remove all idf ota * merge with esphome 2023.6 * add core/hal to web_server_base * Update esphome/components/web_server_base/__init__.py Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com> * Update __init__.py * Update __init__.py --------- Co-authored-by: Keith Burzinski <kbx81x@gmail.com> Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
73 lines
1.7 KiB
C++
73 lines
1.7 KiB
C++
#pragma once
|
|
|
|
#include <memory>
|
|
#ifdef USE_ARDUINO
|
|
#include <DNSServer.h>
|
|
#endif
|
|
#include "esphome/core/component.h"
|
|
#include "esphome/core/helpers.h"
|
|
#include "esphome/core/preferences.h"
|
|
#include "esphome/components/web_server_base/web_server_base.h"
|
|
|
|
namespace esphome {
|
|
|
|
namespace captive_portal {
|
|
|
|
class CaptivePortal : public AsyncWebHandler, public Component {
|
|
public:
|
|
CaptivePortal(web_server_base::WebServerBase *base);
|
|
void setup() override;
|
|
void dump_config() override;
|
|
#ifdef USE_ARDUINO
|
|
void loop() override {
|
|
if (this->dns_server_ != nullptr)
|
|
this->dns_server_->processNextRequest();
|
|
}
|
|
#endif
|
|
float get_setup_priority() const override;
|
|
void start();
|
|
bool is_active() const { return this->active_; }
|
|
void end() {
|
|
this->active_ = false;
|
|
this->base_->deinit();
|
|
#ifdef USE_ARDUINO
|
|
this->dns_server_->stop();
|
|
this->dns_server_ = nullptr;
|
|
#endif
|
|
}
|
|
|
|
bool canHandle(AsyncWebServerRequest *request) override {
|
|
if (!this->active_)
|
|
return false;
|
|
|
|
if (request->method() == HTTP_GET) {
|
|
if (request->url() == "/")
|
|
return true;
|
|
if (request->url() == "/config.json")
|
|
return true;
|
|
if (request->url() == "/wifisave")
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
void handle_config(AsyncWebServerRequest *request);
|
|
|
|
void handle_wifisave(AsyncWebServerRequest *request);
|
|
|
|
void handleRequest(AsyncWebServerRequest *req) override;
|
|
|
|
protected:
|
|
web_server_base::WebServerBase *base_;
|
|
bool initialized_{false};
|
|
bool active_{false};
|
|
#ifdef USE_ARDUINO
|
|
std::unique_ptr<DNSServer> dns_server_{nullptr};
|
|
#endif
|
|
};
|
|
|
|
extern CaptivePortal *global_captive_portal; // NOLINT(cppcoreguidelines-avoid-non-const-global-variables)
|
|
|
|
} // namespace captive_portal
|
|
} // namespace esphome
|