ESPAsyncWiFiManager.cpp 25 KB

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