mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-06 11:36:51 +03:00
136 lines
4.4 KiB
HTML
136 lines
4.4 KiB
HTML
<table class="fixed" border="0">
|
|
<col width="300px" /><col width="200px" />
|
|
<tr><td>
|
|
<h2>ESP32 File Server</h2>
|
|
</td><td>
|
|
<button id="dirup" type="button" onclick="dirup()">Directory up</button>
|
|
</td>
|
|
<td>
|
|
<table border="0">
|
|
<tr>
|
|
<td>
|
|
<label for="newfile">Upload a file</label>
|
|
</td>
|
|
<td colspan="2">
|
|
<input id="newfile" type="file" onchange="setpath()" style="width:100%;">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<label for="filepath">Set path on server</label>
|
|
</td>
|
|
<td>
|
|
<input id="filepath" type="text" style="width:100%;">
|
|
</td>
|
|
<td>
|
|
<button id="upload" type="button" onclick="upload()">Upload</button>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td></tr>
|
|
</table>
|
|
|
|
<script type="text/javascript" src="./gethost.js"></script>
|
|
<script>
|
|
function setpath() {
|
|
var fileserverpraefix = "/fileserver";
|
|
var anz_zeichen_fileserver = fileserverpraefix.length;
|
|
var default_path = window.location.pathname.substring(anz_zeichen_fileserver) + document.getElementById("newfile").files[0].name;
|
|
document.getElementById("filepath").value = default_path;
|
|
}
|
|
|
|
function dirup() {
|
|
var str = window.location.href;
|
|
str = str.substring(0, str.length-1);
|
|
var zw = str.indexOf("/");
|
|
var found = zw;
|
|
while (zw >= 0)
|
|
{
|
|
zw = str.indexOf("/", found+1);
|
|
if (zw >= 0)
|
|
found = zw;
|
|
}
|
|
var res = str.substring(0, found+1);
|
|
window.location.href = res;
|
|
}
|
|
|
|
function deleteall(){
|
|
var str = window.location.href;
|
|
// str = str.substring(0, str.length-1);
|
|
// str = str.substring(10, str.length);
|
|
str = str.replace("/fileserver/", "/delete/");
|
|
str = str + "?task=deldircontent";
|
|
if (confirm("This will delete ALL files in this directory!!!\n\nAre you sure?")) {
|
|
alert(str);
|
|
|
|
var xhttp = new XMLHttpRequest();
|
|
xhttp.onreadystatechange = function() {
|
|
if (xhttp.readyState == 4) {
|
|
if (xhttp.status == 200) {
|
|
// document.open();
|
|
// document.write(xhttp.responseText);
|
|
// document.close();
|
|
UpdatePage();
|
|
} else if (xhttp.status == 0) {
|
|
alert("Server closed the connection abruptly!");
|
|
UpdatePage();
|
|
} else {
|
|
// alert(xhttp.status + " Error!\n" + xhttp.responseText);
|
|
UpdatePage();
|
|
}
|
|
}
|
|
};
|
|
xhttp.open("POST", str, true);
|
|
xhttp.send();
|
|
|
|
}
|
|
}
|
|
|
|
function upload() {
|
|
var filePath = document.getElementById("filepath").value;
|
|
var upload_path = "/upload/" + filePath;
|
|
var fileInput = document.getElementById("newfile").files;
|
|
|
|
/* Max size of an individual file. Make sure this
|
|
* value is same as that set in file_server.c */
|
|
var MAX_FILE_SIZE = 2000*1024;
|
|
var MAX_FILE_SIZE_STR = "2000KB";
|
|
|
|
if (fileInput.length == 0) {
|
|
alert("No file selected!");
|
|
} else if (filePath.length == 0) {
|
|
alert("File path on server is not set!");
|
|
} else if (filePath.indexOf(' ') >= 0) {
|
|
alert("File path on server cannot have spaces!");
|
|
} else if (filePath[filePath.length-1] == '/') {
|
|
alert("File name not specified after path!");
|
|
} else if (fileInput[0].size > 2000*1024) {
|
|
alert("File size must be less than 2000KB!");
|
|
} else {
|
|
document.getElementById("newfile").disabled = true;
|
|
document.getElementById("filepath").disabled = true;
|
|
document.getElementById("upload").disabled = true;
|
|
|
|
var file = fileInput[0];
|
|
var xhttp = new XMLHttpRequest();
|
|
xhttp.onreadystatechange = function() {
|
|
if (xhttp.readyState == 4) {
|
|
if (xhttp.status == 200) {
|
|
document.open();
|
|
document.write(xhttp.responseText);
|
|
document.close();
|
|
} else if (xhttp.status == 0) {
|
|
alert("Server closed the connection abruptly!");
|
|
UpdatePage();
|
|
} else {
|
|
alert(xhttp.status + " Error!\n" + xhttp.responseText);
|
|
UpdatePage();
|
|
}
|
|
}
|
|
};
|
|
xhttp.open("POST", upload_path, true);
|
|
xhttp.send(file);
|
|
}
|
|
}
|
|
</script>
|