2025-03-30 21:31:35 +03:00
|
|
|
import cls from "./src/services/cls.js";
|
2025-03-30 21:37:10 +03:00
|
|
|
import fs from "fs/promises";
|
|
|
|
import fsExtra from "fs-extra";
|
|
|
|
import path from "path";
|
2025-03-30 21:31:35 +03:00
|
|
|
|
|
|
|
export async function initializeDatabase() {
|
|
|
|
const sqlInit = (await import("./src/services/sql_init.js")).default;
|
|
|
|
|
|
|
|
cls.init(() => {
|
|
|
|
if (!sqlInit.isDbInitialized()) {
|
|
|
|
sqlInit.createInitialDatabase();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function startElectron() {
|
|
|
|
await import("./electron-main.js");
|
|
|
|
}
|
|
|
|
|
2025-03-30 22:08:52 +03:00
|
|
|
export function importData(input: Buffer, rootId: string, rootTitle: string, rootContent: string) {
|
2025-03-30 21:31:35 +03:00
|
|
|
return new Promise<void>((resolve, reject) => {
|
|
|
|
cls.init(async () => {
|
|
|
|
const beccaLoader = ((await import("./src/becca/becca_loader.js")).default);
|
|
|
|
const notes = ((await import("./src/services/notes.js")).default);
|
|
|
|
beccaLoader.load();
|
|
|
|
const becca = ((await import("./src/becca/becca.js")).default);
|
|
|
|
const utils = ((await import("./src/services/utils.js")).default);
|
|
|
|
const eraseService = ((await import("./src/services/erase.js")).default);
|
|
|
|
const deleteId = utils.randomString(10);
|
|
|
|
|
|
|
|
const existingNote = becca.getNote(rootId);
|
|
|
|
if (existingNote) {
|
|
|
|
existingNote.deleteNote(deleteId);
|
|
|
|
}
|
|
|
|
eraseService.eraseNotesWithDeleteId(deleteId);
|
|
|
|
|
|
|
|
const { note } = notes.createNewNoteWithTarget("into", "none_root", {
|
|
|
|
parentNoteId: "root",
|
|
|
|
noteId: rootId,
|
2025-03-30 22:08:52 +03:00
|
|
|
title: rootTitle,
|
|
|
|
content: rootContent,
|
2025-03-30 21:31:35 +03:00
|
|
|
type: "text"
|
|
|
|
});
|
|
|
|
|
|
|
|
const TaskContext = (await import("./src/services/task_context.js")).default;
|
|
|
|
const { importZip } = ((await import("./src/services/import/zip.js")).default);
|
|
|
|
const context = new TaskContext("no-report");
|
|
|
|
await importZip(context, input, note, { preserveIds: true });
|
|
|
|
|
|
|
|
const { runOnDemandChecks } = (await import("./src/services/consistency_checks.js")).default;
|
|
|
|
await runOnDemandChecks(true);
|
|
|
|
|
|
|
|
becca.reset();
|
|
|
|
beccaLoader.load();
|
|
|
|
|
|
|
|
resolve();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
2025-03-30 21:37:10 +03:00
|
|
|
|
|
|
|
export async function extractZip(zipFilePath: string, outputPath: string) {
|
|
|
|
const deferred = (await import("./src/services/utils.js")).deferred;
|
|
|
|
|
|
|
|
const promise = deferred<void>()
|
|
|
|
setTimeout(async () => {
|
|
|
|
// Then extract the zip.
|
|
|
|
const { readZipFile, readContent } = (await import("./src/services/import/zip.js"));
|
|
|
|
await readZipFile(await fs.readFile(zipFilePath), async (zip, entry) => {
|
|
|
|
// We ignore directories since they can appear out of order anyway.
|
|
|
|
if (!entry.fileName.endsWith("/")) {
|
|
|
|
const destPath = path.join(outputPath, entry.fileName);
|
|
|
|
const fileContent = await readContent(zip, entry);
|
|
|
|
|
|
|
|
await fsExtra.mkdirs(path.dirname(destPath));
|
|
|
|
await fs.writeFile(destPath, fileContent);
|
|
|
|
}
|
|
|
|
|
|
|
|
zip.readEntry();
|
|
|
|
});
|
|
|
|
promise.resolve();
|
|
|
|
}, 1000);
|
|
|
|
await promise;
|
|
|
|
}
|