ESPAsyncWiFiManager.cpp 28 KB

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