-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathESP32FIleManagerV1_Esp.ino
333 lines (292 loc) · 12 KB
/
ESP32FIleManagerV1_Esp.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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
//Gestor de archivos ESP32 por Mr. Pretendo https://github.com/MrPretendo
// Version Español 1.0
#include <WiFiManager.h>
#include <WiFi.h>
#include <WebServer.h>
#include <SPIFFS.h>
// Instancia del servidor web
WebServer server(80);
void handleRoot() {
String html = "<html><head>";
html += "<style>";
html += "body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #F0F8FF; color: #333; line-height: 1.6; }";
html += ".container { width: 100%; max-width: 1200px; padding: 20px; margin: 0 auto; }";
html += "h1, h2 { color: #6A5ACD; margin-bottom: 20px; text-align: center; }";
html += "form { display: flex; flex-direction: column; gap: 15px; max-width: 500px; margin: 0 auto; }";
html += "input[type='file'], input[type='submit'] { width: 100%; padding: 8px; border: 1px solid #ddd; border-radius: 4px; }";
html += "input[type='submit'] { background-color: #6A5ACD; color: white; cursor: pointer; transition: background-color 0.3s; }";
html += "input[type='submit']:hover { background-color: #5849b6; }";
html += "input[type='submit']:disabled { background-color: #cccccc; cursor: not-allowed; }";
html += "ul { list-style-type: none; padding: 0; }";
html += "li { background-color: white; margin-bottom: 10px; padding: 10px; border-radius: 4px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }";
html += "a { color: #6A5ACD; text-decoration: none; margin-left: 10px; }";
html += ".modal { display: none; position: fixed; z-index: 1; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.4); }";
html += ".modal-content { background-color: #fefefe; margin: 15% auto; padding: 20px; border: 1px solid #888; width: 80%; max-width: 500px; border-radius: 5px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }";
html += ".close { color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer; }";
html += ".close:hover, .close:focus { color: #000; text-decoration: none; cursor: pointer; }";
html += "#confirmUpload { background-color: #6A5ACD; color: white; border: none; padding: 10px 20px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; margin: 4px 2px; transition-duration: 0.4s; cursor: pointer; border-radius: 5px; }";
html += "#confirmUpload:hover { background-color: #5849b6; }";
html += "</style>";
html += "</head><body><div class='container'>";
html += "<h1>Gestor de archivos ESP32 </h1>";
// Formulario para subir archivos
html += "<h2>Subir Archivo</h2>";
html += "<form id='uploadForm'>";
html += "<input type='file' id='fileInput' name='file'>";
html += "<input type='submit' id='uploadButton' value='Subir Archivo' disabled>";
html += "</form>";
// PopUp para confirmación
html += "<div id='uploadModal' class='modal'>";
html += "<div class='modal-content'>";
html += "<span class='close'>×</span>";
html += "<p>Confirma la carga del archivo</p>";
html += "<button id='confirmUpload'>Confirmar</button>";
html += "</div>";
html += "</div>";
// Lista de archivos en SPIFFS
html += "<h2>Archivos en SPIFFS</h2><ul>";
File root = SPIFFS.open("/");
File file = root.openNextFile();
while(file) {
if(!file.isDirectory()) {
String fileName = String(file.name());
if (fileName.startsWith("/")) {
fileName = fileName.substring(1); // Elimina la barra inicial si existe
}
html += "<li>" + fileName + " - " + String(file.size()) + " bytes";
html += " <a href='/download?file=" + fileName + "'>Descargar</a>";
html += " <a href='/delete?file=" + fileName + "'>Eliminar</a></li>";
}
file = root.openNextFile();
}
root.close();
html += "</ul>";
// JavaScript para manejar la subida de archivos
html += "<script>";
html += "var fileInput = document.getElementById('fileInput');";
html += "var uploadButton = document.getElementById('uploadButton');";
html += "var uploadForm = document.getElementById('uploadForm');";
html += "var modal = document.getElementById('uploadModal');";
html += "var span = document.getElementsByClassName('close')[0];";
html += "var confirmButton = document.getElementById('confirmUpload');";
html += "fileInput.onchange = function() {";
html += " uploadButton.disabled = !fileInput.value;";
html += "};";
html += "uploadForm.onsubmit = function(e) {";
html += " e.preventDefault();";
html += " if (fileInput.value) {";
html += " modal.style.display = 'block';";
html += " }";
html += "};";
html += "span.onclick = function() {";
html += " modal.style.display = 'none';";
html += "};";
html += "confirmButton.onclick = function() {";
html += " modal.style.display = 'none';";
html += " var formData = new FormData(uploadForm);";
html += " fetch('/upload', {method: 'POST', body: formData})";
html += " .then(response => {";
html += " if(response.ok) window.location.reload();";
html += " else alert('Error al subir el archivo');";
html += " })";
html += " .catch(error => alert('Error: ' + error));";
html += "};";
html += "window.onclick = function(event) {";
html += " if (event.target == modal) {";
html += " modal.style.display = 'none';";
html += " }";
html += "};";
html += "</script>";
html += "</div></body></html>";
server.send(200, "text/html", html);
}
void handleFileUpload() {
HTTPUpload& upload = server.upload();
static File fsUploadFile;
if (upload.status == UPLOAD_FILE_START) {
String filename = "/" + upload.filename;
Serial.printf("handleFileUpload Name: %s\n", filename.c_str());
fsUploadFile = SPIFFS.open(filename, FILE_WRITE);
if (!fsUploadFile) {
Serial.println("Failed to open file for writing");
return;
}
} else if (upload.status == UPLOAD_FILE_WRITE) {
if (fsUploadFile) {
fsUploadFile.write(upload.buf, upload.currentSize);
}
} else if (upload.status == UPLOAD_FILE_END) {
if (fsUploadFile) {
fsUploadFile.close();
}
Serial.printf("handleFileUpload Size: %u\n", upload.totalSize);
}
}
void handleFileUploadComplete() {
server.sendHeader("Location", "/");
server.send(303);
}
void handleFileDownload() {
String fileName = server.arg("file");
String path = "/" + fileName;
if (SPIFFS.exists(path)) {
File file = SPIFFS.open(path, "r");
if (file) {
server.sendHeader("Content-Type", "application/octet-stream");
server.sendHeader("Content-Disposition", "attachment; filename=" + fileName);
server.sendHeader("Connection", "close");
server.streamFile(file, "application/octet-stream");
file.close();
} else {
server.send(500, "text/plain", "Error al abrir el archivo");
}
} else {
server.send(404, "text/plain", "Archivo no encontrado");
}
}
void handleDeleteFile() {
String fileName = server.arg("file");
String path = "/" + fileName;
if (SPIFFS.remove(path)) {
server.sendHeader("Location", "/");
server.send(303);
} else {
server.send(500, "text/plain", "Error al eliminar el archivo");
}
}
// Funciones para el monitor serie
void serialDeploy() {
Serial.println("Lista de archivos en SPIFFS:");
File root = SPIFFS.open("/");
if (!root) {
Serial.println("Error al abrir el directorio raíz");
return;
}
File file = root.openNextFile();
int fileCount = 0;
while (file) {
if (!file.isDirectory()) {
fileCount++;
Serial.printf("%d. %s - %d bytes\n", fileCount, file.name(), file.size());
}
file = root.openNextFile();
}
if (fileCount == 0) {
Serial.println("No hay archivos en SPIFFS.");
}
root.close();
}
void serialDeleteFile(String fileName) {
// Asegurarse de que el nombre del archivo comience con "/"
if (!fileName.startsWith("/")) {
fileName = "/" + fileName;
}
// Verificar si el archivo existe
if (SPIFFS.exists(fileName)) {
// Intenta eliminar el archivo directamente
if (SPIFFS.remove(fileName)) {
Serial.printf("Archivo %s eliminado con éxito.\n", fileName.c_str());
return;
}
}
// Si no se pudo eliminar directamente, se intentará el método alternativo
// Nota: Problemas con esta parte del código: Delete no servía en monitor serie
// Solo así funcionó, intentar corregir después.
File root = SPIFFS.open("/");
File file = root.openNextFile();
bool found = false;
while (file && !found) {
String currentFileName = String(file.name());
if (currentFileName.equals(fileName)) {
found = true;
file.close();
if (SPIFFS.remove(fileName)) {
Serial.printf("Archivo %s eliminado con éxito.\n", fileName.c_str());
} else {
Serial.printf("Error al eliminar el archivo %s.\n", fileName.c_str());
}
}
file = root.openNextFile();
}
root.close();
if (!found) {
Serial.printf("El archivo %s no existe.\n", fileName.c_str());
}
}
void serialShowMemory() {
size_t totalBytes = SPIFFS.totalBytes();
size_t usedBytes = SPIFFS.usedBytes();
size_t freeBytes = totalBytes - usedBytes;
// Calculamos el 75% del espacio total como el espacio "seguro"
size_t safeBytes = totalBytes * 0.75;
size_t safeUsedBytes = (usedBytes > safeBytes) ? safeBytes : usedBytes;
float safeUsagePercentage = (safeUsedBytes * 100.0) / safeBytes;
Serial.println("Memoria SPIFFS:");
Serial.printf("Total: %u bytes\n", totalBytes);
Serial.printf("Usado: %u bytes\n", usedBytes);
Serial.printf("Libre: %u bytes\n", freeBytes);
Serial.println("\nUso seguro de memoria (75% del total):");
Serial.printf("Espacio seguro total: %u bytes\n", safeBytes);
Serial.printf("Usado del espacio seguro: %u bytes\n", safeUsedBytes);
Serial.printf("Porcentaje de uso seguro: %.2f%%\n", safeUsagePercentage);
// Advertencia si el uso supera el 75% del espacio seguro
if (safeUsagePercentage > 75.0) {
Serial.println("\n¡ADVERTENCIA!");
Serial.println("El uso de almacenamiento supera el 75% del espacio seguro.");
Serial.println("El almacenamiento puede no funcionar con fiabilidad.");
Serial.println("Se recomienda liberar espacio.");
}
Serial.println("\nNOTA: Según la documentación oficial de Espressif,");
Serial.println("SPIFFS solo puede utilizar de forma fiable alrededor");
Serial.println("del 75% del espacio de partición.");
}
void setup() {
WiFi.mode(WIFI_AP_STA); // Modo AP + STA
Serial.begin(115200);
if (!SPIFFS.begin(true)) {
Serial.println("Error al montar SPIFFS");
return;
}
// Configurar WiFiManager
WiFiManager wifiManager;
//el SSID es ESP32-Config y la contraseña es "password"... sí, la contraseña es contraseña lol
if (!wifiManager.autoConnect("ESP32-Config", "password")) {
Serial.println("Falló la conexión y expiró el tiempo de espera");
} else {
Serial.println("Conectado al WiFi");
}
// Mantener el punto de acceso activo
WiFi.softAP("ESP32-AP", "password");
// Configurar rutas del servidor web
server.on("/", HTTP_GET, handleRoot);
server.on("/upload", HTTP_POST, handleFileUploadComplete, handleFileUpload);
server.on("/download", HTTP_GET, handleFileDownload);
server.on("/delete", HTTP_GET, handleDeleteFile);
server.begin();
Serial.println("Servidor HTTP iniciado");
Serial.print("IP del punto de acceso: ");
Serial.println(WiFi.softAPIP());
Serial.print("IP de la estación: ");
Serial.println(WiFi.localIP());
Serial.println("Comandos disponibles:");
Serial.println("- deploy: Muestra la lista de archivos en SPIFFS");
Serial.println("- delete [nombrearchivo]: Elimina el archivo especificado");
Serial.println("- memory: Muestra la memoria disponible en SPIFFS");
}
void loop() {
server.handleClient();
if (Serial.available()) {
String command = Serial.readStringUntil('\n');
command.trim();
String lowerCommand = command;
lowerCommand.toLowerCase();
if (lowerCommand == "deploy") {
serialDeploy();
} else if (lowerCommand.startsWith("delete ")) {
String fileName = command.substring(7); // Extrae el nombre del archivo sin convertir a minúsculas
serialDeleteFile(fileName);
} else if (lowerCommand == "memory") {
serialShowMemory();
}
}
}