mirror of
				https://github.com/esp8266/Arduino.git
				synced 2025-10-30 04:26:50 +03:00 
			
		
		
		
	* update examples * fix serial<->tcp example, use STASSID instead of SSID (name collision) * fix HTTPSRequest.ino * update AxTLS HTTPS examples, update AxTLS API to deprecated * fixes * fixes + fix astyle (no preproc directives) + restyling script * fix HTTPClient library * fixes * common.sh: do not reload arduino when already present (for locally CI testing) * common.sh: do not reload ArduinoJson when already present (for locally CI testing) * fix * fix * fix deprecated example * fix WiFiHTTPSServer.ino * reduce footprint * wipfix * fix led builtin * fix example * finished updating APSSID on all examples * style * restyle examples * helper to run CI test locally * local CI runner more verbose * +const * deprecation deprecation * deprecation * Update NTPClient.ino const char[] => const char * * Update interactive.ino const char[] => const char *
		
			
				
	
	
		
			138 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			138 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include <ESP8266WiFi.h>
 | |
| #include <WiFiClient.h>
 | |
| #include <ESP8266WebServer.h>
 | |
| 
 | |
| #ifndef STASSID
 | |
| #define STASSID "your-ssid"
 | |
| #define STAPSK  "your-password"
 | |
| #endif
 | |
| 
 | |
| const char* ssid = STASSID;
 | |
| const char* password = STAPSK;
 | |
| 
 | |
| ESP8266WebServer server(80);
 | |
| 
 | |
| //Check if header is present and correct
 | |
| bool is_authenticated() {
 | |
|   Serial.println("Enter is_authenticated");
 | |
|   if (server.hasHeader("Cookie")) {
 | |
|     Serial.print("Found cookie: ");
 | |
|     String cookie = server.header("Cookie");
 | |
|     Serial.println(cookie);
 | |
|     if (cookie.indexOf("ESPSESSIONID=1") != -1) {
 | |
|       Serial.println("Authentication Successful");
 | |
|       return true;
 | |
|     }
 | |
|   }
 | |
|   Serial.println("Authentication Failed");
 | |
|   return false;
 | |
| }
 | |
| 
 | |
| //login page, also called for disconnect
 | |
| void handleLogin() {
 | |
|   String msg;
 | |
|   if (server.hasHeader("Cookie")) {
 | |
|     Serial.print("Found cookie: ");
 | |
|     String cookie = server.header("Cookie");
 | |
|     Serial.println(cookie);
 | |
|   }
 | |
|   if (server.hasArg("DISCONNECT")) {
 | |
|     Serial.println("Disconnection");
 | |
|     server.sendHeader("Location", "/login");
 | |
|     server.sendHeader("Cache-Control", "no-cache");
 | |
|     server.sendHeader("Set-Cookie", "ESPSESSIONID=0");
 | |
|     server.send(301);
 | |
|     return;
 | |
|   }
 | |
|   if (server.hasArg("USERNAME") && server.hasArg("PASSWORD")) {
 | |
|     if (server.arg("USERNAME") == "admin" &&  server.arg("PASSWORD") == "admin") {
 | |
|       server.sendHeader("Location", "/");
 | |
|       server.sendHeader("Cache-Control", "no-cache");
 | |
|       server.sendHeader("Set-Cookie", "ESPSESSIONID=1");
 | |
|       server.send(301);
 | |
|       Serial.println("Log in Successful");
 | |
|       return;
 | |
|     }
 | |
|     msg = "Wrong username/password! try again.";
 | |
|     Serial.println("Log in Failed");
 | |
|   }
 | |
|   String content = "<html><body><form action='/login' method='POST'>To log in, please use : admin/admin<br>";
 | |
|   content += "User:<input type='text' name='USERNAME' placeholder='user name'><br>";
 | |
|   content += "Password:<input type='password' name='PASSWORD' placeholder='password'><br>";
 | |
|   content += "<input type='submit' name='SUBMIT' value='Submit'></form>" + msg + "<br>";
 | |
|   content += "You also can go <a href='/inline'>here</a></body></html>";
 | |
|   server.send(200, "text/html", content);
 | |
| }
 | |
| 
 | |
| //root page can be accessed only if authentication is ok
 | |
| void handleRoot() {
 | |
|   Serial.println("Enter handleRoot");
 | |
|   String header;
 | |
|   if (!is_authenticated()) {
 | |
|     server.sendHeader("Location", "/login");
 | |
|     server.sendHeader("Cache-Control", "no-cache");
 | |
|     server.send(301);
 | |
|     return;
 | |
|   }
 | |
|   String content = "<html><body><H2>hello, you successfully connected to esp8266!</H2><br>";
 | |
|   if (server.hasHeader("User-Agent")) {
 | |
|     content += "the user agent used is : " + server.header("User-Agent") + "<br><br>";
 | |
|   }
 | |
|   content += "You can access this page until you <a href=\"/login?DISCONNECT=YES\">disconnect</a></body></html>";
 | |
|   server.send(200, "text/html", content);
 | |
| }
 | |
| 
 | |
| //no need authentication
 | |
| void handleNotFound() {
 | |
|   String message = "File Not Found\n\n";
 | |
|   message += "URI: ";
 | |
|   message += server.uri();
 | |
|   message += "\nMethod: ";
 | |
|   message += (server.method() == HTTP_GET) ? "GET" : "POST";
 | |
|   message += "\nArguments: ";
 | |
|   message += server.args();
 | |
|   message += "\n";
 | |
|   for (uint8_t i = 0; i < server.args(); i++) {
 | |
|     message += " " + server.argName(i) + ": " + server.arg(i) + "\n";
 | |
|   }
 | |
|   server.send(404, "text/plain", message);
 | |
| }
 | |
| 
 | |
| void setup(void) {
 | |
|   Serial.begin(115200);
 | |
|   WiFi.mode(WIFI_STA);
 | |
|   WiFi.begin(ssid, password);
 | |
|   Serial.println("");
 | |
| 
 | |
|   // Wait for connection
 | |
|   while (WiFi.status() != WL_CONNECTED) {
 | |
|     delay(500);
 | |
|     Serial.print(".");
 | |
|   }
 | |
|   Serial.println("");
 | |
|   Serial.print("Connected to ");
 | |
|   Serial.println(ssid);
 | |
|   Serial.print("IP address: ");
 | |
|   Serial.println(WiFi.localIP());
 | |
| 
 | |
| 
 | |
|   server.on("/", handleRoot);
 | |
|   server.on("/login", handleLogin);
 | |
|   server.on("/inline", []() {
 | |
|     server.send(200, "text/plain", "this works without need of authentication");
 | |
|   });
 | |
| 
 | |
|   server.onNotFound(handleNotFound);
 | |
|   //here the list of headers to be recorded
 | |
|   const char * headerkeys[] = {"User-Agent", "Cookie"} ;
 | |
|   size_t headerkeyssize = sizeof(headerkeys) / sizeof(char*);
 | |
|   //ask server to track these headers
 | |
|   server.collectHeaders(headerkeys, headerkeyssize);
 | |
|   server.begin();
 | |
|   Serial.println("HTTP server started");
 | |
| }
 | |
| 
 | |
| void loop(void) {
 | |
|   server.handleClient();
 | |
| }
 |