ESPAsyncWiFiManager.cpp 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894
  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. 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. 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. scannow= -1 ;
  433. DEBUG_WM(F("Handle root"));
  434. if (captivePortal(request)) { // If caprive portal redirect instead of displaying the page.
  435. return;
  436. }
  437. String page = FPSTR(WFM_HTTP_HEAD);
  438. page.replace("{v}", "Options");
  439. page += FPSTR(HTTP_SCRIPT);
  440. page += FPSTR(HTTP_STYLE);
  441. page += _customHeadElement;
  442. page += FPSTR(HTTP_HEAD_END);
  443. page += "<h1>";
  444. page += _apName;
  445. page += "</h1>";
  446. page += F("<h3>AsyncWiFiManager</h3>");
  447. page += FPSTR(HTTP_PORTAL_OPTIONS);
  448. page += FPSTR(HTTP_END);
  449. request->send(200, "text/html", page);
  450. }
  451. /** Wifi config page handler */
  452. void AsyncWiFiManager::handleWifi(AsyncWebServerRequest *request,boolean scan) {
  453. shouldscan=true;
  454. scannow= -1 ;
  455. String page = FPSTR(WFM_HTTP_HEAD);
  456. page.replace("{v}", "Config ESP");
  457. page += FPSTR(HTTP_SCRIPT);
  458. page += FPSTR(HTTP_STYLE);
  459. page += _customHeadElement;
  460. page += FPSTR(HTTP_HEAD_END);
  461. if (scan) {
  462. wifiSSIDscan=false;
  463. int n = wifiSSIDCount;
  464. DEBUG_WM(F("Scan done"));
  465. if (n == 0) {
  466. DEBUG_WM(F("No networks found"));
  467. page += F("No networks found. Refresh to scan again.");
  468. } else {
  469. //display networks in page
  470. for (int i = 0; i < n; i++) {
  471. if (wifiSSIDs[i].duplicate == true) continue; // skip dups
  472. DEBUG_WM(wifiSSIDs[i].SSID);
  473. DEBUG_WM(wifiSSIDs[i].RSSI);
  474. int quality = getRSSIasQuality(wifiSSIDs[i].RSSI);
  475. if (_minimumQuality == -1 || _minimumQuality < quality) {
  476. String item = FPSTR(HTTP_ITEM);
  477. String rssiQ;
  478. rssiQ += quality;
  479. item.replace("{v}", wifiSSIDs[i].SSID);
  480. item.replace("{r}", rssiQ);
  481. if (wifiSSIDs[i].encryptionType != ENC_TYPE_NONE) {
  482. item.replace("{i}", "l");
  483. } else {
  484. item.replace("{i}", "");
  485. }
  486. //DEBUG_WM(item);
  487. page += item;
  488. delay(0);
  489. } else {
  490. DEBUG_WM(F("Skipping due to quality"));
  491. }
  492. }
  493. page += "<br/>";
  494. }
  495. }
  496. wifiSSIDscan=true;
  497. page += FPSTR(HTTP_FORM_START);
  498. char parLength[2];
  499. // add the extra parameters to the form
  500. for (int i = 0; i < _paramsCount; i++) {
  501. if (_params[i] == NULL) {
  502. break;
  503. }
  504. String pitem = FPSTR(HTTP_FORM_PARAM);
  505. if (_params[i]->getID() != NULL) {
  506. pitem.replace("{i}", _params[i]->getID());
  507. pitem.replace("{n}", _params[i]->getID());
  508. pitem.replace("{p}", _params[i]->getPlaceholder());
  509. snprintf(parLength, 2, "%d", _params[i]->getValueLength());
  510. pitem.replace("{l}", parLength);
  511. pitem.replace("{v}", _params[i]->getValue());
  512. pitem.replace("{c}", _params[i]->getCustomHTML());
  513. } else {
  514. pitem = _params[i]->getCustomHTML();
  515. }
  516. page += pitem;
  517. }
  518. if (_params[0] != NULL) {
  519. page += "<br/>";
  520. }
  521. if (_sta_static_ip) {
  522. String item = FPSTR(HTTP_FORM_PARAM);
  523. item.replace("{i}", "ip");
  524. item.replace("{n}", "ip");
  525. item.replace("{p}", "Static IP");
  526. item.replace("{l}", "15");
  527. item.replace("{v}", _sta_static_ip.toString());
  528. page += item;
  529. item = FPSTR(HTTP_FORM_PARAM);
  530. item.replace("{i}", "gw");
  531. item.replace("{n}", "gw");
  532. item.replace("{p}", "Static Gateway");
  533. item.replace("{l}", "15");
  534. item.replace("{v}", _sta_static_gw.toString());
  535. page += item;
  536. item = FPSTR(HTTP_FORM_PARAM);
  537. item.replace("{i}", "sn");
  538. item.replace("{n}", "sn");
  539. item.replace("{p}", "Subnet");
  540. item.replace("{l}", "15");
  541. item.replace("{v}", _sta_static_sn.toString());
  542. page += item;
  543. page += "<br/>";
  544. }
  545. page += FPSTR(HTTP_FORM_END);
  546. page += FPSTR(HTTP_SCAN_LINK);
  547. page += FPSTR(HTTP_END);
  548. request->send(200, "text/html", page);
  549. DEBUG_WM(F("Sent config page"));
  550. }
  551. /** Handle the WLAN save form and redirect to WLAN config page again */
  552. void AsyncWiFiManager::handleWifiSave(AsyncWebServerRequest *request) {
  553. DEBUG_WM(F("WiFi save"));
  554. //SAVE/connect here
  555. _ssid = request->arg("s").c_str();
  556. _pass = request->arg("p").c_str();
  557. //parameters
  558. for (int i = 0; i < _paramsCount; i++) {
  559. if (_params[i] == NULL) {
  560. break;
  561. }
  562. //read parameter
  563. String value = request->arg(_params[i]->getID()).c_str();
  564. //store it in array
  565. value.toCharArray(_params[i]->_value, _params[i]->_length);
  566. DEBUG_WM(F("Parameter"));
  567. DEBUG_WM(_params[i]->getID());
  568. DEBUG_WM(value);
  569. }
  570. if (request->hasArg("ip")) {
  571. DEBUG_WM(F("static ip"));
  572. DEBUG_WM(request->arg("ip"));
  573. //_sta_static_ip.fromString(request->arg("ip"));
  574. String ip = request->arg("ip");
  575. optionalIPFromString(&_sta_static_ip, ip.c_str());
  576. }
  577. if (request->hasArg("gw")) {
  578. DEBUG_WM(F("static gateway"));
  579. DEBUG_WM(request->arg("gw"));
  580. String gw = request->arg("gw");
  581. optionalIPFromString(&_sta_static_gw, gw.c_str());
  582. }
  583. if (request->hasArg("sn")) {
  584. DEBUG_WM(F("static netmask"));
  585. DEBUG_WM(request->arg("sn"));
  586. String sn = request->arg("sn");
  587. optionalIPFromString(&_sta_static_sn, sn.c_str());
  588. }
  589. String page = FPSTR(WFM_HTTP_HEAD);
  590. page.replace("{v}", "Credentials Saved");
  591. page += FPSTR(HTTP_SCRIPT);
  592. page += FPSTR(HTTP_STYLE);
  593. page += _customHeadElement;
  594. page += FPSTR(HTTP_HEAD_END);
  595. page += FPSTR(HTTP_SAVED);
  596. page += FPSTR(HTTP_END);
  597. request->send(200, "text/html", page);
  598. DEBUG_WM(F("Sent wifi save page"));
  599. connect = true; //signal ready to connect/reset
  600. }
  601. /** Handle the info page */
  602. void AsyncWiFiManager::handleInfo(AsyncWebServerRequest *request) {
  603. DEBUG_WM(F("Info"));
  604. String page = FPSTR(WFM_HTTP_HEAD);
  605. page.replace("{v}", "Info");
  606. page += FPSTR(HTTP_SCRIPT);
  607. page += FPSTR(HTTP_STYLE);
  608. page += _customHeadElement;
  609. page += FPSTR(HTTP_HEAD_END);
  610. page += F("<dl>");
  611. page += F("<dt>Chip ID</dt><dd>");
  612. page += ESP.getChipId();
  613. page += F("</dd>");
  614. page += F("<dt>Flash Chip ID</dt><dd>");
  615. page += ESP.getFlashChipId();
  616. page += F("</dd>");
  617. page += F("<dt>IDE Flash Size</dt><dd>");
  618. page += ESP.getFlashChipSize();
  619. page += F(" bytes</dd>");
  620. page += F("<dt>Real Flash Size</dt><dd>");
  621. page += ESP.getFlashChipRealSize();
  622. page += F(" bytes</dd>");
  623. page += F("<dt>Soft AP IP</dt><dd>");
  624. page += WiFi.softAPIP().toString();
  625. page += F("</dd>");
  626. page += F("<dt>Soft AP MAC</dt><dd>");
  627. page += WiFi.softAPmacAddress();
  628. page += F("</dd>");
  629. page += F("<dt>Station MAC</dt><dd>");
  630. page += WiFi.macAddress();
  631. page += F("</dd>");
  632. page += F("</dl>");
  633. page += FPSTR(HTTP_END);
  634. request->send(200, "text/html", page);
  635. DEBUG_WM(F("Sent info page"));
  636. }
  637. /** Handle the reset page */
  638. void AsyncWiFiManager::handleReset(AsyncWebServerRequest *request) {
  639. DEBUG_WM(F("Reset"));
  640. String page = FPSTR(WFM_HTTP_HEAD);
  641. page.replace("{v}", "Info");
  642. page += FPSTR(HTTP_SCRIPT);
  643. page += FPSTR(HTTP_STYLE);
  644. page += _customHeadElement;
  645. page += FPSTR(HTTP_HEAD_END);
  646. page += F("Module will reset in a few seconds.");
  647. page += FPSTR(HTTP_END);
  648. request->send(200, "text/html", page);
  649. DEBUG_WM(F("Sent reset page"));
  650. delay(5000);
  651. ESP.reset();
  652. delay(2000);
  653. }
  654. //removed as mentioned here https://github.com/tzapu/AsyncWiFiManager/issues/114
  655. /*void AsyncWiFiManager::handle204(AsyncWebServerRequest *request) {
  656. DEBUG_WM(F("204 No Response"));
  657. request->sendHeader("Cache-Control", "no-cache, no-store, must-revalidate");
  658. request->sendHeader("Pragma", "no-cache");
  659. request->sendHeader("Expires", "-1");
  660. request->send ( 204, "text/plain", "");
  661. }*/
  662. void AsyncWiFiManager::handleNotFound(AsyncWebServerRequest *request) {
  663. if (captivePortal(request)) { // If captive portal redirect instead of displaying the error page.
  664. return;
  665. }
  666. String message = "File Not Found\n\n";
  667. message += "URI: ";
  668. message += request->url();
  669. message += "\nMethod: ";
  670. message += ( request->method() == HTTP_GET ) ? "GET" : "POST";
  671. message += "\nArguments: ";
  672. message += request->args();
  673. message += "\n";
  674. for ( uint8_t i = 0; i < request->args(); i++ ) {
  675. message += " " + request->argName ( i ) + ": " + request->arg ( i ) + "\n";
  676. }
  677. AsyncWebServerResponse *response = request->beginResponse(404,"text/plain",message);
  678. response->addHeader("Cache-Control", "no-cache, no-store, must-revalidate");
  679. response->addHeader("Pragma", "no-cache");
  680. response->addHeader("Expires", "-1");
  681. request->send (response );
  682. }
  683. /** 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. */
  684. boolean AsyncWiFiManager::captivePortal(AsyncWebServerRequest *request) {
  685. if (!isIp(request->host()) ) {
  686. DEBUG_WM(F("Request redirected to captive portal"));
  687. AsyncWebServerResponse *response = request->beginResponse(302,"text/plain","");
  688. response->addHeader("Location", String("http://") + toStringIp(request->client()->localIP()));
  689. request->send ( response);
  690. return true;
  691. }
  692. return false;
  693. }
  694. //start up config portal callback
  695. void AsyncWiFiManager::setAPCallback( void (*func)(AsyncWiFiManager* myAsyncWiFiManager) ) {
  696. _apcallback = func;
  697. }
  698. //start up save config callback
  699. void AsyncWiFiManager::setSaveConfigCallback( void (*func)(void) ) {
  700. _savecallback = func;
  701. }
  702. //sets a custom element to add to head, like a new style tag
  703. void AsyncWiFiManager::setCustomHeadElement(const char* element) {
  704. _customHeadElement = element;
  705. }
  706. //if this is true, remove duplicated Access Points - defaut true
  707. void AsyncWiFiManager::setRemoveDuplicateAPs(boolean removeDuplicates) {
  708. _removeDuplicateAPs = removeDuplicates;
  709. }
  710. template <typename Generic>
  711. void AsyncWiFiManager::DEBUG_WM(Generic text) {
  712. if (_debug) {
  713. Serial.print("*WM: ");
  714. Serial.println(text);
  715. }
  716. }
  717. int AsyncWiFiManager::getRSSIasQuality(int RSSI) {
  718. int quality = 0;
  719. if (RSSI <= -100) {
  720. quality = 0;
  721. } else if (RSSI >= -50) {
  722. quality = 100;
  723. } else {
  724. quality = 2 * (RSSI + 100);
  725. }
  726. return quality;
  727. }
  728. /** Is this an IP? */
  729. boolean AsyncWiFiManager::isIp(String str) {
  730. for (int i = 0; i < str.length(); i++) {
  731. int c = str.charAt(i);
  732. if (c != '.' && (c < '0' || c > '9')) {
  733. return false;
  734. }
  735. }
  736. return true;
  737. }
  738. /** IP to String? */
  739. String AsyncWiFiManager::toStringIp(IPAddress ip) {
  740. String res = "";
  741. for (int i = 0; i < 3; i++) {
  742. res += String((ip >> (8 * i)) & 0xFF) + ".";
  743. }
  744. res += String(((ip >> 8 * 3)) & 0xFF);
  745. return res;
  746. }