Files
notesnook/apps/web/src/utils/streams/export-stream.ts
2025-11-26 15:34:51 +05:00

85 lines
2.6 KiB
TypeScript

/*
This file is part of the Notesnook project (https://notesnook.com/)
Copyright (C) 2023 Streetwriters (Private) Limited
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import { ExportableItem } from "@notesnook/common";
import { db } from "../../common/db";
import { ZipFile } from "./zip-stream";
import { streamingDecryptFile } from "../../interfaces/fs";
export class ExportStream extends TransformStream<
ExportableItem | Error,
ZipFile
> {
progress = 0;
constructor(
report: (progress: {
text: string;
current?: number;
total?: number;
}) => void,
handleError: (error: Error) => void,
totalItems?: number
) {
super({
transform: async (item, controller) => {
if (item instanceof Error) {
handleError(item);
return;
}
if (item.type === "attachment") {
try {
report({ text: `Downloading attachment: ${item.path}` });
await db
.fs()
.downloadFile("exports", item.data.hash, item.data.chunkSize);
const key = await db.attachments.decryptKey(item.data.key);
if (!key) return;
const stream = await streamingDecryptFile(item.data.hash, {
key,
iv: item.data.iv,
name: item.data.filename,
type: item.data.mimeType,
isUploaded: !!item.data.dateUploaded
});
if (!stream) return;
controller.enqueue({ ...item, data: stream });
report({
current: this.progress++,
text: `Saving attachment: ${item.path}`
});
} catch (e) {
if (e instanceof Error) {
e.message = `Failed to export attachment: ${item.path}. ${e.message}`;
handleError(e);
}
}
} else {
controller.enqueue(item);
report({
current: this.progress++,
text: `Exporting note: ${item.path}`,
total: totalItems
});
}
}
});
}
}