ESPAsyncWiFiManager.cpp 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892
  1. /**************************************************************
  2. AsyncWiFiManager is a library for the ESP8266/Arduino platform
  3. (https://github.com/esp8266/Arduino) to enable easy
  4. configuration and reconfiguration of WiFi credentials using a Captive Portal
  5. inspired by:
  6. http://www.esp8266.com/viewtopic.php?f=29&t=2520
  7. https://github.com/chriscook8/esp-arduino-apboot
  8. https://github.com/esp8266/Arduino/tree/esp8266/hardware/esp8266com/esp8266/libraries/DNSServer/examples/CaptivePortalAdvanced
  9. Built by AlexT https://github.com/tzapu
  10. Licensed under MIT license
  11. **************************************************************/
  12. #include "ESPAsyncWiFiManager.h"
  13. AsyncWiFiManagerParameter::AsyncWiFiManagerParameter(const char *custom) {
  14. _id = NULL;
  15. _placeholder = NULL;
  16. _length = 0;
  17. _value = NULL;
  18. _customHTML = custom;
  19. }
  20. AsyncWiFiManagerParameter::AsyncWiFiManagerParameter(const char *id, const char *placeholder, const char *defaultValue, int length) {
  21. init(id, placeholder, defaultValue, length, "");
  22. }
  23. AsyncWiFiManagerParameter::AsyncWiFiManagerParameter(const char *id, const char *placeholder, const char *defaultValue, int length, const char *custom) {
  24. init(id, placeholder, defaultValue, length, custom);
  25. }
  26. void AsyncWiFiManagerParameter::init(const char *id, const char *placeholder, const char *defaultValue, int length, const char *custom) {
  27. _id = id;
  28. _placeholder = placeholder;
  29. _length = length;
  30. _value = new char[length + 1];
  31. for (int i = 0; i < length; i++) {
  32. _value[i] = 0;
  33. }
  34. if (defaultValue != NULL) {
  35. strncpy(_value, defaultValue, length);
  36. }
  37. _customHTML = custom;
  38. }
  39. const char* AsyncWiFiManagerParameter::getValue() {
  40. return _value;
  41. }
  42. const char* AsyncWiFiManagerParameter::getID() {
  43. return _id;
  44. }
  45. const char* AsyncWiFiManagerParameter::getPlaceholder() {
  46. return _placeholder;
  47. }
  48. int AsyncWiFiManagerParameter::getValueLength() {
  49. return _length;
  50. }
  51. const char* AsyncWiFiManagerParameter::getCustomHTML() {
  52. return _customHTML;
  53. }
  54. AsyncWiFiManager::AsyncWiFiManager(AsyncWebServer *server, DNSServer *dns) :server(server), dnsServer(dns) {
  55. wifiSSIDs = NULL;
  56. wifiSSIDscan=true;
  57. _modeless=false;
  58. shouldscan=true;
  59. }
  60. void AsyncWiFiManager::addParameter(AsyncWiFiManagerParameter *p) {
  61. _params[_paramsCount] = p;
  62. _paramsCount++;
  63. DEBUG_WM("Adding parameter");
  64. DEBUG_WM(p->getID());
  65. }
  66. void AsyncWiFiManager::setupConfigPortal() {
  67. // dnsServer.reset(new DNSServer());
  68. // server.reset(new ESP8266WebServer(80));
  69. DEBUG_WM(F(""));
  70. _configPortalStart = millis();
  71. DEBUG_WM(F("Configuring access point... "));
  72. DEBUG_WM(_apName);
  73. if (_apPassword != NULL) {
  74. if (strlen(_apPassword) < 8 || strlen(_apPassword) > 63) {
  75. // fail passphrase to short or long!
  76. DEBUG_WM(F("Invalid AccessPoint password. Ignoring"));
  77. _apPassword = NULL;
  78. }
  79. DEBUG_WM(_apPassword);
  80. }
  81. //optional soft ip config
  82. if (_ap_static_ip) {
  83. DEBUG_WM(F("Custom AP IP/GW/Subnet"));
  84. WiFi.softAPConfig(_ap_static_ip, _ap_static_gw, _ap_static_sn);
  85. }
  86. if (_apPassword != NULL) {
  87. WiFi.softAP(_apName, _apPassword);//password option
  88. } else {
  89. WiFi.softAP(_apName);
  90. }
  91. delay(500); // Without delay I've seen the IP address blank
  92. DEBUG_WM(F("AP IP address: "));
  93. DEBUG_WM(WiFi.softAPIP());
  94. /* Setup the DNS server redirecting all the domains to the apIP */
  95. dnsServer->setErrorReplyCode(DNSReplyCode::NoError);
  96. dnsServer->start(DNS_PORT, "*", WiFi.softAPIP());
  97. /* Setup web pages: root, wifi config pages, SO captive portal detectors and not found. */
  98. server->on("/", std::bind(&AsyncWiFiManager::handleRoot, this,std::placeholders::_1)).setFilter(ON_AP_FILTER);
  99. server->on("/wifi", std::bind(&AsyncWiFiManager::handleWifi, this, std::placeholders::_1,true)).setFilter(ON_AP_FILTER);
  100. server->on("/0wifi", std::bind(&AsyncWiFiManager::handleWifi, this,std::placeholders::_1, false)).setFilter(ON_AP_FILTER);
  101. server->on("/wifisave", std::bind(&AsyncWiFiManager::handleWifiSave,this,std::placeholders::_1)).setFilter(ON_AP_FILTER);
  102. server->on("/i", std::bind(&AsyncWiFiManager::handleInfo,this, std::placeholders::_1)).setFilter(ON_AP_FILTER);
  103. server->on("/r", std::bind(&AsyncWiFiManager::handleReset, this,std::placeholders::_1)).setFilter(ON_AP_FILTER);
  104. //server->on("/generate_204", std::bind(&AsyncWiFiManager::handle204, this)); //Android/Chrome OS captive portal check.
  105. server->on("/fwlink", std::bind(&AsyncWiFiManager::handleRoot, this,std::placeholders::_1)).setFilter(ON_AP_FILTER); //Microsoft captive portal. Maybe not needed. Might be handled by notFound handler.
  106. server->onNotFound (std::bind(&AsyncWiFiManager::handleNotFound,this,std::placeholders::_1));
  107. server->begin(); // Web server start
  108. DEBUG_WM(F("HTTP server started"));
  109. }
  110. boolean AsyncWiFiManager::autoConnect() {
  111. String ssid = "ESP" + String(ESP.getChipId());
  112. return autoConnect(ssid.c_str(), NULL);
  113. }
  114. boolean AsyncWiFiManager::autoConnect(char const *apName, char const *apPassword) {
  115. DEBUG_WM(F(""));
  116. DEBUG_WM(F("AutoConnect"));
  117. // read eeprom for ssid and pass
  118. //String ssid = getSSID();
  119. //String pass = getPassword();
  120. // attempt to connect; should it fail, fall back to AP
  121. WiFi.mode(WIFI_STA);
  122. if (connectWifi("", "") == WL_CONNECTED) {
  123. DEBUG_WM(F("IP Address:"));
  124. DEBUG_WM(WiFi.localIP());
  125. //connected
  126. return true;
  127. }
  128. return startConfigPortal(apName, apPassword);
  129. }
  130. void AsyncWiFiManager::scan()
  131. {
  132. if (!shouldscan) return;
  133. if (wifiSSIDscan)
  134. {
  135. delay(100);
  136. }
  137. if (wifiSSIDscan)
  138. {
  139. int n = WiFi.scanNetworks();
  140. DEBUG_WM(F("Scan done"));
  141. if (n == 0) {
  142. DEBUG_WM(F("No networks found"));
  143. // page += F("No networks found. Refresh to scan again.");
  144. } else {
  145. if (wifiSSIDscan)
  146. {
  147. /* WE SHOULD MOVE THIS IN PLACE ATOMICALLY */
  148. if (wifiSSIDs) delete [] wifiSSIDs;
  149. wifiSSIDs = new WiFiResult[n];
  150. wifiSSIDCount = n;
  151. if (n>0)
  152. shouldscan=false;
  153. for (int i=0;i<n;i++)
  154. {
  155. wifiSSIDs[i].duplicate=false;
  156. bool res=WiFi.getNetworkInfo(i, wifiSSIDs[i].SSID, wifiSSIDs[i].encryptionType, wifiSSIDs[i].RSSI, wifiSSIDs[i].BSSID, wifiSSIDs[i].channel, wifiSSIDs[i].isHidden);
  157. }
  158. // RSSI SORT
  159. // old sort
  160. for (int i = 0; i < n; i++) {
  161. for (int j = i + 1; j < n; j++) {
  162. if (wifiSSIDs[j].RSSI > wifiSSIDs[i].RSSI) {
  163. std::swap(wifiSSIDs[i], wifiSSIDs[j]);
  164. }
  165. }
  166. }
  167. // remove duplicates ( must be RSSI sorted )
  168. if (_removeDuplicateAPs) {
  169. String cssid;
  170. for (int i = 0; i < n; i++) {
  171. if (wifiSSIDs[i].duplicate == true) continue;
  172. cssid = wifiSSIDs[i].SSID;
  173. for (int j = i + 1; j < n; j++) {
  174. if (cssid == wifiSSIDs[j].SSID) {
  175. DEBUG_WM("DUP AP: " +wifiSSIDs[j].SSID);
  176. wifiSSIDs[j].duplicate=true; // set dup aps to NULL
  177. }
  178. }
  179. }
  180. }
  181. }
  182. }
  183. }
  184. }
  185. void AsyncWiFiManager::startConfigPortalModeless(char const *apName, char const *apPassword) {
  186. _modeless =true;
  187. //setup AP
  188. WiFi.mode(WIFI_AP_STA);
  189. DEBUG_WM("SET AP STA");
  190. // try to connect
  191. if (connectWifi("", "") == WL_CONNECTED) {
  192. DEBUG_WM(F("IP Address:"));
  193. DEBUG_WM(WiFi.localIP());
  194. //connected
  195. }
  196. _apName = apName;
  197. _apPassword = apPassword;
  198. //notify we entered AP mode
  199. if ( _apcallback != NULL) {
  200. _apcallback(this);
  201. }
  202. connect = false;
  203. setupConfigPortal();
  204. int scannow= -1 ;
  205. }
  206. void AsyncWiFiManager::loop(){
  207. dnsServer->processNextRequest();
  208. if (_modeless)
  209. {
  210. if ( millis() > scannow + 60000)
  211. {
  212. DEBUG_WM(F("About to scan()"));
  213. scan();
  214. scannow= millis() ;
  215. }
  216. if (connect) {
  217. connect = false;
  218. //delay(2000);
  219. DEBUG_WM(F("Connecting to new AP"));
  220. // using user-provided _ssid, _pass in place of system-stored ssid and pass
  221. if (connectWifi(_ssid, _pass) != WL_CONNECTED) {
  222. DEBUG_WM(F("Failed to connect."));
  223. } else {
  224. //connected
  225. // alanswx - should we have a config to decide if we should shut down AP?
  226. // WiFi.mode(WIFI_STA);
  227. //notify that configuration has changed and any optional parameters should be saved
  228. if ( _savecallback != NULL) {
  229. //todo: check if any custom parameters actually exist, and check if they really changed maybe
  230. _savecallback();
  231. }
  232. return;
  233. }
  234. if (_shouldBreakAfterConfig) {
  235. //flag set to exit after config after trying to connect
  236. //notify that configuration has changed and any optional parameters should be saved
  237. if ( _savecallback != NULL) {
  238. //todo: check if any custom parameters actually exist, and check if they really changed maybe
  239. _savecallback();
  240. }
  241. return;
  242. }
  243. }
  244. }
  245. }
  246. boolean AsyncWiFiManager::startConfigPortal(char const *apName, char const *apPassword) {
  247. //setup AP
  248. WiFi.mode(WIFI_AP_STA);
  249. DEBUG_WM("SET AP STA");
  250. _apName = apName;
  251. _apPassword = apPassword;
  252. //notify we entered AP mode
  253. if ( _apcallback != NULL) {
  254. _apcallback(this);
  255. }
  256. connect = false;
  257. setupConfigPortal();
  258. int scannow= -1 ;
  259. while (_configPortalTimeout == 0 || millis() < _configPortalStart + _configPortalTimeout) {
  260. //DNS
  261. dnsServer->processNextRequest();
  262. //
  263. // we should do a scan every so often here
  264. //
  265. if ( millis() > scannow + 10000)
  266. {
  267. DEBUG_WM(F("About to scan()"));
  268. scan();
  269. scannow= millis() ;
  270. }
  271. if (connect) {
  272. connect = false;
  273. delay(2000);
  274. DEBUG_WM(F("Connecting to new AP"));
  275. // using user-provided _ssid, _pass in place of system-stored ssid and pass
  276. if (connectWifi(_ssid, _pass) != WL_CONNECTED) {
  277. DEBUG_WM(F("Failed to connect."));
  278. } else {
  279. //connected
  280. WiFi.mode(WIFI_STA);
  281. //notify that configuration has changed and any optional parameters should be saved
  282. if ( _savecallback != NULL) {
  283. //todo: check if any custom parameters actually exist, and check if they really changed maybe
  284. _savecallback();
  285. }
  286. break;
  287. }
  288. if (_shouldBreakAfterConfig) {
  289. //flag set to exit after config after trying to connect
  290. //notify that configuration has changed and any optional parameters should be saved
  291. if ( _savecallback != NULL) {
  292. //todo: check if any custom parameters actually exist, and check if they really changed maybe
  293. _savecallback();
  294. }
  295. break;
  296. }
  297. }
  298. yield();
  299. }
  300. // server.reset();
  301. // dnsServer.reset();
  302. return WiFi.status() == WL_CONNECTED;
  303. }
  304. int AsyncWiFiManager::connectWifi(String ssid, String pass) {
  305. DEBUG_WM(F("Connecting as wifi client..."));
  306. // check if we've got static_ip settings, if we do, use those.
  307. if (_sta_static_ip) {
  308. DEBUG_WM(F("Custom STA IP/GW/Subnet"));
  309. WiFi.config(_sta_static_ip, _sta_static_gw, _sta_static_sn);
  310. DEBUG_WM(WiFi.localIP());
  311. }
  312. //fix for auto connect racing issue
  313. if (WiFi.status() == WL_CONNECTED) {
  314. DEBUG_WM("Already connected. Bailing out.");
  315. return WL_CONNECTED;
  316. }
  317. //check if we have ssid and pass and force those, if not, try with last saved values
  318. if (ssid != "") {
  319. WiFi.begin(ssid.c_str(), pass.c_str());
  320. } else {
  321. if (WiFi.SSID()) {
  322. DEBUG_WM("Using last saved values, should be faster");
  323. //trying to fix connection in progress hanging
  324. ETS_UART_INTR_DISABLE();
  325. wifi_station_disconnect();
  326. ETS_UART_INTR_ENABLE();
  327. WiFi.begin();
  328. } else {
  329. DEBUG_WM("No saved credentials");
  330. }
  331. }
  332. int connRes = waitForConnectResult();
  333. DEBUG_WM ("Connection result: ");
  334. DEBUG_WM ( connRes );
  335. //not connected, WPS enabled, no pass - first attempt
  336. if (_tryWPS && connRes != WL_CONNECTED && pass == "") {
  337. startWPS();
  338. //should be connected at the end of WPS
  339. connRes = waitForConnectResult();
  340. }
  341. return connRes;
  342. }
  343. uint8_t AsyncWiFiManager::waitForConnectResult() {
  344. if (_connectTimeout == 0) {
  345. return WiFi.waitForConnectResult();
  346. } else {
  347. DEBUG_WM (F("Waiting for connection result with time out"));
  348. unsigned long start = millis();
  349. boolean keepConnecting = true;
  350. uint8_t status;
  351. while (keepConnecting) {
  352. status = WiFi.status();
  353. if (millis() > start + _connectTimeout) {
  354. keepConnecting = false;
  355. DEBUG_WM (F("Connection timed out"));
  356. }
  357. if (status == WL_CONNECTED || status == WL_CONNECT_FAILED) {
  358. keepConnecting = false;
  359. }
  360. delay(100);
  361. }
  362. return status;
  363. }
  364. }
  365. void AsyncWiFiManager::startWPS() {
  366. DEBUG_WM("START WPS");
  367. WiFi.beginWPSConfig();
  368. DEBUG_WM("END WPS");
  369. }
  370. /*
  371. String AsyncWiFiManager::getSSID() {
  372. if (_ssid == "") {
  373. DEBUG_WM(F("Reading SSID"));
  374. _ssid = WiFi.SSID();
  375. DEBUG_WM(F("SSID: "));
  376. DEBUG_WM(_ssid);
  377. }
  378. return _ssid;
  379. }
  380. String AsyncWiFiManager::getPassword() {
  381. if (_pass == "") {
  382. DEBUG_WM(F("Reading Password"));
  383. _pass = WiFi.psk();
  384. DEBUG_WM("Password: " + _pass);
  385. //DEBUG_WM(_pass);
  386. }
  387. return _pass;
  388. }
  389. */
  390. String AsyncWiFiManager::getConfigPortalSSID() {
  391. return _apName;
  392. }
  393. void AsyncWiFiManager::resetSettings() {
  394. DEBUG_WM(F("settings invalidated"));
  395. DEBUG_WM(F("THIS MAY CAUSE AP NOT TO START UP PROPERLY. YOU NEED TO COMMENT IT OUT AFTER ERASING THE DATA."));
  396. WiFi.disconnect(true);
  397. //delay(200);
  398. }
  399. void AsyncWiFiManager::setTimeout(unsigned long seconds) {
  400. setConfigPortalTimeout(seconds);
  401. }
  402. void AsyncWiFiManager::setConfigPortalTimeout(unsigned long seconds) {
  403. _configPortalTimeout = seconds * 1000;
  404. }
  405. void AsyncWiFiManager::setConnectTimeout(unsigned long seconds) {
  406. _connectTimeout = seconds * 1000;
  407. }
  408. void AsyncWiFiManager::setDebugOutput(boolean debug) {
  409. _debug = debug;
  410. }
  411. void AsyncWiFiManager::setAPStaticIPConfig(IPAddress ip, IPAddress gw, IPAddress sn) {
  412. _ap_static_ip = ip;
  413. _ap_static_gw = gw;
  414. _ap_static_sn = sn;
  415. }
  416. void AsyncWiFiManager::setSTAStaticIPConfig(IPAddress ip, IPAddress gw, IPAddress sn) {
  417. _sta_static_ip = ip;
  418. _sta_static_gw = gw;
  419. _sta_static_sn = sn;
  420. }
  421. void AsyncWiFiManager::setMinimumSignalQuality(int quality) {
  422. _minimumQuality = quality;
  423. }
  424. void AsyncWiFiManager::setBreakAfterConfig(boolean shouldBreak) {
  425. _shouldBreakAfterConfig = shouldBreak;
  426. }
  427. /** Handle root or redirect to captive portal */
  428. void AsyncWiFiManager::handleRoot(AsyncWebServerRequest *request) {
  429. // AJS - maybe we should set a scan when we get to the root???
  430. // and only scan on demand? timer + on demand? plus a link to make it happen?
  431. shouldscan=true;
  432. DEBUG_WM(F("Handle root"));
  433. if (captivePortal(request)) { // If caprive portal redirect instead of displaying the page.
  434. return;
  435. }
  436. String page = FPSTR(WFM_HTTP_HEAD);
  437. page.replace("{v}", "Options");
  438. page += FPSTR(HTTP_SCRIPT);
  439. page += FPSTR(HTTP_STYLE);
  440. page += _customHeadElement;
  441. page += FPSTR(HTTP_HEAD_END);
  442. page += "<h1>";
  443. page += _apName;
  444. page += "</h1>";
  445. page += F("<h3>AsyncWiFiManager</h3>");
  446. page += FPSTR(HTTP_PORTAL_OPTIONS);
  447. page += FPSTR(HTTP_END);
  448. request->send(200, "text/html", page);
  449. }
  450. /** Wifi config page handler */
  451. void AsyncWiFiManager::handleWifi(AsyncWebServerRequest *request,boolean scan) {
  452. shouldscan=true;
  453. String page = FPSTR(WFM_HTTP_HEAD);
  454. page.replace("{v}", "Config ESP");
  455. page += FPSTR(HTTP_SCRIPT);
  456. page += FPSTR(HTTP_STYLE);
  457. page += _customHeadElement;
  458. page += FPSTR(HTTP_HEAD_END);
  459. if (scan) {
  460. wifiSSIDscan=false;
  461. int n = wifiSSIDCount;
  462. DEBUG_WM(F("Scan done"));
  463. if (n == 0) {
  464. DEBUG_WM(F("No networks found"));
  465. page += F("No networks found. Refresh to scan again.");
  466. } else {
  467. //display networks in page
  468. for (int i = 0; i < n; i++) {
  469. if (wifiSSIDs[i].duplicate == true) continue; // skip dups
  470. DEBUG_WM(wifiSSIDs[i].SSID);
  471. DEBUG_WM(wifiSSIDs[i].RSSI);
  472. int quality = getRSSIasQuality(wifiSSIDs[i].RSSI);
  473. if (_minimumQuality == -1 || _minimumQuality < quality) {
  474. String item = FPSTR(HTTP_ITEM);
  475. String rssiQ;
  476. rssiQ += quality;
  477. item.replace("{v}", wifiSSIDs[i].SSID);
  478. item.replace("{r}", rssiQ);
  479. if (wifiSSIDs[i].encryptionType != ENC_TYPE_NONE) {
  480. item.replace("{i}", "l");
  481. } else {
  482. item.replace("{i}", "");
  483. }
  484. //DEBUG_WM(item);
  485. page += item;
  486. delay(0);
  487. } else {
  488. DEBUG_WM(F("Skipping due to quality"));
  489. }
  490. }
  491. page += "<br/>";
  492. }
  493. }
  494. wifiSSIDscan=true;
  495. page += FPSTR(HTTP_FORM_START);
  496. char parLength[2];
  497. // add the extra parameters to the form
  498. for (int i = 0; i < _paramsCount; i++) {
  499. if (_params[i] == NULL) {
  500. break;
  501. }
  502. String pitem = FPSTR(HTTP_FORM_PARAM);
  503. if (_params[i]->getID() != NULL) {
  504. pitem.replace("{i}", _params[i]->getID());
  505. pitem.replace("{n}", _params[i]->getID());
  506. pitem.replace("{p}", _params[i]->getPlaceholder());
  507. snprintf(parLength, 2, "%d", _params[i]->getValueLength());
  508. pitem.replace("{l}", parLength);
  509. pitem.replace("{v}", _params[i]->getValue());
  510. pitem.replace("{c}", _params[i]->getCustomHTML());
  511. } else {
  512. pitem = _params[i]->getCustomHTML();
  513. }
  514. page += pitem;
  515. }
  516. if (_params[0] != NULL) {
  517. page += "<br/>";
  518. }
  519. if (_sta_static_ip) {
  520. String item = FPSTR(HTTP_FORM_PARAM);
  521. item.replace("{i}", "ip");
  522. item.replace("{n}", "ip");
  523. item.replace("{p}", "Static IP");
  524. item.replace("{l}", "15");
  525. item.replace("{v}", _sta_static_ip.toString());
  526. page += item;
  527. item = FPSTR(HTTP_FORM_PARAM);
  528. item.replace("{i}", "gw");
  529. item.replace("{n}", "gw");
  530. item.replace("{p}", "Static Gateway");
  531. item.replace("{l}", "15");
  532. item.replace("{v}", _sta_static_gw.toString());
  533. page += item;
  534. item = FPSTR(HTTP_FORM_PARAM);
  535. item.replace("{i}", "sn");
  536. item.replace("{n}", "sn");
  537. item.replace("{p}", "Subnet");
  538. item.replace("{l}", "15");
  539. item.replace("{v}", _sta_static_sn.toString());
  540. page += item;
  541. page += "<br/>";
  542. }
  543. page += FPSTR(HTTP_FORM_END);
  544. page += FPSTR(HTTP_SCAN_LINK);
  545. page += FPSTR(HTTP_END);
  546. request->send(200, "text/html", page);
  547. DEBUG_WM(F("Sent config page"));
  548. }
  549. /** Handle the WLAN save form and redirect to WLAN config page again */
  550. void AsyncWiFiManager::handleWifiSave(AsyncWebServerRequest *request) {
  551. DEBUG_WM(F("WiFi save"));
  552. //SAVE/connect here
  553. _ssid = request->arg("s").c_str();
  554. _pass = request->arg("p").c_str();
  555. //parameters
  556. for (int i = 0; i < _paramsCount; i++) {
  557. if (_params[i] == NULL) {
  558. break;
  559. }
  560. //read parameter
  561. String value = request->arg(_params[i]->getID()).c_str();
  562. //store it in array
  563. value.toCharArray(_params[i]->_value, _params[i]->_length);
  564. DEBUG_WM(F("Parameter"));
  565. DEBUG_WM(_params[i]->getID());
  566. DEBUG_WM(value);
  567. }
  568. if (request->hasArg("ip")) {
  569. DEBUG_WM(F("static ip"));
  570. DEBUG_WM(request->arg("ip"));
  571. //_sta_static_ip.fromString(request->arg("ip"));
  572. String ip = request->arg("ip");
  573. optionalIPFromString(&_sta_static_ip, ip.c_str());
  574. }
  575. if (request->hasArg("gw")) {
  576. DEBUG_WM(F("static gateway"));
  577. DEBUG_WM(request->arg("gw"));
  578. String gw = request->arg("gw");
  579. optionalIPFromString(&_sta_static_gw, gw.c_str());
  580. }
  581. if (request->hasArg("sn")) {
  582. DEBUG_WM(F("static netmask"));
  583. DEBUG_WM(request->arg("sn"));
  584. String sn = request->arg("sn");
  585. optionalIPFromString(&_sta_static_sn, sn.c_str());
  586. }
  587. String page = FPSTR(WFM_HTTP_HEAD);
  588. page.replace("{v}", "Credentials Saved");
  589. page += FPSTR(HTTP_SCRIPT);
  590. page += FPSTR(HTTP_STYLE);
  591. page += _customHeadElement;
  592. page += FPSTR(HTTP_HEAD_END);
  593. page += FPSTR(HTTP_SAVED);
  594. page += FPSTR(HTTP_END);
  595. request->send(200, "text/html", page);
  596. DEBUG_WM(F("Sent wifi save page"));
  597. connect = true; //signal ready to connect/reset
  598. }
  599. /** Handle the info page */
  600. void AsyncWiFiManager::handleInfo(AsyncWebServerRequest *request) {
  601. DEBUG_WM(F("Info"));
  602. String page = FPSTR(WFM_HTTP_HEAD);
  603. page.replace("{v}", "Info");
  604. page += FPSTR(HTTP_SCRIPT);
  605. page += FPSTR(HTTP_STYLE);
  606. page += _customHeadElement;
  607. page += FPSTR(HTTP_HEAD_END);
  608. page += F("<dl>");
  609. page += F("<dt>Chip ID</dt><dd>");
  610. page += ESP.getChipId();
  611. page += F("</dd>");
  612. page += F("<dt>Flash Chip ID</dt><dd>");
  613. page += ESP.getFlashChipId();
  614. page += F("</dd>");
  615. page += F("<dt>IDE Flash Size</dt><dd>");
  616. page += ESP.getFlashChipSize();
  617. page += F(" bytes</dd>");
  618. page += F("<dt>Real Flash Size</dt><dd>");
  619. page += ESP.getFlashChipRealSize();
  620. page += F(" bytes</dd>");
  621. page += F("<dt>Soft AP IP</dt><dd>");
  622. page += WiFi.softAPIP().toString();
  623. page += F("</dd>");
  624. page += F("<dt>Soft AP MAC</dt><dd>");
  625. page += WiFi.softAPmacAddress();
  626. page += F("</dd>");
  627. page += F("<dt>Station MAC</dt><dd>");
  628. page += WiFi.macAddress();
  629. page += F("</dd>");
  630. page += F("</dl>");
  631. page += FPSTR(HTTP_END);
  632. request->send(200, "text/html", page);
  633. DEBUG_WM(F("Sent info page"));
  634. }
  635. /** Handle the reset page */
  636. void AsyncWiFiManager::handleReset(AsyncWebServerRequest *request) {
  637. DEBUG_WM(F("Reset"));
  638. String page = FPSTR(WFM_HTTP_HEAD);
  639. page.replace("{v}", "Info");
  640. page += FPSTR(HTTP_SCRIPT);
  641. page += FPSTR(HTTP_STYLE);
  642. page += _customHeadElement;
  643. page += FPSTR(HTTP_HEAD_END);
  644. page += F("Module will reset in a few seconds.");
  645. page += FPSTR(HTTP_END);
  646. request->send(200, "text/html", page);
  647. DEBUG_WM(F("Sent reset page"));
  648. delay(5000);
  649. ESP.reset();
  650. delay(2000);
  651. }
  652. //removed as mentioned here https://github.com/tzapu/AsyncWiFiManager/issues/114
  653. /*void AsyncWiFiManager::handle204(AsyncWebServerRequest *request) {
  654. DEBUG_WM(F("204 No Response"));
  655. request->sendHeader("Cache-Control", "no-cache, no-store, must-revalidate");
  656. request->sendHeader("Pragma", "no-cache");
  657. request->sendHeader("Expires", "-1");
  658. request->send ( 204, "text/plain", "");
  659. }*/
  660. void AsyncWiFiManager::handleNotFound(AsyncWebServerRequest *request) {
  661. if (captivePortal(request)) { // If captive portal redirect instead of displaying the error page.
  662. return;
  663. }
  664. String message = "File Not Found\n\n";
  665. message += "URI: ";
  666. message += request->url();
  667. message += "\nMethod: ";
  668. message += ( request->method() == HTTP_GET ) ? "GET" : "POST";
  669. message += "\nArguments: ";
  670. message += request->args();
  671. message += "\n";
  672. for ( uint8_t i = 0; i < request->args(); i++ ) {
  673. message += " " + request->argName ( i ) + ": " + request->arg ( i ) + "\n";
  674. }
  675. AsyncWebServerResponse *response = request->beginResponse(404,"text/plain",message);
  676. response->addHeader("Cache-Control", "no-cache, no-store, must-revalidate");
  677. response->addHeader("Pragma", "no-cache");
  678. response->addHeader("Expires", "-1");
  679. request->send (response );
  680. }
  681. /** Redirect to captive portal if we got a request for another domain. Return true in that case so the page handler do not try to handle the request again. */
  682. boolean AsyncWiFiManager::captivePortal(AsyncWebServerRequest *request) {
  683. if (!isIp(request->host()) ) {
  684. DEBUG_WM(F("Request redirected to captive portal"));
  685. AsyncWebServerResponse *response = request->beginResponse(302,"text/plain","");
  686. response->addHeader("Location", String("http://") + toStringIp(request->client()->localIP()));
  687. request->send ( response);
  688. return true;
  689. }
  690. return false;
  691. }
  692. //start up config portal callback
  693. void AsyncWiFiManager::setAPCallback( void (*func)(AsyncWiFiManager* myAsyncWiFiManager) ) {
  694. _apcallback = func;
  695. }
  696. //start up save config callback
  697. void AsyncWiFiManager::setSaveConfigCallback( void (*func)(void) ) {
  698. _savecallback = func;
  699. }
  700. //sets a custom element to add to head, like a new style tag
  701. void AsyncWiFiManager::setCustomHeadElement(const char* element) {
  702. _customHeadElement = element;
  703. }
  704. //if this is true, remove duplicated Access Points - defaut true
  705. void AsyncWiFiManager::setRemoveDuplicateAPs(boolean removeDuplicates) {
  706. _removeDuplicateAPs = removeDuplicates;
  707. }
  708. template <typename Generic>
  709. void AsyncWiFiManager::DEBUG_WM(Generic text) {
  710. if (_debug) {
  711. Serial.print("*WM: ");
  712. Serial.println(text);
  713. }
  714. }
  715. int AsyncWiFiManager::getRSSIasQuality(int RSSI) {
  716. int quality = 0;
  717. if (RSSI <= -100) {
  718. quality = 0;
  719. } else if (RSSI >= -50) {
  720. quality = 100;
  721. } else {
  722. quality = 2 * (RSSI + 100);
  723. }
  724. return quality;
  725. }
  726. /** Is this an IP? */
  727. boolean AsyncWiFiManager::isIp(String str) {
  728. for (int i = 0; i < str.length(); i++) {
  729. int c = str.charAt(i);
  730. if (c != '.' && (c < '0' || c > '9')) {
  731. return false;
  732. }
  733. }
  734. return true;
  735. }
  736. /** IP to String? */
  737. String AsyncWiFiManager::toStringIp(IPAddress ip) {
  738. String res = "";
  739. for (int i = 0; i < 3; i++) {
  740. res += String((ip >> (8 * i)) & 0xFF) + ".";
  741. }
  742. res += String(((ip >> 8 * 3)) & 0xFF);
  743. return res;
  744. }