ESPAsyncWiFiManager.cpp 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895
  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. shouldscan=true; // since we are modal, we can scan every time
  269. scan();
  270. scannow= millis() ;
  271. }
  272. if (connect) {
  273. connect = false;
  274. delay(2000);
  275. DEBUG_WM(F("Connecting to new AP"));
  276. // using user-provided _ssid, _pass in place of system-stored ssid and pass
  277. if (connectWifi(_ssid, _pass) != WL_CONNECTED) {
  278. DEBUG_WM(F("Failed to connect."));
  279. } else {
  280. //connected
  281. WiFi.mode(WIFI_STA);
  282. //notify that configuration has changed and any optional parameters should be saved
  283. if ( _savecallback != NULL) {
  284. //todo: check if any custom parameters actually exist, and check if they really changed maybe
  285. _savecallback();
  286. }
  287. break;
  288. }
  289. if (_shouldBreakAfterConfig) {
  290. //flag set to exit after config after trying to connect
  291. //notify that configuration has changed and any optional parameters should be saved
  292. if ( _savecallback != NULL) {
  293. //todo: check if any custom parameters actually exist, and check if they really changed maybe
  294. _savecallback();
  295. }
  296. break;
  297. }
  298. }
  299. yield();
  300. }
  301. // server.reset();
  302. // dnsServer.reset();
  303. return WiFi.status() == WL_CONNECTED;
  304. }
  305. int AsyncWiFiManager::connectWifi(String ssid, String pass) {
  306. DEBUG_WM(F("Connecting as wifi client..."));
  307. // check if we've got static_ip settings, if we do, use those.
  308. if (_sta_static_ip) {
  309. DEBUG_WM(F("Custom STA IP/GW/Subnet"));
  310. WiFi.config(_sta_static_ip, _sta_static_gw, _sta_static_sn);
  311. DEBUG_WM(WiFi.localIP());
  312. }
  313. //fix for auto connect racing issue
  314. if (WiFi.status() == WL_CONNECTED) {
  315. DEBUG_WM("Already connected. Bailing out.");
  316. return WL_CONNECTED;
  317. }
  318. //check if we have ssid and pass and force those, if not, try with last saved values
  319. if (ssid != "") {
  320. WiFi.begin(ssid.c_str(), pass.c_str());
  321. } else {
  322. if (WiFi.SSID()) {
  323. DEBUG_WM("Using last saved values, should be faster");
  324. //trying to fix connection in progress hanging
  325. ETS_UART_INTR_DISABLE();
  326. wifi_station_disconnect();
  327. ETS_UART_INTR_ENABLE();
  328. WiFi.begin();
  329. } else {
  330. DEBUG_WM("No saved credentials");
  331. }
  332. }
  333. int connRes = waitForConnectResult();
  334. DEBUG_WM ("Connection result: ");
  335. DEBUG_WM ( connRes );
  336. //not connected, WPS enabled, no pass - first attempt
  337. if (_tryWPS && connRes != WL_CONNECTED && pass == "") {
  338. startWPS();
  339. //should be connected at the end of WPS
  340. connRes = waitForConnectResult();
  341. }
  342. return connRes;
  343. }
  344. uint8_t AsyncWiFiManager::waitForConnectResult() {
  345. if (_connectTimeout == 0) {
  346. return WiFi.waitForConnectResult();
  347. } else {
  348. DEBUG_WM (F("Waiting for connection result with time out"));
  349. unsigned long start = millis();
  350. boolean keepConnecting = true;
  351. uint8_t status;
  352. while (keepConnecting) {
  353. status = WiFi.status();
  354. if (millis() > start + _connectTimeout) {
  355. keepConnecting = false;
  356. DEBUG_WM (F("Connection timed out"));
  357. }
  358. if (status == WL_CONNECTED || status == WL_CONNECT_FAILED) {
  359. keepConnecting = false;
  360. }
  361. delay(100);
  362. }
  363. return status;
  364. }
  365. }
  366. void AsyncWiFiManager::startWPS() {
  367. DEBUG_WM("START WPS");
  368. WiFi.beginWPSConfig();
  369. DEBUG_WM("END WPS");
  370. }
  371. /*
  372. String AsyncWiFiManager::getSSID() {
  373. if (_ssid == "") {
  374. DEBUG_WM(F("Reading SSID"));
  375. _ssid = WiFi.SSID();
  376. DEBUG_WM(F("SSID: "));
  377. DEBUG_WM(_ssid);
  378. }
  379. return _ssid;
  380. }
  381. String AsyncWiFiManager::getPassword() {
  382. if (_pass == "") {
  383. DEBUG_WM(F("Reading Password"));
  384. _pass = WiFi.psk();
  385. DEBUG_WM("Password: " + _pass);
  386. //DEBUG_WM(_pass);
  387. }
  388. return _pass;
  389. }
  390. */
  391. String AsyncWiFiManager::getConfigPortalSSID() {
  392. return _apName;
  393. }
  394. void AsyncWiFiManager::resetSettings() {
  395. DEBUG_WM(F("settings invalidated"));
  396. DEBUG_WM(F("THIS MAY CAUSE AP NOT TO START UP PROPERLY. YOU NEED TO COMMENT IT OUT AFTER ERASING THE DATA."));
  397. WiFi.disconnect(true);
  398. //delay(200);
  399. }
  400. void AsyncWiFiManager::setTimeout(unsigned long seconds) {
  401. setConfigPortalTimeout(seconds);
  402. }
  403. void AsyncWiFiManager::setConfigPortalTimeout(unsigned long seconds) {
  404. _configPortalTimeout = seconds * 1000;
  405. }
  406. void AsyncWiFiManager::setConnectTimeout(unsigned long seconds) {
  407. _connectTimeout = seconds * 1000;
  408. }
  409. void AsyncWiFiManager::setDebugOutput(boolean debug) {
  410. _debug = debug;
  411. }
  412. void AsyncWiFiManager::setAPStaticIPConfig(IPAddress ip, IPAddress gw, IPAddress sn) {
  413. _ap_static_ip = ip;
  414. _ap_static_gw = gw;
  415. _ap_static_sn = sn;
  416. }
  417. void AsyncWiFiManager::setSTAStaticIPConfig(IPAddress ip, IPAddress gw, IPAddress sn) {
  418. _sta_static_ip = ip;
  419. _sta_static_gw = gw;
  420. _sta_static_sn = sn;
  421. }
  422. void AsyncWiFiManager::setMinimumSignalQuality(int quality) {
  423. _minimumQuality = quality;
  424. }
  425. void AsyncWiFiManager::setBreakAfterConfig(boolean shouldBreak) {
  426. _shouldBreakAfterConfig = shouldBreak;
  427. }
  428. /** Handle root or redirect to captive portal */
  429. void AsyncWiFiManager::handleRoot(AsyncWebServerRequest *request) {
  430. // AJS - maybe we should set a scan when we get to the root???
  431. // and only scan on demand? timer + on demand? plus a link to make it happen?
  432. shouldscan=true;
  433. scannow= -1 ;
  434. DEBUG_WM(F("Handle root"));
  435. if (captivePortal(request)) { // If caprive portal redirect instead of displaying the page.
  436. return;
  437. }
  438. String page = FPSTR(WFM_HTTP_HEAD);
  439. page.replace("{v}", "Options");
  440. page += FPSTR(HTTP_SCRIPT);
  441. page += FPSTR(HTTP_STYLE);
  442. page += _customHeadElement;
  443. page += FPSTR(HTTP_HEAD_END);
  444. page += "<h1>";
  445. page += _apName;
  446. page += "</h1>";
  447. page += F("<h3>AsyncWiFiManager</h3>");
  448. page += FPSTR(HTTP_PORTAL_OPTIONS);
  449. page += FPSTR(HTTP_END);
  450. request->send(200, "text/html", page);
  451. }
  452. /** Wifi config page handler */
  453. void AsyncWiFiManager::handleWifi(AsyncWebServerRequest *request,boolean scan) {
  454. shouldscan=true;
  455. scannow= -1 ;
  456. String page = FPSTR(WFM_HTTP_HEAD);
  457. page.replace("{v}", "Config ESP");
  458. page += FPSTR(HTTP_SCRIPT);
  459. page += FPSTR(HTTP_STYLE);
  460. page += _customHeadElement;
  461. page += FPSTR(HTTP_HEAD_END);
  462. if (scan) {
  463. wifiSSIDscan=false;
  464. int n = wifiSSIDCount;
  465. DEBUG_WM(F("Scan done"));
  466. if (n == 0) {
  467. DEBUG_WM(F("No networks found"));
  468. page += F("No networks found. Refresh to scan again.");
  469. } else {
  470. //display networks in page
  471. for (int i = 0; i < n; i++) {
  472. if (wifiSSIDs[i].duplicate == true) continue; // skip dups
  473. DEBUG_WM(wifiSSIDs[i].SSID);
  474. DEBUG_WM(wifiSSIDs[i].RSSI);
  475. int quality = getRSSIasQuality(wifiSSIDs[i].RSSI);
  476. if (_minimumQuality == -1 || _minimumQuality < quality) {
  477. String item = FPSTR(HTTP_ITEM);
  478. String rssiQ;
  479. rssiQ += quality;
  480. item.replace("{v}", wifiSSIDs[i].SSID);
  481. item.replace("{r}", rssiQ);
  482. if (wifiSSIDs[i].encryptionType != ENC_TYPE_NONE) {
  483. item.replace("{i}", "l");
  484. } else {
  485. item.replace("{i}", "");
  486. }
  487. //DEBUG_WM(item);
  488. page += item;
  489. delay(0);
  490. } else {
  491. DEBUG_WM(F("Skipping due to quality"));
  492. }
  493. }
  494. page += "<br/>";
  495. }
  496. }
  497. wifiSSIDscan=true;
  498. page += FPSTR(HTTP_FORM_START);
  499. char parLength[2];
  500. // add the extra parameters to the form
  501. for (int i = 0; i < _paramsCount; i++) {
  502. if (_params[i] == NULL) {
  503. break;
  504. }
  505. String pitem = FPSTR(HTTP_FORM_PARAM);
  506. if (_params[i]->getID() != NULL) {
  507. pitem.replace("{i}", _params[i]->getID());
  508. pitem.replace("{n}", _params[i]->getID());
  509. pitem.replace("{p}", _params[i]->getPlaceholder());
  510. snprintf(parLength, 2, "%d", _params[i]->getValueLength());
  511. pitem.replace("{l}", parLength);
  512. pitem.replace("{v}", _params[i]->getValue());
  513. pitem.replace("{c}", _params[i]->getCustomHTML());
  514. } else {
  515. pitem = _params[i]->getCustomHTML();
  516. }
  517. page += pitem;
  518. }
  519. if (_params[0] != NULL) {
  520. page += "<br/>";
  521. }
  522. if (_sta_static_ip) {
  523. String item = FPSTR(HTTP_FORM_PARAM);
  524. item.replace("{i}", "ip");
  525. item.replace("{n}", "ip");
  526. item.replace("{p}", "Static IP");
  527. item.replace("{l}", "15");
  528. item.replace("{v}", _sta_static_ip.toString());
  529. page += item;
  530. item = FPSTR(HTTP_FORM_PARAM);
  531. item.replace("{i}", "gw");
  532. item.replace("{n}", "gw");
  533. item.replace("{p}", "Static Gateway");
  534. item.replace("{l}", "15");
  535. item.replace("{v}", _sta_static_gw.toString());
  536. page += item;
  537. item = FPSTR(HTTP_FORM_PARAM);
  538. item.replace("{i}", "sn");
  539. item.replace("{n}", "sn");
  540. item.replace("{p}", "Subnet");
  541. item.replace("{l}", "15");
  542. item.replace("{v}", _sta_static_sn.toString());
  543. page += item;
  544. page += "<br/>";
  545. }
  546. page += FPSTR(HTTP_FORM_END);
  547. page += FPSTR(HTTP_SCAN_LINK);
  548. page += FPSTR(HTTP_END);
  549. request->send(200, "text/html", page);
  550. DEBUG_WM(F("Sent config page"));
  551. }
  552. /** Handle the WLAN save form and redirect to WLAN config page again */
  553. void AsyncWiFiManager::handleWifiSave(AsyncWebServerRequest *request) {
  554. DEBUG_WM(F("WiFi save"));
  555. //SAVE/connect here
  556. _ssid = request->arg("s").c_str();
  557. _pass = request->arg("p").c_str();
  558. //parameters
  559. for (int i = 0; i < _paramsCount; i++) {
  560. if (_params[i] == NULL) {
  561. break;
  562. }
  563. //read parameter
  564. String value = request->arg(_params[i]->getID()).c_str();
  565. //store it in array
  566. value.toCharArray(_params[i]->_value, _params[i]->_length);
  567. DEBUG_WM(F("Parameter"));
  568. DEBUG_WM(_params[i]->getID());
  569. DEBUG_WM(value);
  570. }
  571. if (request->hasArg("ip")) {
  572. DEBUG_WM(F("static ip"));
  573. DEBUG_WM(request->arg("ip"));
  574. //_sta_static_ip.fromString(request->arg("ip"));
  575. String ip = request->arg("ip");
  576. optionalIPFromString(&_sta_static_ip, ip.c_str());
  577. }
  578. if (request->hasArg("gw")) {
  579. DEBUG_WM(F("static gateway"));
  580. DEBUG_WM(request->arg("gw"));
  581. String gw = request->arg("gw");
  582. optionalIPFromString(&_sta_static_gw, gw.c_str());
  583. }
  584. if (request->hasArg("sn")) {
  585. DEBUG_WM(F("static netmask"));
  586. DEBUG_WM(request->arg("sn"));
  587. String sn = request->arg("sn");
  588. optionalIPFromString(&_sta_static_sn, sn.c_str());
  589. }
  590. String page = FPSTR(WFM_HTTP_HEAD);
  591. page.replace("{v}", "Credentials Saved");
  592. page += FPSTR(HTTP_SCRIPT);
  593. page += FPSTR(HTTP_STYLE);
  594. page += _customHeadElement;
  595. page += FPSTR(HTTP_HEAD_END);
  596. page += FPSTR(HTTP_SAVED);
  597. page += FPSTR(HTTP_END);
  598. request->send(200, "text/html", page);
  599. DEBUG_WM(F("Sent wifi save page"));
  600. connect = true; //signal ready to connect/reset
  601. }
  602. /** Handle the info page */
  603. void AsyncWiFiManager::handleInfo(AsyncWebServerRequest *request) {
  604. DEBUG_WM(F("Info"));
  605. String page = FPSTR(WFM_HTTP_HEAD);
  606. page.replace("{v}", "Info");
  607. page += FPSTR(HTTP_SCRIPT);
  608. page += FPSTR(HTTP_STYLE);
  609. page += _customHeadElement;
  610. page += FPSTR(HTTP_HEAD_END);
  611. page += F("<dl>");
  612. page += F("<dt>Chip ID</dt><dd>");
  613. page += ESP.getChipId();
  614. page += F("</dd>");
  615. page += F("<dt>Flash Chip ID</dt><dd>");
  616. page += ESP.getFlashChipId();
  617. page += F("</dd>");
  618. page += F("<dt>IDE Flash Size</dt><dd>");
  619. page += ESP.getFlashChipSize();
  620. page += F(" bytes</dd>");
  621. page += F("<dt>Real Flash Size</dt><dd>");
  622. page += ESP.getFlashChipRealSize();
  623. page += F(" bytes</dd>");
  624. page += F("<dt>Soft AP IP</dt><dd>");
  625. page += WiFi.softAPIP().toString();
  626. page += F("</dd>");
  627. page += F("<dt>Soft AP MAC</dt><dd>");
  628. page += WiFi.softAPmacAddress();
  629. page += F("</dd>");
  630. page += F("<dt>Station MAC</dt><dd>");
  631. page += WiFi.macAddress();
  632. page += F("</dd>");
  633. page += F("</dl>");
  634. page += FPSTR(HTTP_END);
  635. request->send(200, "text/html", page);
  636. DEBUG_WM(F("Sent info page"));
  637. }
  638. /** Handle the reset page */
  639. void AsyncWiFiManager::handleReset(AsyncWebServerRequest *request) {
  640. DEBUG_WM(F("Reset"));
  641. String page = FPSTR(WFM_HTTP_HEAD);
  642. page.replace("{v}", "Info");
  643. page += FPSTR(HTTP_SCRIPT);
  644. page += FPSTR(HTTP_STYLE);
  645. page += _customHeadElement;
  646. page += FPSTR(HTTP_HEAD_END);
  647. page += F("Module will reset in a few seconds.");
  648. page += FPSTR(HTTP_END);
  649. request->send(200, "text/html", page);
  650. DEBUG_WM(F("Sent reset page"));
  651. delay(5000);
  652. ESP.reset();
  653. delay(2000);
  654. }
  655. //removed as mentioned here https://github.com/tzapu/AsyncWiFiManager/issues/114
  656. /*void AsyncWiFiManager::handle204(AsyncWebServerRequest *request) {
  657. DEBUG_WM(F("204 No Response"));
  658. request->sendHeader("Cache-Control", "no-cache, no-store, must-revalidate");
  659. request->sendHeader("Pragma", "no-cache");
  660. request->sendHeader("Expires", "-1");
  661. request->send ( 204, "text/plain", "");
  662. }*/
  663. void AsyncWiFiManager::handleNotFound(AsyncWebServerRequest *request) {
  664. if (captivePortal(request)) { // If captive portal redirect instead of displaying the error page.
  665. return;
  666. }
  667. String message = "File Not Found\n\n";
  668. message += "URI: ";
  669. message += request->url();
  670. message += "\nMethod: ";
  671. message += ( request->method() == HTTP_GET ) ? "GET" : "POST";
  672. message += "\nArguments: ";
  673. message += request->args();
  674. message += "\n";
  675. for ( uint8_t i = 0; i < request->args(); i++ ) {
  676. message += " " + request->argName ( i ) + ": " + request->arg ( i ) + "\n";
  677. }
  678. AsyncWebServerResponse *response = request->beginResponse(404,"text/plain",message);
  679. response->addHeader("Cache-Control", "no-cache, no-store, must-revalidate");
  680. response->addHeader("Pragma", "no-cache");
  681. response->addHeader("Expires", "-1");
  682. request->send (response );
  683. }
  684. /** 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. */
  685. boolean AsyncWiFiManager::captivePortal(AsyncWebServerRequest *request) {
  686. if (!isIp(request->host()) ) {
  687. DEBUG_WM(F("Request redirected to captive portal"));
  688. AsyncWebServerResponse *response = request->beginResponse(302,"text/plain","");
  689. response->addHeader("Location", String("http://") + toStringIp(request->client()->localIP()));
  690. request->send ( response);
  691. return true;
  692. }
  693. return false;
  694. }
  695. //start up config portal callback
  696. void AsyncWiFiManager::setAPCallback( void (*func)(AsyncWiFiManager* myAsyncWiFiManager) ) {
  697. _apcallback = func;
  698. }
  699. //start up save config callback
  700. void AsyncWiFiManager::setSaveConfigCallback( void (*func)(void) ) {
  701. _savecallback = func;
  702. }
  703. //sets a custom element to add to head, like a new style tag
  704. void AsyncWiFiManager::setCustomHeadElement(const char* element) {
  705. _customHeadElement = element;
  706. }
  707. //if this is true, remove duplicated Access Points - defaut true
  708. void AsyncWiFiManager::setRemoveDuplicateAPs(boolean removeDuplicates) {
  709. _removeDuplicateAPs = removeDuplicates;
  710. }
  711. template <typename Generic>
  712. void AsyncWiFiManager::DEBUG_WM(Generic text) {
  713. if (_debug) {
  714. Serial.print("*WM: ");
  715. Serial.println(text);
  716. }
  717. }
  718. int AsyncWiFiManager::getRSSIasQuality(int RSSI) {
  719. int quality = 0;
  720. if (RSSI <= -100) {
  721. quality = 0;
  722. } else if (RSSI >= -50) {
  723. quality = 100;
  724. } else {
  725. quality = 2 * (RSSI + 100);
  726. }
  727. return quality;
  728. }
  729. /** Is this an IP? */
  730. boolean AsyncWiFiManager::isIp(String str) {
  731. for (int i = 0; i < str.length(); i++) {
  732. int c = str.charAt(i);
  733. if (c != '.' && (c < '0' || c > '9')) {
  734. return false;
  735. }
  736. }
  737. return true;
  738. }
  739. /** IP to String? */
  740. String AsyncWiFiManager::toStringIp(IPAddress ip) {
  741. String res = "";
  742. for (int i = 0; i < 3; i++) {
  743. res += String((ip >> (8 * i)) & 0xFF) + ".";
  744. }
  745. res += String(((ip >> 8 * 3)) & 0xFF);
  746. return res;
  747. }