4#if USE_WEBSERVER_VERSION == 1
9static void write_html_escaped(AsyncResponseStream *stream,
const char *text) {
10 for (
const char *p = text; *p; ++p) {
13 stream->print(
""");
16 stream->print(
"&");
19 stream->print(
"<");
22 stream->print(
">");
31void write_row(AsyncResponseStream *stream, EntityBase *obj,
const std::string &klass,
const std::string &action,
32 const std::function<
void(AsyncResponseStream &stream, EntityBase *obj)> &action_func =
nullptr) {
33 stream->print(
"<tr class=\"");
34 stream->print(klass.c_str());
35 if (obj->is_internal())
36 stream->print(
" internal");
37 stream->print(
"\" id=\"");
38 stream->print(klass.c_str());
40 char object_id_buf[OBJECT_ID_MAX_LEN];
41 stream->print(obj->get_object_id_to(object_id_buf).c_str());
43 stream->print(
"\" data-domain=\"");
44 stream->print(klass.c_str());
45 stream->print(
"\" data-name=\"");
46 write_html_escaped(stream, obj->get_name().c_str());
48 Device *device = obj->get_device();
49 if (device !=
nullptr) {
50 stream->print(
"\" data-device=\"");
51 write_html_escaped(stream, device->get_name());
54 stream->print(
"\"><td>");
56 if (device !=
nullptr) {
58 write_html_escaped(stream, device->get_name());
62 write_html_escaped(stream, obj->get_name().c_str());
63 stream->print(
"</td><td></td><td>");
64 stream->print(action.c_str());
66 action_func(*stream, obj);
68 stream->print(
"</td>");
69 stream->print(
"</tr>");
77 AsyncResponseStream *stream = request->beginResponseStream(ESPHOME_F(
"text/html"));
79 stream->print(ESPHOME_F(
"<!DOCTYPE html><html lang=\"en\"><head><meta charset=UTF-8><meta "
80 "name=viewport content=\"width=device-width, initial-scale=1,user-scalable=no\"><title>"));
81 stream->print(title.c_str());
82 stream->print(ESPHOME_F(
"</title>"));
83#ifdef USE_WEBSERVER_CSS_INCLUDE
84 stream->print(ESPHOME_F(
"<link rel=\"stylesheet\" href=\"/0.css\">"));
87 stream->print(ESPHOME_F(R
"(<link rel="stylesheet" href=")"));
89 stream->print(ESPHOME_F("\">"));
91 stream->print(ESPHOME_F(
"</head><body>"));
92 stream->print(ESPHOME_F(
"<article class=\"markdown-body\"><h1>"));
93 stream->print(title.c_str());
94 stream->print(ESPHOME_F(
"</h1>"));
95 stream->print(ESPHOME_F(
"<h2>States</h2><table id=\"states\"><thead><tr><th>Name<th>State<th>Actions<tbody>"));
98 for (
auto *obj :
App.get_sensors()) {
100 write_row(stream, obj,
"sensor",
"");
105 for (
auto *obj :
App.get_switches()) {
107 write_row(stream, obj,
"switch",
"<button>Toggle</button>");
112 for (
auto *obj :
App.get_buttons())
113 write_row(stream, obj,
"button",
"<button>Press</button>");
116#ifdef USE_BINARY_SENSOR
119 write_row(stream, obj,
"binary_sensor",
"");
124 for (
auto *obj :
App.get_fans()) {
126 write_row(stream, obj,
"fan",
"<button>Toggle</button>");
131 for (
auto *obj :
App.get_lights()) {
133 write_row(stream, obj,
"light",
"<button>Toggle</button>");
137#ifdef USE_TEXT_SENSOR
138 for (
auto *obj :
App.get_text_sensors()) {
140 write_row(stream, obj,
"text_sensor",
"");
145 for (
auto *obj :
App.get_covers()) {
147 write_row(stream, obj,
"cover",
"<button>Open</button><button>Close</button>");
152 for (
auto *obj :
App.get_numbers()) {
154 write_row(stream, obj,
"number",
"", [](AsyncResponseStream &stream, EntityBase *obj) {
155 number::Number *number = (number::Number *) obj;
156 stream.print(R
"(<input type="number" min=")");
157 stream.print(number->traits.get_min_value());
158 stream.print(R"(" max=")");
159 stream.print(number->traits.get_max_value());
160 stream.print(R"(" step=")");
161 stream.print(number->traits.get_step());
162 stream.print(R"(" value=")");
163 stream.print(number->state);
164 stream.print(R"("/>)");
171 for (
auto *obj :
App.get_texts()) {
173 write_row(stream, obj,
"text",
"", [](AsyncResponseStream &stream, EntityBase *obj) {
174 text::Text *text = (text::Text *) obj;
175 auto mode = (int) text->traits.get_mode();
176 stream.print(R
"(<input type=")");
178 stream.print(R
"(password)");
180 stream.print(R
"(text)");
182 stream.print(R"(" minlength=")");
183 stream.print(text->traits.get_min_length());
184 stream.print(R"(" maxlength=")");
185 stream.print(text->traits.get_max_length());
186 stream.print(R"(" pattern=")");
187 stream.print(text->traits.get_pattern_c_str());
188 stream.print(R"(" value=")");
189 stream.print(text->state.c_str());
190 stream.print(R"("/>)");
197 for (
auto *obj :
App.get_selects()) {
199 write_row(stream, obj,
"select",
"", [](AsyncResponseStream &stream, EntityBase *obj) {
200 select::Select *select = (select::Select *) obj;
201 stream.print(
"<select>");
202 stream.print(
"<option></option>");
203 for (
auto const &option : select->traits.get_options()) {
204 stream.print(
"<option>");
205 stream.print(option);
206 stream.print(
"</option>");
208 stream.print(
"</select>");
215 for (
auto *obj :
App.get_locks()) {
217 write_row(stream, obj,
"lock",
"", [](AsyncResponseStream &stream, EntityBase *obj) {
218 lock::Lock *lock = (lock::Lock *) obj;
219 stream.print(
"<button>Lock</button><button>Unlock</button>");
220 if (lock->traits.get_supports_open()) {
221 stream.print(
"<button>Open</button>");
229 for (
auto *obj :
App.get_climates()) {
231 write_row(stream, obj,
"climate",
"");
235#ifdef USE_WATER_HEATER
236 for (
auto *obj :
App.get_water_heaters()) {
238 write_row(stream, obj,
"water_heater",
"");
242 stream->print(ESPHOME_F(
"</tbody></table><p>See <a href=\"https://esphome.io/web-api/\">ESPHome Web API</a> for "
243 "REST API documentation.</p>"));
244#if defined(USE_WEBSERVER_OTA) && !defined(USE_WEBSERVER_OTA_DISABLED)
248 ESPHOME_F(
"<h2>OTA Update</h2><form method=\"POST\" action=\"/update\" enctype=\"multipart/form-data\"><input "
249 "type=\"file\" name=\"update\"><input type=\"submit\" value=\"Update\"></form>"));
251 stream->print(ESPHOME_F(
"<h2>Debug Log</h2><pre id=\"log\"></pre>"));
252#ifdef USE_WEBSERVER_JS_INCLUDE
254 stream->print(ESPHOME_F(
"<script type=\"module\" src=\"/0.js\"></script>"));
257 if (strlen(this->
js_url_) > 0) {
258 stream->print(ESPHOME_F(
"<script src=\""));
260 stream->print(ESPHOME_F(
"\"></script>"));
262 stream->print(ESPHOME_F(
"</article></body></html>"));
263 request->send(stream);
BedjetMode mode
BedJet operating mode.
const std::string & get_name() const
Get the name of this Application set by pre_setup().
auto & get_binary_sensors() const
void set_css_url(const char *css_url)
Set the URL to the CSS <link> that's sent to each client.
void set_js_url(const char *js_url)
Set the URL to the script that's embedded in the index page.
void handle_index_request(AsyncWebServerRequest *request)
Handle an index request under '/'.
Application App
Global storage of Application pointer - only one Application can exist.