mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 15:59:52 +03:00
120 lines
4.1 KiB
C++
120 lines
4.1 KiB
C++
#include <ESP8266React.h>
|
|
|
|
ESP8266React::ESP8266React(AsyncWebServer * server, FS * fs)
|
|
: _featureService(server)
|
|
, _securitySettingsService(server, fs)
|
|
, _wifiSettingsService(server, fs, &_securitySettingsService)
|
|
, _wifiScanner(server, &_securitySettingsService)
|
|
, _wifiStatus(server, &_securitySettingsService)
|
|
, _apSettingsService(server, fs, &_securitySettingsService)
|
|
, _apStatus(server, &_securitySettingsService, &_apSettingsService)
|
|
,
|
|
#if FT_ENABLED(FT_NTP)
|
|
_ntpSettingsService(server, fs, &_securitySettingsService)
|
|
, _ntpStatus(server, &_securitySettingsService)
|
|
,
|
|
#endif
|
|
#if FT_ENABLED(FT_OTA)
|
|
_otaSettingsService(server, fs, &_securitySettingsService)
|
|
,
|
|
#endif
|
|
#if FT_ENABLED(FT_UPLOAD_FIRMWARE)
|
|
_uploadFirmwareService(server, &_securitySettingsService)
|
|
,
|
|
#endif
|
|
#if FT_ENABLED(FT_MQTT)
|
|
_mqttSettingsService(server, fs, &_securitySettingsService)
|
|
, _mqttStatus(server, &_mqttSettingsService, &_securitySettingsService)
|
|
,
|
|
#endif
|
|
#if FT_ENABLED(FT_SECURITY)
|
|
_authenticationService(server, &_securitySettingsService)
|
|
,
|
|
#endif
|
|
_restartService(server, &_securitySettingsService)
|
|
, _factoryResetService(server, fs, &_securitySettingsService)
|
|
, _systemStatus(server, &_securitySettingsService) {
|
|
#ifdef PROGMEM_WWW
|
|
// Serve static resources from PROGMEM
|
|
WWWData::registerRoutes([server, this](const String & uri, const String & contentType, const uint8_t * content, size_t len) {
|
|
ArRequestHandlerFunction requestHandler = [contentType, content, len](AsyncWebServerRequest * request) {
|
|
AsyncWebServerResponse * response = request->beginResponse_P(200, contentType, content, len);
|
|
response->addHeader("Content-Encoding", "gzip");
|
|
request->send(response);
|
|
};
|
|
server->on(uri.c_str(), HTTP_GET, requestHandler);
|
|
// Serving non matching get requests with "/index.html"
|
|
// OPTIONS get a straight up 200 response
|
|
if (uri.equals("/index.html")) {
|
|
server->onNotFound([requestHandler](AsyncWebServerRequest * request) {
|
|
if (request->method() == HTTP_GET) {
|
|
requestHandler(request);
|
|
} else if (request->method() == HTTP_OPTIONS) {
|
|
request->send(200);
|
|
} else {
|
|
request->send(404);
|
|
}
|
|
});
|
|
}
|
|
});
|
|
#else
|
|
// Serve static resources from /www/
|
|
server->serveStatic("/js/", *fs, "/www/js/");
|
|
server->serveStatic("/css/", *fs, "/www/css/");
|
|
server->serveStatic("/fonts/", *fs, "/www/fonts/");
|
|
server->serveStatic("/app/", *fs, "/www/app/");
|
|
server->serveStatic("/favicon.ico", *fs, "/www/favicon.ico");
|
|
// Serving all other get requests with "/www/index.htm"
|
|
// OPTIONS get a straight up 200 response
|
|
server->onNotFound([](AsyncWebServerRequest * request) {
|
|
if (request->method() == HTTP_GET) {
|
|
#ifdef ESP32
|
|
request->send(SPIFFS, "/www/index.html");
|
|
#else
|
|
request->send(LittleFS, "/www/index.html"); // added
|
|
#endif
|
|
|
|
} else if (request->method() == HTTP_OPTIONS) {
|
|
request->send(200);
|
|
} else {
|
|
request->send(404);
|
|
}
|
|
});
|
|
#endif
|
|
|
|
// Disable CORS if required
|
|
#if defined(ENABLE_CORS)
|
|
DefaultHeaders::Instance().addHeader("Access-Control-Allow-Origin", CORS_ORIGIN);
|
|
DefaultHeaders::Instance().addHeader("Access-Control-Allow-Headers", "Accept, Content-Type, Authorization");
|
|
DefaultHeaders::Instance().addHeader("Access-Control-Allow-Credentials", "true");
|
|
#endif
|
|
}
|
|
|
|
void ESP8266React::begin() {
|
|
_wifiSettingsService.begin();
|
|
_apSettingsService.begin();
|
|
#if FT_ENABLED(FT_NTP)
|
|
_ntpSettingsService.begin();
|
|
#endif
|
|
#if FT_ENABLED(FT_OTA)
|
|
_otaSettingsService.begin();
|
|
#endif
|
|
#if FT_ENABLED(FT_MQTT)
|
|
_mqttSettingsService.begin();
|
|
#endif
|
|
#if FT_ENABLED(FT_SECURITY)
|
|
_securitySettingsService.begin();
|
|
#endif
|
|
}
|
|
|
|
void ESP8266React::loop() {
|
|
_wifiSettingsService.loop();
|
|
_apSettingsService.loop();
|
|
#if FT_ENABLED(FT_OTA)
|
|
_otaSettingsService.loop();
|
|
#endif
|
|
#if FT_ENABLED(FT_MQTT)
|
|
_mqttSettingsService.loop();
|
|
#endif
|
|
}
|