mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2024-12-21 19:08:24 +01:00
103 lines
2.5 KiB
JavaScript
103 lines
2.5 KiB
JavaScript
// TODO: Uses the BrowserFS import, needs to be changed for serverside
|
|
|
|
let wasmLocation = "/wasm/";
|
|
|
|
let fs;
|
|
let Buffer;
|
|
|
|
configureFs();
|
|
loadWasm();
|
|
|
|
function configureFs() {
|
|
BrowserFS.configure(
|
|
{
|
|
fs: "InMemory",
|
|
},
|
|
function (e) {
|
|
if (e) {
|
|
// An error happened!
|
|
throw e;
|
|
}
|
|
fs = BrowserFS.BFSRequire("fs");
|
|
Buffer = BrowserFS.BFSRequire("buffer").Buffer;
|
|
|
|
window.fs = fs;
|
|
window.Buffer = Buffer;
|
|
}
|
|
);
|
|
}
|
|
|
|
function loadWasm() {
|
|
const script = document.createElement("script");
|
|
script.src = wasmLocation + "/wasm_exec.js";
|
|
script.async = true;
|
|
document.body.appendChild(script);
|
|
}
|
|
|
|
const runWasm = async (param) => {
|
|
if (window.cachedWasmResponse === undefined) {
|
|
const response = await fetch(wasmLocation + "/pdfcpu.wasm");
|
|
const buffer = await response.arrayBuffer();
|
|
window.cachedWasmResponse = buffer;
|
|
window.go = new Go();
|
|
}
|
|
const { instance } = await WebAssembly.instantiate(
|
|
window.cachedWasmResponse,
|
|
window.go.importObject
|
|
);
|
|
window.go.argv = param;
|
|
await window.go.run(instance);
|
|
return window.go.exitCode;
|
|
};
|
|
|
|
async function loadFileAsync(data) {
|
|
console.log(`Writing file to MemoryFS`);
|
|
await fs.writeFile(`/input.pdf`, data);
|
|
console.log(`Write done. Validating...`);
|
|
let exitcode = await runWasm([
|
|
"pdfcpu.wasm",
|
|
"validate",
|
|
"-c",
|
|
"disable",
|
|
`/input.pdf`,
|
|
]);
|
|
|
|
if (exitcode !== 0)
|
|
throw new Error("There was an error validating your PDFs");
|
|
|
|
console.log(`File is Valid`);
|
|
}
|
|
|
|
export async function impose(snapshot, nup, format) {
|
|
|
|
};
|
|
|
|
export async function oneToOne(wasmArray, snapshot) {
|
|
await loadFileAsync(Buffer.from(snapshot));
|
|
|
|
console.error("Nuping File");
|
|
let exitcode = await runWasm(wasmArray);
|
|
|
|
if (exitcode !== 0) {
|
|
console.error("There was an error nuping your PDFs");
|
|
return;
|
|
}
|
|
|
|
await fs.unlink("input.pdf");
|
|
const contents = fs.readFileSync("output.pdf");
|
|
fs.unlink("output.pdf");
|
|
console.log("Your File ist Ready!");
|
|
return new Uint8Array(contents);
|
|
}
|
|
|
|
export async function manyToOne() {
|
|
//TODO: Do this of neccesary for some operations
|
|
}
|
|
|
|
export async function oneToMany() {
|
|
//TODO: Do this of neccesary for some operations
|
|
}
|
|
|
|
export async function manyToMany() {
|
|
//TODO: Do this of neccesary for some operations
|
|
} |