3 #include "list_entities.h" 12 #include <freertos/FreeRTOS.h> 13 #include <freertos/semphr.h> 16 #if USE_WEBSERVER_VERSION == 2 17 extern const uint8_t ESPHOME_WEBSERVER_INDEX_HTML[]
PROGMEM;
21 #ifdef USE_WEBSERVER_CSS_INCLUDE 22 extern const uint8_t ESPHOME_WEBSERVER_CSS_INCLUDE[]
PROGMEM;
26 #ifdef USE_WEBSERVER_JS_INCLUDE 27 extern const uint8_t ESPHOME_WEBSERVER_JS_INCLUDE[]
PROGMEM;
32 namespace web_server {
57 #if USE_WEBSERVER_VERSION == 1 63 void set_css_url(
const char *css_url);
70 void set_js_url(
const char *js_url);
73 #ifdef USE_WEBSERVER_CSS_INCLUDE 78 void set_css_include(
const char *css_include);
81 #ifdef USE_WEBSERVER_JS_INCLUDE 86 void set_js_include(
const char *js_include);
109 void setup()
override;
110 void loop()
override;
112 void dump_config()
override;
115 float get_setup_priority()
const override;
118 void handle_index_request(AsyncWebServerRequest *request);
121 std::string get_config_json();
123 #ifdef USE_WEBSERVER_CSS_INCLUDE 124 void handle_css_request(AsyncWebServerRequest *request);
128 #ifdef USE_WEBSERVER_JS_INCLUDE 129 void handle_js_request(AsyncWebServerRequest *request);
133 #ifdef USE_WEBSERVER_PRIVATE_NETWORK_ACCESS 135 void handle_pna_cors_request(AsyncWebServerRequest *request);
141 void handle_sensor_request(AsyncWebServerRequest *request,
const UrlMatch &match);
151 void handle_switch_request(AsyncWebServerRequest *request,
const UrlMatch &match);
158 void handle_button_request(AsyncWebServerRequest *request,
const UrlMatch &match);
165 #ifdef USE_BINARY_SENSOR 169 void handle_binary_sensor_request(AsyncWebServerRequest *request,
const UrlMatch &match);
176 void on_fan_update(
fan::Fan *obj)
override;
179 void handle_fan_request(AsyncWebServerRequest *request,
const UrlMatch &match);
189 void handle_light_request(AsyncWebServerRequest *request,
const UrlMatch &match);
195 #ifdef USE_TEXT_SENSOR 199 void handle_text_sensor_request(AsyncWebServerRequest *request,
const UrlMatch &match);
209 void handle_cover_request(AsyncWebServerRequest *request,
const UrlMatch &match);
218 void handle_number_request(AsyncWebServerRequest *request,
const UrlMatch &match);
225 void on_text_update(
text::Text *obj,
const std::string &state)
override;
227 void handle_text_request(AsyncWebServerRequest *request,
const UrlMatch &match);
234 void on_select_update(
select::Select *obj,
const std::string &state,
size_t index)
override;
236 void handle_select_request(AsyncWebServerRequest *request,
const UrlMatch &match);
245 void handle_climate_request(AsyncWebServerRequest *request,
const UrlMatch &match);
252 void on_lock_update(
lock::Lock *obj)
override;
255 void handle_lock_request(AsyncWebServerRequest *request,
const UrlMatch &match);
261 #ifdef USE_ALARM_CONTROL_PANEL 265 void handle_alarm_control_panel_request(AsyncWebServerRequest *request,
const UrlMatch &match);
273 bool canHandle(AsyncWebServerRequest *request)
override;
275 void handleRequest(AsyncWebServerRequest *request)
override;
277 bool isRequestHandlerTrivial()
override;
280 void schedule_(std::function<
void()> &&f);
283 AsyncEventSource events_{
"/events"};
285 #if USE_WEBSERVER_VERSION == 1 286 const char *css_url_{
nullptr};
287 const char *js_url_{
nullptr};
289 #ifdef USE_WEBSERVER_CSS_INCLUDE 290 const char *css_include_{
nullptr};
292 #ifdef USE_WEBSERVER_JS_INCLUDE 293 const char *js_include_{
nullptr};
295 bool include_internal_{
false};
296 bool allow_ota_{
true};
297 bool expose_log_{
true};
Base class for all switches.
const size_t ESPHOME_WEBSERVER_CSS_INCLUDE_SIZE
This class represents the communication layer between the front-end MQTT layer and the hardware outpu...
Base class for all cover devices.
void set_allow_ota(bool allow_ota)
Set whether or not the webserver should expose the OTA form and handler.
SemaphoreHandle_t to_schedule_lock_
This class allows users to create a web server with their ESP nodes.
void set_include_internal(bool include_internal)
Determine whether internal components should be displayed on the web server.
Base-class for all text inputs.
void set_expose_log(bool expose_log)
Set whether or not the webserver should expose the Log.
const size_t ESPHOME_WEBSERVER_JS_INCLUDE_SIZE
friend ListEntitiesIterator
Internal helper struct that is used to parse incoming URLs.
const size_t ESPHOME_WEBSERVER_INDEX_HTML_SIZE
std::string domain
The domain of the component, for example "sensor".
Base-class for all numbers.
bool valid
Whether this match is valid.
std::string id
The id of the device that's being accessed, for example "living_room_fan".
const uint8_t ESPHOME_WEBSERVER_INDEX_HTML [] PROGMEM
Base-class for all selects.
web_server_base::WebServerBase * base_
Implementation of SPI Controller mode.
Base class for all binary_sensor-type classes.
LockState
Enum for all states a lock can be in.
Base-class for all sensors.
ListEntitiesIterator entities_iterator_
std::deque< std::function< void()> > to_schedule_
std::string method
The method that's being called, for example "turn_on".
Base class for all locks.
ClimateDevice - This is the base class for all climate integrations.