mirror of
https://github.com/antos-rde/antosdk-apps.git
synced 2024-11-08 14:38:28 +01:00
104 lines
3.6 KiB
JavaScript
104 lines
3.6 KiB
JavaScript
importScripts("os://scripts/jszip.min.js".getlink());
|
|
|
|
|
|
class ZipJob extends AntOSDKBaseJob {
|
|
constructor(data)
|
|
{
|
|
super(data);
|
|
}
|
|
|
|
execute()
|
|
{
|
|
if(!JSZip)
|
|
{
|
|
const e_msg = "JSZip module is not loaded";
|
|
this.log_error(e_msg);
|
|
return this.error(e_msg);
|
|
}
|
|
switch (this.job.cmd) {
|
|
case 'zip-mk':
|
|
this.mkar()
|
|
.then(d => this.result(d))
|
|
.catch(e => this.error(e));
|
|
break;
|
|
default:
|
|
const err_msg = `Unkown job ${this.job.cmd}`;
|
|
this.log_error(err_msg);
|
|
return this.error(err_msg);
|
|
}
|
|
}
|
|
|
|
aradd(list, zip, base)
|
|
{
|
|
const promises = [];
|
|
for (const file of list) {
|
|
promises.push(new Promise(async (resolve, reject) => {
|
|
try {
|
|
const basename = file.split("/").pop();
|
|
const meta = await this.meta(file);
|
|
if (meta.type == "dir") {
|
|
const ret = await this.scandir(file);
|
|
const dirs = ret.map(v => v.path);
|
|
if (dirs.length > 0) {
|
|
await this.aradd(dirs, zip, `${base}${basename}/`);
|
|
resolve(undefined);
|
|
}
|
|
else {
|
|
resolve(undefined);
|
|
}
|
|
}
|
|
else {
|
|
const ret = await this.read_files([file], "arraybuffer");
|
|
const blob = new Blob( [ret[0]], {
|
|
type: "octet/stream",
|
|
});
|
|
const b64 = await this.b64("binary", blob);
|
|
const z_path = `${base}${basename}`.replace(
|
|
/^\/+|\/+$/g,
|
|
"");
|
|
zip.file(z_path, b64.replace("data:octet/stream;base64,",""), { base64: true, compression : "DEFLATE" });
|
|
this.log_info(`${file} added to zip`);
|
|
resolve(undefined);
|
|
}
|
|
} catch (error) {
|
|
this.log_error(`${file}: ${error.toString()}`);
|
|
reject(error);
|
|
}
|
|
}));
|
|
}
|
|
return Promise.all(promises);
|
|
}
|
|
|
|
mkar()
|
|
{
|
|
const src = this.job.data.src;
|
|
const dest = this.job.data.dest;
|
|
return new Promise(async (resolve, reject) => {
|
|
try {
|
|
const zip = new JSZip();
|
|
const meta = await this.meta(this.job.data.src);
|
|
if(meta.type === "file")
|
|
{
|
|
await this.aradd([src], zip, "/");
|
|
}
|
|
else
|
|
{
|
|
const ret = await this.scandir(src);
|
|
await this.aradd(ret.map(v => v.path), zip, "/");
|
|
}
|
|
const z_data = await zip.generateAsync({ type: "arraybuffer" });
|
|
const blob = new Blob([z_data], {
|
|
type: "application/octet-stream"});
|
|
await this.save_file(dest, blob,"binary");
|
|
this.log_info(`Zip archive saved in ${dest}`);
|
|
resolve(dest);
|
|
} catch (error) {
|
|
this.log_error(`Unable to commpress ${src} -> ${dest}: ${error.toString()}`);
|
|
reject(error);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
API.jobhandle["zip-mk"] = ZipJob;
|