2018-02-26 00:11:31 +00:00
|
|
|
#ifndef WiFiSettingsService_h
|
|
|
|
#define WiFiSettingsService_h
|
|
|
|
|
2021-01-03 17:00:36 +00:00
|
|
|
#include <SettingValue.h>
|
2020-05-14 22:23:45 +00:00
|
|
|
#include <StatefulService.h>
|
|
|
|
#include <FSPersistence.h>
|
|
|
|
#include <HttpEndpoint.h>
|
|
|
|
#include <JsonUtils.h>
|
2018-02-26 00:11:31 +00:00
|
|
|
|
2020-05-19 23:32:49 +00:00
|
|
|
#ifndef FACTORY_WIFI_SSID
|
|
|
|
#define FACTORY_WIFI_SSID ""
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef FACTORY_WIFI_PASSWORD
|
|
|
|
#define FACTORY_WIFI_PASSWORD ""
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef FACTORY_WIFI_HOSTNAME
|
2021-01-03 17:00:36 +00:00
|
|
|
#define FACTORY_WIFI_HOSTNAME "#{platform}-#{unique_id}"
|
2020-05-19 23:32:49 +00:00
|
|
|
#endif
|
|
|
|
|
2021-01-03 17:00:36 +00:00
|
|
|
#define WIFI_SETTINGS_FILE "/config/wifiSettings.json"
|
|
|
|
#define WIFI_SETTINGS_SERVICE_PATH "/rest/wifiSettings"
|
|
|
|
|
|
|
|
#define WIFI_RECONNECTION_DELAY 1000 * 30
|
|
|
|
|
2020-02-01 08:44:26 +00:00
|
|
|
class WiFiSettings {
|
|
|
|
public:
|
|
|
|
// core wifi configuration
|
|
|
|
String ssid;
|
|
|
|
String password;
|
|
|
|
String hostname;
|
|
|
|
bool staticIPConfig;
|
|
|
|
|
|
|
|
// optional configuration for static IP address
|
|
|
|
IPAddress localIP;
|
|
|
|
IPAddress gatewayIP;
|
|
|
|
IPAddress subnetMask;
|
|
|
|
IPAddress dnsIP1;
|
|
|
|
IPAddress dnsIP2;
|
2020-05-14 22:23:45 +00:00
|
|
|
|
2020-05-29 19:18:43 +00:00
|
|
|
static void read(WiFiSettings& settings, JsonObject& root) {
|
2020-05-14 22:23:45 +00:00
|
|
|
// connection settings
|
|
|
|
root["ssid"] = settings.ssid;
|
|
|
|
root["password"] = settings.password;
|
|
|
|
root["hostname"] = settings.hostname;
|
|
|
|
root["static_ip_config"] = settings.staticIPConfig;
|
|
|
|
|
|
|
|
// extended settings
|
|
|
|
JsonUtils::writeIP(root, "local_ip", settings.localIP);
|
|
|
|
JsonUtils::writeIP(root, "gateway_ip", settings.gatewayIP);
|
|
|
|
JsonUtils::writeIP(root, "subnet_mask", settings.subnetMask);
|
|
|
|
JsonUtils::writeIP(root, "dns_ip_1", settings.dnsIP1);
|
|
|
|
JsonUtils::writeIP(root, "dns_ip_2", settings.dnsIP2);
|
|
|
|
}
|
|
|
|
|
2020-05-29 19:18:43 +00:00
|
|
|
static StateUpdateResult update(JsonObject& root, WiFiSettings& settings) {
|
2020-05-19 23:32:49 +00:00
|
|
|
settings.ssid = root["ssid"] | FACTORY_WIFI_SSID;
|
|
|
|
settings.password = root["password"] | FACTORY_WIFI_PASSWORD;
|
2021-01-03 17:00:36 +00:00
|
|
|
settings.hostname = root["hostname"] | SettingValue::format(FACTORY_WIFI_HOSTNAME);
|
2020-05-14 22:23:45 +00:00
|
|
|
settings.staticIPConfig = root["static_ip_config"] | false;
|
|
|
|
|
|
|
|
// extended settings
|
|
|
|
JsonUtils::readIP(root, "local_ip", settings.localIP);
|
|
|
|
JsonUtils::readIP(root, "gateway_ip", settings.gatewayIP);
|
|
|
|
JsonUtils::readIP(root, "subnet_mask", settings.subnetMask);
|
|
|
|
JsonUtils::readIP(root, "dns_ip_1", settings.dnsIP1);
|
|
|
|
JsonUtils::readIP(root, "dns_ip_2", settings.dnsIP2);
|
|
|
|
|
|
|
|
// Swap around the dns servers if 2 is populated but 1 is not
|
2021-03-09 09:17:03 +00:00
|
|
|
if (IPUtils::isNotSet(settings.dnsIP1) && IPUtils::isSet(settings.dnsIP2)) {
|
2020-05-14 22:23:45 +00:00
|
|
|
settings.dnsIP1 = settings.dnsIP2;
|
|
|
|
settings.dnsIP2 = INADDR_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Turning off static ip config if we don't meet the minimum requirements
|
|
|
|
// of ipAddress, gateway and subnet. This may change to static ip only
|
|
|
|
// as sensible defaults can be assumed for gateway and subnet
|
2021-03-09 09:17:03 +00:00
|
|
|
if (settings.staticIPConfig && (IPUtils::isNotSet(settings.localIP) || IPUtils::isNotSet(settings.gatewayIP) ||
|
|
|
|
IPUtils::isNotSet(settings.subnetMask))) {
|
2020-05-14 22:23:45 +00:00
|
|
|
settings.staticIPConfig = false;
|
|
|
|
}
|
2020-05-29 19:18:43 +00:00
|
|
|
return StateUpdateResult::CHANGED;
|
2020-05-14 22:23:45 +00:00
|
|
|
}
|
2020-02-01 08:44:26 +00:00
|
|
|
};
|
|
|
|
|
2020-05-14 22:23:45 +00:00
|
|
|
class WiFiSettingsService : public StatefulService<WiFiSettings> {
|
2019-12-03 23:16:06 +00:00
|
|
|
public:
|
|
|
|
WiFiSettingsService(AsyncWebServer* server, FS* fs, SecurityManager* securityManager);
|
|
|
|
|
|
|
|
void begin();
|
|
|
|
void loop();
|
|
|
|
|
|
|
|
private:
|
2020-05-14 22:23:45 +00:00
|
|
|
HttpEndpoint<WiFiSettings> _httpEndpoint;
|
|
|
|
FSPersistence<WiFiSettings> _fsPersistence;
|
2019-12-03 23:16:06 +00:00
|
|
|
unsigned long _lastConnectionAttempt;
|
|
|
|
|
2019-12-24 11:19:19 +00:00
|
|
|
#ifdef ESP32
|
2020-02-01 20:21:18 +00:00
|
|
|
bool _stopping;
|
2019-12-24 11:19:19 +00:00
|
|
|
void onStationModeDisconnected(WiFiEvent_t event, WiFiEventInfo_t info);
|
2020-02-01 20:21:18 +00:00
|
|
|
void onStationModeStop(WiFiEvent_t event, WiFiEventInfo_t info);
|
2019-12-24 11:19:19 +00:00
|
|
|
#elif defined(ESP8266)
|
2019-12-03 23:16:06 +00:00
|
|
|
WiFiEventHandler _onStationModeDisconnectedHandler;
|
|
|
|
void onStationModeDisconnected(const WiFiEventStationModeDisconnected& event);
|
2019-06-04 23:05:16 +00:00
|
|
|
#endif
|
2018-04-01 09:35:23 +00:00
|
|
|
|
2019-12-03 23:16:06 +00:00
|
|
|
void reconfigureWiFiConnection();
|
|
|
|
void manageSTA();
|
2018-02-26 00:11:31 +00:00
|
|
|
};
|
|
|
|
|
2019-12-03 23:16:06 +00:00
|
|
|
#endif // end WiFiSettingsService_h
|