176 lines
6.4 KiB
Vue
176 lines
6.4 KiB
Vue
<template>
|
|
<div class="container-xxl" role="main">
|
|
<div class="page-header">
|
|
<h1>Firmware Upgrade</h1>
|
|
</div>
|
|
|
|
<div class="position-relative" v-if="loading">
|
|
<div class="position-absolute top-50 start-50 translate-middle">
|
|
<div class="spinner-border" role="status">
|
|
<span class="visually-hidden">Loading...</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div v-if="!loading && !uploading && OTAError != ''" class="card">
|
|
<div class="card-header text-white bg-danger">OTA Error</div>
|
|
<div class="card-body text-center">
|
|
<p class="h1 mb-2">
|
|
<BIconExclamationCircleFill />
|
|
</p>
|
|
|
|
<span style="vertical-align: middle" class="ml-2">
|
|
{{ OTAError }}
|
|
</span>
|
|
<br />
|
|
<br />
|
|
<button class="btn btn-light" @click="clear">
|
|
<BIconArrowLeft /> Back
|
|
</button>
|
|
<button class="btn btn-primary" @click="retryOTA">
|
|
<BIconArrowRepeat /> Retry
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div v-else-if="!loading && !uploading && OTASuccess" class="card">
|
|
<div class="card-header text-white bg-success">OTA Status</div>
|
|
<div class="card-body text-center">
|
|
<span class="h1 mb-2">
|
|
<BIconCheckCircle />
|
|
</span>
|
|
<span> OTA Success </span>
|
|
<br />
|
|
<br />
|
|
<button class="btn btn-primary" @click="clear">
|
|
<BIconArrowLeft /> Back
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div v-else-if="!loading && !uploading" class="card">
|
|
<div class="card-header text-white bg-primary">Firmware Upload</div>
|
|
<div class="card-body text-center">
|
|
<div class="form-group pt-2 mt-3">
|
|
<input class="form-control" type="file" ref="file" accept=".bin,.bin.gz" @change="uploadOTA" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div v-else-if="!loading && uploading" class="card">
|
|
<div class="card-header text-white bg-primary">Upload Progress</div>
|
|
<div class="card-body text-center">
|
|
<div class="progress">
|
|
<div class="progress-bar" role="progressbar" :style="{ width: progress + '%' }"
|
|
v-bind:aria-valuenow="progress" aria-valuemin="0" aria-valuemax="100">
|
|
{{ progress }}%
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import SparkMD5 from "spark-md5";
|
|
|
|
export default defineComponent({
|
|
data() {
|
|
return {
|
|
loading: true,
|
|
uploading: false,
|
|
progress: 0,
|
|
OTAError: "",
|
|
OTASuccess: false,
|
|
type: "firmware",
|
|
file: {} as Blob,
|
|
};
|
|
},
|
|
methods: {
|
|
fileMD5(file: Blob) {
|
|
return new Promise((resolve, reject) => {
|
|
const blobSlice = File.prototype.slice;
|
|
const chunkSize = 2097152; // Read in chunks of 2MB
|
|
const chunks = Math.ceil(file.size / chunkSize);
|
|
const spark = new SparkMD5.ArrayBuffer();
|
|
const fileReader = new FileReader();
|
|
let currentChunk = 0;
|
|
fileReader.onload = (e: Event) => {
|
|
spark.append(fileReader.result as ArrayBuffer); // Append array buffer
|
|
currentChunk += 1;
|
|
if (currentChunk < chunks) {
|
|
loadNext();
|
|
} else {
|
|
const md5 = spark.end();
|
|
resolve(md5);
|
|
}
|
|
};
|
|
fileReader.onerror = (e) => {
|
|
reject(e);
|
|
};
|
|
const loadNext = () => {
|
|
const start = currentChunk * chunkSize;
|
|
const end =
|
|
start + chunkSize >= file.size ? file.size : start + chunkSize;
|
|
fileReader.readAsArrayBuffer(blobSlice.call(file, start, end));
|
|
};
|
|
loadNext();
|
|
});
|
|
},
|
|
uploadOTA(event: Event | null) {
|
|
this.uploading = true;
|
|
const formData = new FormData();
|
|
if (event !== null) {
|
|
const target= event.target as HTMLInputElement;
|
|
if (target.files !== null) {
|
|
this.file = target.files[0];
|
|
}
|
|
}
|
|
const request = new XMLHttpRequest();
|
|
request.addEventListener("load", () => {
|
|
// request.response will hold the response from the server
|
|
if (request.status === 200) {
|
|
this.OTASuccess = true;
|
|
} else if (request.status !== 500) {
|
|
this.OTAError = `[HTTP ERROR] ${request.statusText}`;
|
|
} else {
|
|
this.OTAError = request.responseText;
|
|
}
|
|
this.uploading = false;
|
|
this.progress = 0;
|
|
});
|
|
// Upload progress
|
|
request.upload.addEventListener("progress", (e) => {
|
|
this.progress = Math.trunc((e.loaded / e.total) * 100);
|
|
});
|
|
request.withCredentials = true;
|
|
this.fileMD5(this.file)
|
|
.then((md5) => {
|
|
formData.append("MD5", (md5 as string));
|
|
formData.append("firmware", this.file, "firmware");
|
|
request.open("post", "/api/firmware/update");
|
|
request.send(formData);
|
|
})
|
|
.catch(() => {
|
|
this.OTAError =
|
|
"Unknown error while upload, check the console for details.";
|
|
this.uploading = false;
|
|
this.progress = 0;
|
|
});
|
|
},
|
|
retryOTA() {
|
|
this.OTAError = "";
|
|
this.OTASuccess = false;
|
|
this.uploadOTA(null);
|
|
},
|
|
clear() {
|
|
this.OTAError = "";
|
|
this.OTASuccess = false;
|
|
},
|
|
},
|
|
mounted() {
|
|
this.loading = false;
|
|
},
|
|
});
|
|
</script> |