mirror of
https://github.com/xlmnxp/extractify.zip.git
synced 2025-04-03 08:14:57 +03:00
support any filename and add tar.xz
This commit is contained in:
parent
25554d7fe8
commit
09d57d848e
@ -5,6 +5,7 @@ import SevenZip, { SevenZipModule } from "7z-wasm";
|
|||||||
// @ts-expect-error 7z-wasm have that file but typescript can't find it when query it with url
|
// @ts-expect-error 7z-wasm have that file but typescript can't find it when query it with url
|
||||||
import SevenZipWasm from "7z-wasm/7zz.wasm?url";
|
import SevenZipWasm from "7z-wasm/7zz.wasm?url";
|
||||||
import * as Comlink from "comlink";
|
import * as Comlink from "comlink";
|
||||||
|
import { v4 as randomUUID } from "uuid";
|
||||||
import mime from 'mime';
|
import mime from 'mime';
|
||||||
|
|
||||||
export interface iFile {
|
export interface iFile {
|
||||||
@ -49,7 +50,7 @@ export class SevenZipManager {
|
|||||||
if (!this.sevenZip) return;
|
if (!this.sevenZip) return;
|
||||||
|
|
||||||
this.originalName = file.name;
|
this.originalName = file.name;
|
||||||
this.archiveName = file.name.toLocaleLowerCase();
|
this.archiveName = file.name;
|
||||||
|
|
||||||
const stream = this.sevenZip.FS.open(this.archiveName, "w+");
|
const stream = this.sevenZip.FS.open(this.archiveName, "w+");
|
||||||
let archiveData = new Uint8Array(await file.arrayBuffer());
|
let archiveData = new Uint8Array(await file.arrayBuffer());
|
||||||
@ -57,10 +58,10 @@ export class SevenZipManager {
|
|||||||
this.sevenZip.FS.write(stream, archiveData, 0, archiveData.byteLength);
|
this.sevenZip.FS.write(stream, archiveData, 0, archiveData.byteLength);
|
||||||
this.sevenZip.FS.close(stream);
|
this.sevenZip.FS.close(stream);
|
||||||
|
|
||||||
// workaround to support tar.gz formats
|
// workaround to support tar.gz and tar.xz formats
|
||||||
if (this.archiveName.endsWith(".tar.gz")) {
|
if ([".tar.gz", ".tgz", ".tar.xz"].some(ext => this.archiveName.endsWith(ext))) {
|
||||||
this.execute(["x", "-y", this.archiveName, `-o${this.archiveName.replace(".tar.gz", ".tar")}`]);
|
this.archiveName = randomUUID();
|
||||||
this.archiveName = this.archiveName.replace(".tar.gz", ".tar");
|
this.execute(["x", "-y", this.originalName, `-o${this.archiveName}`]);
|
||||||
}
|
}
|
||||||
|
|
||||||
// 7zip get files list
|
// 7zip get files list
|
||||||
|
Loading…
Reference in New Issue
Block a user