-
Notifications
You must be signed in to change notification settings - Fork 0
/
FSexplorer.ino
299 lines (262 loc) · 10.5 KB
/
FSexplorer.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
/*
***************************************************************************
** Program : FSexplorer, part of DSMRloggerAPI
** Version : v2.0.1
**
** Mostly stolen from https://www.arduinoforum.de/User-Fips
** For more information visit: https://fipsok.de
** See also https://www.arduinoforum.de/arduino-Thread-SPIFFS-DOWNLOAD-UPLOAD-DELETE-Esp8266-NodeMCU
**
***************************************************************************
Copyright (c) 2018 Jens Fleischer. All rights reserved.
This file is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This file is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
*******************************************************************
*/
const char Helper[] = R"(
<br>You first need to upload these two files:
<ul>
<li>FSexplorer.html</li>
<li>FSexplorer.css</li>
</ul>
<form method="POST" action="/upload" enctype="multipart/form-data">
<input type="file" name="upload">
<input type="submit" value="Upload">
</form>
<br/><b>or</b> you can use the <i>Flash Utility</i> to flash firmware or SPIFFS!
<form action='/update' method='GET'>
<input type='submit' name='SUBMIT' value='Flash Utility'/>
</form>
)";
const PROGMEM char Header[] = "HTTP/1.1 303 OK\r\nLocation:FSexplorer.html\r\nCache-Control: no-cache\r\n";
//=====================================================================================
void setupFSexplorer() // Funktionsaufruf "spiffs();" muss im Setup eingebunden werden
{
SPIFFS.begin();
if (SPIFFS.exists("/FSexplorer.html"))
{
httpServer.serveStatic("/FSexplorer.html", SPIFFS, "/FSexplorer.html");
httpServer.serveStatic("/FSexplorer", SPIFFS, "/FSexplorer.html");
}
else
{
httpServer.send(200, "text/html", Helper); //Upload the FSexplorer.html
}
httpServer.on("/api/listfiles", APIlistFiles);
httpServer.on("/SPIFFSformat", formatSpiffs);
httpServer.on("/upload", HTTP_POST, []() {}, handleFileUpload);
httpServer.on("/ReBoot", reBootESP);
httpServer.on("/update", updateFirmware);
httpServer.onNotFound([]()
{
if (Verbose2) DebugTf("in 'onNotFound()'!! [%s] => \r\n", String(httpServer.uri()).c_str());
if (httpServer.uri().indexOf("/api/") == 0)
{
if (Verbose1) DebugTf("next: processAPI(%s)\r\n", String(httpServer.uri()).c_str());
processAPI();
}
else
{
DebugTf("next: handleFile(%s)\r\n"
, String(httpServer.urlDecode(httpServer.uri())).c_str());
if (!handleFile(httpServer.urlDecode(httpServer.uri())))
{
httpServer.send(404, "text/plain", "FileNotFound\r\n");
}
}
});
} // setupFSexplorer()
//=====================================================================================
void APIlistFiles() // Senden aller Daten an den Client
{
FSInfo SPIFFSinfo;
typedef struct _fileMeta {
char Name[30];
int32_t Size;
} fileMeta;
_fileMeta dirMap[30];
int fileNr = 0;
Dir dir = SPIFFS.openDir("/"); // List files on SPIFFS
while (dir.next())
{
dirMap[fileNr].Name[0] = '\0';
strncat(dirMap[fileNr].Name, dir.fileName().substring(1).c_str(), 29); // remove leading '/'
dirMap[fileNr].Size = dir.fileSize();
fileNr++;
}
// -- bubble sort dirMap op .Name--
for (int8_t y = 0; y < fileNr; y++) {
yield();
for (int8_t x = y + 1; x < fileNr; x++) {
//DebugTf("y[%d], x[%d] => seq[y][%s] / seq[x][%s] ", y, x, dirMap[y].Name, dirMap[x].Name);
if (compare(String(dirMap[x].Name), String(dirMap[y].Name)))
{
//Debug(" !switch!");
fileMeta temp = dirMap[y];
dirMap[y] = dirMap[x];
dirMap[x] = temp;
} /* end if */
//Debugln();
} /* end for */
} /* end for */
for (int8_t x = 0; x < fileNr; x++)
{
DebugTln(dirMap[x].Name);
}
String temp = "[";
for (int f=0; f < fileNr; f++)
{
if (temp != "[") temp += ",";
temp += R"({"name":")" + String(dirMap[f].Name) + R"(","size":")" + formatBytes(dirMap[f].Size) + R"("})";
}
SPIFFS.info(SPIFFSinfo);
temp += R"(,{"usedBytes":")" + formatBytes(SPIFFSinfo.usedBytes * 1.05) + R"(",)" + // Berechnet den verwendeten Speicherplatz + 5% Sicherheitsaufschlag
R"("totalBytes":")" + formatBytes(SPIFFSinfo.totalBytes) + R"(","freeBytes":")" + // Zeigt die Größe des Speichers
(SPIFFSinfo.totalBytes - (SPIFFSinfo.usedBytes * 1.05)) + R"("}])"; // Berechnet den freien Speicherplatz + 5% Sicherheitsaufschlag
httpServer.send(200, "application/json", temp);
} // APIlistFiles()
//=====================================================================================
bool handleFile(String&& path)
{
if (httpServer.hasArg("delete"))
{
DebugTf("Delete -> [%s]\n\r", httpServer.arg("delete").c_str());
SPIFFS.remove(httpServer.arg("delete")); // Datei löschen
httpServer.sendContent(Header);
return true;
}
if (!SPIFFS.exists("/FSexplorer.html")) httpServer.send(200, "text/html", Helper); //Upload the FSexplorer.html
if (path.endsWith("/")) path += "index.html";
return SPIFFS.exists(path) ? ({File f = SPIFFS.open(path, "r"); httpServer.streamFile(f, contentType(path)); f.close(); true;}) : false;
} // handleFile()
//=====================================================================================
void handleFileUpload()
{
static File fsUploadFile;
HTTPUpload& upload = httpServer.upload();
if (upload.status == UPLOAD_FILE_START)
{
if (upload.filename.length() > 30)
{
upload.filename = upload.filename.substring(upload.filename.length() - 30, upload.filename.length()); // Dateinamen auf 30 Zeichen kürzen
}
Debugln("FileUpload Name: " + upload.filename);
fsUploadFile = SPIFFS.open("/" + httpServer.urlDecode(upload.filename), "w");
}
else if (upload.status == UPLOAD_FILE_WRITE)
{
Debugln("FileUpload Data: " + (String)upload.currentSize);
if (fsUploadFile)
fsUploadFile.write(upload.buf, upload.currentSize);
}
else if (upload.status == UPLOAD_FILE_END)
{
if (fsUploadFile)
fsUploadFile.close();
Debugln("FileUpload Size: " + (String)upload.totalSize);
httpServer.sendContent(Header);
}
} // handleFileUpload()
//=====================================================================================
void formatSpiffs()
{ //Formatiert den Speicher
if (!SPIFFS.exists("/!format")) return;
DebugTln(F("Format SPIFFS"));
SPIFFS.format();
httpServer.sendContent(Header);
} // formatSpiffs()
//=====================================================================================
const String formatBytes(size_t const& bytes)
{
return (bytes < 1024) ? String(bytes) + " Byte" : (bytes < (1024 * 1024)) ? String(bytes / 1024.0) + " KB" : String(bytes / 1024.0 / 1024.0) + " MB";
} //formatBytes()
//=====================================================================================
const String &contentType(String& filename)
{
if (filename.endsWith(".htm") || filename.endsWith(".html")) filename = "text/html";
else if (filename.endsWith(".css")) filename = "text/css";
else if (filename.endsWith(".js")) filename = "application/javascript";
else if (filename.endsWith(".json")) filename = "application/json";
else if (filename.endsWith(".png")) filename = "image/png";
else if (filename.endsWith(".gif")) filename = "image/gif";
else if (filename.endsWith(".jpg")) filename = "image/jpeg";
else if (filename.endsWith(".ico")) filename = "image/x-icon";
else if (filename.endsWith(".xml")) filename = "text/xml";
else if (filename.endsWith(".pdf")) filename = "application/x-pdf";
else if (filename.endsWith(".zip")) filename = "application/x-zip";
else if (filename.endsWith(".gz")) filename = "application/x-gzip";
else filename = "text/plain";
return filename;
} // &contentType()
//=====================================================================================
bool freeSpace(uint16_t const& printsize)
{
FSInfo SPIFFSinfo;
SPIFFS.info(SPIFFSinfo);
Debugln(formatBytes(SPIFFSinfo.totalBytes - (SPIFFSinfo.usedBytes * 1.05)) + " im Spiffs frei");
return (SPIFFSinfo.totalBytes - (SPIFFSinfo.usedBytes * 1.05) > printsize) ? true : false;
} // freeSpace()
//=====================================================================================
void updateFirmware()
{
#ifdef USE_UPDATE_SERVER
DebugTln(F("Redirect to updateIndex .."));
doRedirect("wait ... ", 1, "/updateIndex", false);
#else
doRedirect("UpdateServer not implemented", 10, "/", false);
#endif
} // updateFirmware()
//=====================================================================================
void reBootESP()
{
DebugTln(F("Redirect and ReBoot .."));
doRedirect("Reboot DSMR-logger ..", 60, "/", true);
} // reBootESP()
//=====================================================================================
void doRedirect(String msg, int wait, const char* URL, bool reboot)
{
String redirectHTML =
"<!DOCTYPE HTML><html lang='en-US'>"
"<head>"
"<meta charset='UTF-8'>"
"<style type='text/css'>"
"body {background-color: lightblue;}"
"</style>"
"<title>Redirect to Main Program</title>"
"</head>"
"<body><h1>FSexplorer</h1>"
"<h3>"+msg+"</h3>"
"<br><div style='width: 500px; position: relative; font-size: 25px;'>"
" <div style='float: left;'>Redirect over </div>"
" <div style='float: left;' id='counter'>"+String(wait)+"</div>"
" <div style='float: left;'> seconden ...</div>"
" <div style='float: right;'> </div>"
"</div>"
"<!-- Note: don't tell people to `click` the link, just tell them that it is a link. -->"
"<br><br><hr>If you are not redirected automatically, click this <a href='/'>Main Program</a>."
" <script>"
" setInterval(function() {"
" var div = document.querySelector('#counter');"
" var count = div.textContent * 1 - 1;"
" div.textContent = count;"
" if (count <= 0) {"
" window.location.replace('"+String(URL)+"'); "
" } "
" }, 1000); "
" </script> "
"</body></html>\r\n";
DebugTln(msg);
httpServer.send(200, "text/html", redirectHTML);
if (reboot)
{
delay(5000);
ESP.restart();
delay(5000);
}
} // doRedirect()