|
|
@@ -2,18 +2,30 @@ |
|
|
|
|
|
|
|
#include "filesys.h" |
|
|
|
#include <ESP8266WebServer.h> |
|
|
|
#include <stdarg.h> |
|
|
|
|
|
|
|
#define LOG_STR "[HTTPServer]" |
|
|
|
|
|
|
|
|
|
|
|
class HTTPServer : public ESP8266WebServer { |
|
|
|
private: |
|
|
|
const char* rootDir; |
|
|
|
const char* rootDir = "/"; |
|
|
|
|
|
|
|
bool addRootFileHandler(); |
|
|
|
bool addRootFileHandler_ls(); |
|
|
|
bool formatFS() { |
|
|
|
return format_fs(); |
|
|
|
} |
|
|
|
void listRoot() { |
|
|
|
ls(rootDir); |
|
|
|
} |
|
|
|
void logf(const char *format, ...) { |
|
|
|
va_list args; |
|
|
|
va_start(args, format); |
|
|
|
Serial.print(LOG_STR); |
|
|
|
Serial.printf(format, args); |
|
|
|
va_end(args); |
|
|
|
} |
|
|
|
|
|
|
|
public: |
|
|
|
HTTPServer(const int _port, const char* _rootDir) : |
|
|
@@ -33,33 +45,34 @@ public: |
|
|
|
this->listRoot(); |
|
|
|
Serial.printf("\n\r"); |
|
|
|
|
|
|
|
// https://stackoverflow.com/questions/7627098/what-is-a-lambda-expression-in-c11 |
|
|
|
on("/compress.html", [this]() { |
|
|
|
File f = open("/compress.html.gz"); |
|
|
|
if (!f) { |
|
|
|
Serial.println("Failed to open file for reading"); |
|
|
|
send(404, "text/plain", "Failed to open file for reading"); |
|
|
|
} |
|
|
|
else |
|
|
|
{ |
|
|
|
Serial.println("Streaming /compress.html.gz to client"); |
|
|
|
const String cont = "text/html"; |
|
|
|
streamFile(f, cont); |
|
|
|
} |
|
|
|
}); |
|
|
|
on("/comp.html", [this]() { |
|
|
|
File f = open("/comp.html.gz"); |
|
|
|
if (!f) { |
|
|
|
Serial.println("Failed to open file for reading"); |
|
|
|
send(404, "text/plain", "Failed to open file for reading"); |
|
|
|
} |
|
|
|
else |
|
|
|
{ |
|
|
|
Serial.println("Streaming /comp.html.gz to client"); |
|
|
|
const String cont = "text/html"; |
|
|
|
streamFile(f, cont); |
|
|
|
} |
|
|
|
}); |
|
|
|
// on("/compress.html", [this]() { |
|
|
|
// File f = open("/compress.html.gz"); |
|
|
|
// if (!f) { |
|
|
|
// Serial.println("Failed to open file for reading"); |
|
|
|
// send(404, "text/plain", "Failed to open file for reading"); |
|
|
|
// } |
|
|
|
// else |
|
|
|
// { |
|
|
|
// Serial.println("Streaming /compress.html.gz to client"); |
|
|
|
// const String cont = "text/html"; |
|
|
|
// streamFile(f, cont); |
|
|
|
// } |
|
|
|
// f.close(); |
|
|
|
// }); |
|
|
|
// on("/comp.html", [this]() { |
|
|
|
// File f = open("/comp.html.gz"); |
|
|
|
// if (!f) { |
|
|
|
// Serial.println("Failed to open file for reading"); |
|
|
|
// send(404, "text/plain", "Failed to open file for reading"); |
|
|
|
// } |
|
|
|
// else |
|
|
|
// { |
|
|
|
// Serial.println("Streaming /comp.html.gz to client"); |
|
|
|
// const String cont = "text/html"; |
|
|
|
// streamFile(f, cont); |
|
|
|
// } |
|
|
|
// f.close(); |
|
|
|
// }); |
|
|
|
|
|
|
|
on("/terminal", [this]() { |
|
|
|
String log_msg = "terminal: millis: "; |
|
|
@@ -67,6 +80,7 @@ public: |
|
|
|
send(200, "text/plain", log_msg); |
|
|
|
}); |
|
|
|
|
|
|
|
// default handler |
|
|
|
onNotFound([this]() { |
|
|
|
String message = "File Not Found\n\n"; |
|
|
|
message += "URI: "; |
|
|
@@ -83,7 +97,7 @@ public: |
|
|
|
send(404, "text/plain", message); |
|
|
|
}); |
|
|
|
|
|
|
|
if( this->addRootFileHandler() ){ |
|
|
|
if( this->addRootFileHandler_ls() ){ |
|
|
|
this->begin(); |
|
|
|
Serial.printf("[HTTPServer] Server active on Port 80 !\n\r"); |
|
|
|
return true; |