| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #include <WebServer.h>
- #include <MiLightClient.h>
- #include <Settings.h>
- #ifndef _MILIGHT_HTTP_SERVER
- #define _MILIGHT_HTTP_SERVER
- typedef std::function<void(void)> SettingsSavedHandler;
- class MiLightHttpServer {
- public:
- MiLightHttpServer(Settings& settings, MiLightClient*& milightClient)
- : server(WebServer(80)),
- milightClient(milightClient),
- settings(settings)
- {
- this->applySettings(settings);
- }
-
- void begin();
- void handleClient();
- void onSettingsSaved(SettingsSavedHandler handler);
-
- protected:
- ESP8266WebServer::THandlerFunction handleServeFile(
- const char* filename,
- const char* contentType,
- const char* defaultText = NULL);
-
- bool serveFile(const char* file, const char* contentType = "text/html");
- ESP8266WebServer::THandlerFunction handleUpdateFile(const char* filename);
- void applySettings(Settings& settings);
-
- void handleUpdateSettings();
- void handleListenGateway();
- void handleUpdateGroup(const UrlTokenBindings* urlBindings);
- void handleUpdateGateway(const UrlTokenBindings* urlBindings);
-
- File updateFile;
-
- WebServer server;
- Settings& settings;
- MiLightClient*& milightClient;
- SettingsSavedHandler settingsSavedHandler;
-
- };
- #endif
|