| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404 |
- #include <FS.h>
- #include <WiFiUdp.h>
- #include <IntParsing.h>
- #include <Settings.h>
- #include <MiLightHttpServer.h>
- #include <MiLightRadioConfig.h>
- #include <GithubDownloader.h>
- void MiLightHttpServer::begin() {
- applySettings(settings);
-
- server.on("/", HTTP_GET, handleServeFile(WEB_INDEX_FILENAME, "text/html", DEFAULT_INDEX_PAGE));
- server.on("/settings", HTTP_GET, handleServeFile(SETTINGS_FILE, "application/json"));
- server.on("/settings", HTTP_PUT, [this]() { handleUpdateSettings(); });
- server.on("/settings", HTTP_POST, [this]() { server.send(200, "text/plain", "success"); }, handleUpdateFile(SETTINGS_FILE));
- server.on("/radio_configs", HTTP_GET, [this]() { handleGetRadioConfigs(); });
- server.onPattern("/gateway_traffic/:type", HTTP_GET, [this](const UrlTokenBindings* b) { handleListenGateway(b); });
- server.onPattern("/gateways/:device_id/:type/:group_id", HTTP_PUT, [this](const UrlTokenBindings* b) { handleUpdateGroup(b); });
- server.onPattern("/raw_commands/:type", HTTP_PUT, [this](const UrlTokenBindings* b) { handleSendRaw(b); });
- server.onPattern("/download_update/:component", HTTP_GET, [this](const UrlTokenBindings* b) { handleDownloadUpdate(b); });
- server.on("/web", HTTP_POST, [this]() { server.send(200, "text/plain", "success"); }, handleUpdateFile(WEB_INDEX_FILENAME));
- server.on("/about", HTTP_GET, [this]() { handleAbout(); });
- server.on("/system", HTTP_POST, [this]() { handleSystemPost(); });
- server.on("/firmware", HTTP_POST,
- [this](){
- server.sendHeader("Connection", "close");
- server.sendHeader("Access-Control-Allow-Origin", "*");
- server.send(200, "text/plain", (Update.hasError())?"FAIL":"OK");
- ESP.restart();
- },
- [this](){
- HTTPUpload& upload = server.upload();
- if(upload.status == UPLOAD_FILE_START){
- WiFiUDP::stopAll();
- uint32_t maxSketchSpace = (ESP.getFreeSketchSpace() - 0x1000) & 0xFFFFF000;
- if(!Update.begin(maxSketchSpace)){//start with max available size
- Update.printError(Serial);
- }
- } else if(upload.status == UPLOAD_FILE_WRITE){
- if(Update.write(upload.buf, upload.currentSize) != upload.currentSize){
- Update.printError(Serial);
- }
- } else if(upload.status == UPLOAD_FILE_END){
- if(Update.end(true)){ //true to set the size to the current progress
- } else {
- Update.printError(Serial);
- }
- }
- yield();
- }
- );
-
- server.begin();
- }
- void MiLightHttpServer::handleClient() {
- server.handleClient();
- }
- void MiLightHttpServer::handleSystemPost() {
- DynamicJsonBuffer buffer;
- JsonObject& request = buffer.parse(server.arg("plain"));
-
- bool handled = false;
-
- if (request.containsKey("command")) {
- if (request["command"] == "restart") {
- Serial.println("Restarting...");
- server.send(200, "text/plain", "true");
-
- delay(100);
-
- ESP.restart();
- }
- }
-
- if (handled) {
- server.send(200, "text/plain", "true");
- } else {
- server.send(400, "text/plain", "{\"error\":\"Unhandled command\"}");
- }
- }
- void MiLightHttpServer::handleDownloadUpdate(const UrlTokenBindings* bindings) {
- GithubDownloader* downloader = new GithubDownloader();
- const String& component = bindings->get("component");
-
- if (component.equalsIgnoreCase("web")) {
- Serial.println("Attempting to update web UI...");
-
- bool result = false;
- size_t tries = 0;
-
- while (!result && tries++ <= MAX_DOWNLOAD_ATTEMPTS) {
- result = downloader->downloadFile(
- MILIGHT_GITHUB_USER,
- MILIGHT_GITHUB_REPO,
- MILIGHT_REPO_WEB_PATH,
- WEB_INDEX_FILENAME
- );
- }
-
- Serial.println("Download complete!");
-
- if (result) {
- server.sendHeader("Location", "/");
- server.send(302);
- } else {
- server.send(500, "text/plain", "Failed to download update from Github. Check serial logs for more information.");
- }
- } else {
- String body = String("Unknown component: ") + component;
- server.send(400, "text/plain", body);
- }
-
- delete downloader;
- }
- void MiLightHttpServer::applySettings(Settings& settings) {
- if (settings.hasAuthSettings()) {
- server.requireAuthentication(settings.adminUsername, settings.adminPassword);
- } else {
- server.disableAuthentication();
- }
-
- milightClient->setResendCount(settings.packetRepeats);
- }
- void MiLightHttpServer::onSettingsSaved(SettingsSavedHandler handler) {
- this->settingsSavedHandler = handler;
- }
- void MiLightHttpServer::onLongPollLoop(LongPollLoopFn fn) {
- this->longPollLoopFn = fn;
- }
-
- void MiLightHttpServer::handleAbout() {
- DynamicJsonBuffer buffer;
- JsonObject& response = buffer.createObject();
-
- response["version"] = MILIGHT_HUB_VERSION;
- response["variant"] = FIRMWARE_VARIANT;
-
- String body;
- response.printTo(body);
-
- server.send(200, "application", body);
- }
-
- void MiLightHttpServer::handleGetRadioConfigs() {
- DynamicJsonBuffer buffer;
- JsonArray& arr = buffer.createArray();
-
- for (size_t i = 0; i < MiLightRadioConfig::NUM_CONFIGS; i++) {
- const MiLightRadioConfig* config = MiLightRadioConfig::ALL_CONFIGS[i];
- arr.add(config->name);
- }
-
- String body;
- arr.printTo(body);
-
- server.send(200, "application/json", body);
- }
-
- ESP8266WebServer::THandlerFunction MiLightHttpServer::handleServeFile(
- const char* filename,
- const char* contentType,
- const char* defaultText) {
-
- return [this, filename, contentType, defaultText]() {
- if (!serveFile(filename)) {
- if (defaultText) {
- server.send(200, contentType, defaultText);
- } else {
- server.send(404);
- }
- }
- };
- }
- bool MiLightHttpServer::serveFile(const char* file, const char* contentType) {
- if (SPIFFS.exists(file)) {
- File f = SPIFFS.open(file, "r");
- server.streamFile(f, contentType);
- f.close();
- return true;
- }
-
- return false;
- }
- ESP8266WebServer::THandlerFunction MiLightHttpServer::handleUpdateFile(const char* filename) {
- return [this, filename]() {
- HTTPUpload& upload = server.upload();
-
- if (upload.status == UPLOAD_FILE_START) {
- updateFile = SPIFFS.open(filename, "w");
- } else if(upload.status == UPLOAD_FILE_WRITE){
- if (updateFile.write(upload.buf, upload.currentSize) != upload.currentSize) {
- Serial.println("Error updating web file");
- }
- } else if (upload.status == UPLOAD_FILE_END) {
- updateFile.close();
- }
- };
- }
- void MiLightHttpServer::handleUpdateSettings() {
- DynamicJsonBuffer buffer;
- const String& rawSettings = server.arg("plain");
- JsonObject& parsedSettings = buffer.parse(rawSettings);
-
- if (parsedSettings.success()) {
- settings.patch(parsedSettings);
- settings.save();
-
- this->applySettings(settings);
- this->settingsSavedHandler();
-
- server.send(200, "application/json", "true");
- } else {
- server.send(400, "application/json", "\"Invalid JSON\"");
- }
- }
- void MiLightHttpServer::handleListenGateway(const UrlTokenBindings* bindings) {
- bool available = false;
- MiLightRadioConfig* config = MiLightRadioConfig::fromString(bindings->get("type"));
-
- if (config == NULL) {
- String body = "Unknown device type: ";
- body += bindings->get("type");
-
- server.send(400, "text/plain", body);
- return;
- }
-
- milightClient->prepare(*config, 0, 0);
-
- while (!available) {
- if (!server.clientConnected()) {
- return;
- }
-
- if (milightClient->available()) {
- available = true;
- }
-
- if (this->longPollLoopFn) {
- longPollLoopFn();
- }
-
- yield();
- }
-
- uint8_t packet[config->getPacketLength()];
- milightClient->read(packet);
-
- String response = "Packet received (";
- response += String(sizeof(packet)) + " bytes)";
- response += ":\n";
-
- char ppBuffer[200];
- milightClient->formatPacket(packet, ppBuffer);
- response += String(ppBuffer);
-
- response += "\n\n";
-
- server.send(200, "text/plain", response);
- }
- void MiLightHttpServer::handleUpdateGroup(const UrlTokenBindings* urlBindings) {
- DynamicJsonBuffer buffer;
- JsonObject& request = buffer.parse(server.arg("plain"));
-
- if (!request.success()) {
- server.send(400, "text/plain", "Invalid JSON");
- return;
- }
-
- const uint16_t deviceId = parseInt<uint16_t>(urlBindings->get("device_id"));
- const uint8_t groupId = urlBindings->get("group_id").toInt();
- MiLightRadioConfig* config = MiLightRadioConfig::fromString(urlBindings->get("type"));
-
- if (config == NULL) {
- String body = "Unknown device type: ";
- body += urlBindings->get("type");
-
- server.send(400, "text/plain", body);
- return;
- }
-
- milightClient->setResendCount(
- settings.httpRepeatFactor * settings.packetRepeats
- );
- milightClient->prepare(*config, deviceId, groupId);
-
- if (request.containsKey("status")) {
- const String& statusStr = request.get<String>("status");
- MiLightStatus status = (statusStr == "on" || statusStr == "true") ? ON : OFF;
- milightClient->updateStatus(status);
- }
-
- if (request.containsKey("command")) {
- if (request["command"] == "unpair") {
- milightClient->unpair();
- }
-
- if (request["command"] == "pair") {
- milightClient->pair();
- }
-
- if (request["command"] == "set_white") {
- milightClient->updateColorWhite();
- }
-
- if (request["command"] == "level_up") {
- milightClient->increaseBrightness();
- }
-
- if (request["command"] == "level_down") {
- milightClient->decreaseBrightness();
- }
-
- if (request["command"] == "temperature_up") {
- milightClient->increaseTemperature();
- }
-
- if (request["command"] == "temperature_down") {
- milightClient->decreaseTemperature();
- }
-
- if (request["command"] == "next_mode") {
- milightClient->nextMode();
- }
-
- if (request["command"] == "previous_mode") {
- milightClient->previousMode();
- }
-
- if (request["command"] == "mode_speed_down") {
- milightClient->modeSpeedDown();
- }
-
- if (request["command"] == "mode_speed_up") {
- milightClient->modeSpeedUp();
- }
- }
-
- if (request.containsKey("hue")) {
- milightClient->updateHue(request["hue"]);
- }
-
- if (request.containsKey("level")) {
- milightClient->updateBrightness(request["level"]);
- }
-
- if (request.containsKey("temperature")) {
- milightClient->updateTemperature(request["temperature"]);
- }
-
- if (request.containsKey("saturation")) {
- milightClient->updateSaturation(request["saturation"]);
- }
-
- if (request.containsKey("mode")) {
- milightClient->updateMode(request["mode"]);
- }
-
- milightClient->setResendCount(settings.packetRepeats);
-
- server.send(200, "application/json", "true");
- }
- void MiLightHttpServer::handleSendRaw(const UrlTokenBindings* bindings) {
- DynamicJsonBuffer buffer;
- JsonObject& request = buffer.parse(server.arg("plain"));
- MiLightRadioConfig* config = MiLightRadioConfig::fromString(bindings->get("type"));
-
- if (config == NULL) {
- String body = "Unknown device type: ";
- body += bindings->get("type");
-
- server.send(400, "text/plain", body);
- return;
- }
-
- uint8_t packet[config->getPacketLength()];
- const String& hexPacket = request["packet"];
- hexStrToBytes<uint8_t>(hexPacket.c_str(), hexPacket.length(), packet, config->getPacketLength());
-
- size_t numRepeats = MILIGHT_DEFAULT_RESEND_COUNT;
- if (request.containsKey("num_repeats")) {
- numRepeats = request["num_repeats"];
- }
-
- milightClient->prepare(*config, 0, 0);
-
- for (size_t i = 0; i < numRepeats; i++) {
- milightClient->write(packet);
- }
-
- server.send(200, "text/plain", "true");
- }
|