2020-12-08 15:12:15 +00:00
|
|
|
#ifndef APSettingsConfig_h
|
|
|
|
#define APSettingsConfig_h
|
|
|
|
|
|
|
|
#include <HttpEndpoint.h>
|
|
|
|
#include <FSPersistence.h>
|
|
|
|
#include <JsonUtils.h>
|
|
|
|
|
|
|
|
#include <DNSServer.h>
|
|
|
|
#include <IPAddress.h>
|
|
|
|
|
|
|
|
#define MANAGE_NETWORK_DELAY 10000
|
|
|
|
|
|
|
|
#define AP_MODE_ALWAYS 0
|
|
|
|
#define AP_MODE_DISCONNECTED 1
|
|
|
|
#define AP_MODE_NEVER 2
|
|
|
|
|
|
|
|
#define DNS_PORT 53
|
|
|
|
|
|
|
|
#ifndef FACTORY_AP_PROVISION_MODE
|
|
|
|
#define FACTORY_AP_PROVISION_MODE AP_MODE_DISCONNECTED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef FACTORY_AP_SSID
|
|
|
|
#define FACTORY_AP_SSID "ESP8266-React"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef FACTORY_AP_PASSWORD
|
|
|
|
#define FACTORY_AP_PASSWORD "esp-react"
|
|
|
|
#endif
|
|
|
|
|
2021-01-03 16:08:05 +00:00
|
|
|
#ifndef FACTORY_AP_VISIBLE
|
|
|
|
#define FACTORY_AP_VISIBLE true
|
|
|
|
#endif
|
|
|
|
|
2020-12-08 15:12:15 +00:00
|
|
|
#ifndef FACTORY_AP_LOCAL_IP
|
|
|
|
#define FACTORY_AP_LOCAL_IP "192.168.4.1"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef FACTORY_AP_GATEWAY_IP
|
|
|
|
#define FACTORY_AP_GATEWAY_IP "192.168.4.1"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef FACTORY_AP_SUBNET_MASK
|
|
|
|
#define FACTORY_AP_SUBNET_MASK "255.255.255.0"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define AP_SETTINGS_FILE "/config/apSettings.json"
|
|
|
|
#define AP_SETTINGS_SERVICE_PATH "/rest/apSettings"
|
|
|
|
|
|
|
|
enum APNetworkStatus { ACTIVE = 0, INACTIVE, LINGERING };
|
|
|
|
|
|
|
|
class APSettings {
|
|
|
|
public:
|
|
|
|
uint8_t provisionMode;
|
|
|
|
String ssid;
|
|
|
|
String password;
|
|
|
|
IPAddress localIP;
|
|
|
|
IPAddress gatewayIP;
|
|
|
|
IPAddress subnetMask;
|
2021-01-03 16:08:05 +00:00
|
|
|
bool networkVisible;
|
2020-12-08 15:12:15 +00:00
|
|
|
|
|
|
|
bool operator==(const APSettings& settings) const {
|
|
|
|
return provisionMode == settings.provisionMode && ssid == settings.ssid && password == settings.password &&
|
2021-01-03 16:08:05 +00:00
|
|
|
localIP == settings.localIP && gatewayIP == settings.gatewayIP && subnetMask == settings.subnetMask && networkVisible == settings.networkVisible;
|
2020-12-08 15:12:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void read(APSettings& settings, JsonObject& root) {
|
|
|
|
root["provision_mode"] = settings.provisionMode;
|
|
|
|
root["ssid"] = settings.ssid;
|
|
|
|
root["password"] = settings.password;
|
|
|
|
root["local_ip"] = settings.localIP.toString();
|
|
|
|
root["gateway_ip"] = settings.gatewayIP.toString();
|
|
|
|
root["subnet_mask"] = settings.subnetMask.toString();
|
2021-01-03 16:08:05 +00:00
|
|
|
root["network_visible"] = settings.networkVisible;
|
2020-12-08 15:12:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static StateUpdateResult update(JsonObject& root, APSettings& settings) {
|
|
|
|
APSettings newSettings = {};
|
|
|
|
newSettings.provisionMode = root["provision_mode"] | FACTORY_AP_PROVISION_MODE;
|
|
|
|
switch (settings.provisionMode) {
|
|
|
|
case AP_MODE_ALWAYS:
|
|
|
|
case AP_MODE_DISCONNECTED:
|
|
|
|
case AP_MODE_NEVER:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
newSettings.provisionMode = AP_MODE_ALWAYS;
|
|
|
|
}
|
|
|
|
newSettings.ssid = root["ssid"] | FACTORY_AP_SSID;
|
|
|
|
newSettings.password = root["password"] | FACTORY_AP_PASSWORD;
|
2021-01-03 16:08:05 +00:00
|
|
|
newSettings.networkVisible = root["network_visible"] | FACTORY_AP_VISIBLE;
|
2020-12-08 15:12:15 +00:00
|
|
|
|
|
|
|
JsonUtils::readIP(root, "local_ip", newSettings.localIP, FACTORY_AP_LOCAL_IP);
|
|
|
|
JsonUtils::readIP(root, "gateway_ip", newSettings.gatewayIP, FACTORY_AP_GATEWAY_IP);
|
|
|
|
JsonUtils::readIP(root, "subnet_mask", newSettings.subnetMask, FACTORY_AP_SUBNET_MASK);
|
|
|
|
|
|
|
|
if (newSettings == settings) {
|
|
|
|
return StateUpdateResult::UNCHANGED;
|
|
|
|
}
|
|
|
|
settings = newSettings;
|
|
|
|
return StateUpdateResult::CHANGED;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class APSettingsService : public StatefulService<APSettings> {
|
|
|
|
public:
|
|
|
|
APSettingsService(AsyncWebServer* server, FS* fs, SecurityManager* securityManager);
|
|
|
|
|
|
|
|
void begin();
|
|
|
|
void loop();
|
|
|
|
APNetworkStatus getAPNetworkStatus();
|
|
|
|
|
|
|
|
private:
|
|
|
|
HttpEndpoint<APSettings> _httpEndpoint;
|
|
|
|
FSPersistence<APSettings> _fsPersistence;
|
|
|
|
|
|
|
|
// for the captive portal
|
|
|
|
DNSServer* _dnsServer;
|
|
|
|
|
|
|
|
// for the mangement delay loop
|
|
|
|
volatile unsigned long _lastManaged;
|
|
|
|
volatile boolean _reconfigureAp;
|
|
|
|
|
|
|
|
void reconfigureAP();
|
|
|
|
void manageAP();
|
|
|
|
void startAP();
|
|
|
|
void stopAP();
|
|
|
|
void handleDNS();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // end APSettingsConfig_h
|