"use strict"; import BNote from "../../becca/entities/bnote.js"; import TaskContext from "../task_context.js"; import noteService from "../../services/notes.js"; import imageService from "../../services/image.js"; import protectedSessionService from "../protected_session.js"; import markdownService from "./markdown.js"; import mimeService from "./mime.js"; import utils from "../../services/utils.js"; import importUtils from "./utils.js"; import htmlSanitizer from "../html_sanitizer.js"; import { File } from "./common.js"; function importSingleFile(taskContext: TaskContext, file: File, parentNote: BNote) { const mime = mimeService.getMime(file.originalname) || file.mimetype; if (taskContext?.data?.textImportedAsText) { if (mime === 'text/html') { return importHtml(taskContext, file, parentNote); } else if (['text/markdown', 'text/x-markdown'].includes(mime)) { return importMarkdown(taskContext, file, parentNote); } else if (mime === 'text/plain') { return importPlainText(taskContext, file, parentNote); } } if (taskContext?.data?.codeImportedAsCode && mimeService.getType(taskContext.data, mime) === 'code') { return importCodeNote(taskContext, file, parentNote); } if (mime.startsWith("image/")) { return importImage(file, parentNote, taskContext); } return importFile(taskContext, file, parentNote); } function importImage(file: File, parentNote: BNote, taskContext: TaskContext) { if (typeof file.buffer === "string") { throw new Error("Invalid file content for image."); } const {note} = imageService.saveImage(parentNote.noteId, file.buffer, file.originalname, !!taskContext.data?.shrinkImages); taskContext.increaseProgressCount(); return note; } function importFile(taskContext: TaskContext, file: File, parentNote: BNote) { const originalName = file.originalname; const {note} = noteService.createNewNote({ parentNoteId: parentNote.noteId, title: originalName, content: file.buffer, isProtected: parentNote.isProtected && protectedSessionService.isProtectedSessionAvailable(), type: 'file', mime: mimeService.getMime(originalName) || file.mimetype }); note.addLabel("originalFileName", originalName); taskContext.increaseProgressCount(); return note; } function importCodeNote(taskContext: TaskContext, file: File, parentNote: BNote) { const title = utils.getNoteTitle(file.originalname, !!taskContext.data?.replaceUnderscoresWithSpaces); const content = file.buffer.toString("utf-8"); const detectedMime = mimeService.getMime(file.originalname) || file.mimetype; const mime = mimeService.normalizeMimeType(detectedMime); const { note } = noteService.createNewNote({ parentNoteId: parentNote.noteId, title, content, type: 'code', mime: mime, isProtected: parentNote.isProtected && protectedSessionService.isProtectedSessionAvailable() }); taskContext.increaseProgressCount(); return note; } function importPlainText(taskContext: TaskContext, file: File, parentNote: BNote) { const title = utils.getNoteTitle(file.originalname, !!taskContext.data?.replaceUnderscoresWithSpaces); const plainTextContent = file.buffer.toString("utf-8"); const htmlContent = convertTextToHtml(plainTextContent); const {note} = noteService.createNewNote({ parentNoteId: parentNote.noteId, title, content: htmlContent, type: 'text', mime: 'text/html', isProtected: parentNote.isProtected && protectedSessionService.isProtectedSessionAvailable(), }); taskContext.increaseProgressCount(); return note; } function convertTextToHtml(text: string) { // 1: Plain Text Search text = text.replace(/&/g, "&"). replace(//g, ">"); // 2: Line Breaks text = text.replace(/\r\n?|\n/g, "
"); // 3: Paragraphs text = text.replace(/
\s*
/g, "

"); // 4: Wrap in Paragraph Tags text = `

${text}

`; return text; } function importMarkdown(taskContext: TaskContext, file: File, parentNote: BNote) { const title = utils.getNoteTitle(file.originalname, !!taskContext.data?.replaceUnderscoresWithSpaces); const markdownContent = file.buffer.toString("utf-8"); let htmlContent = markdownService.renderToHtml(markdownContent, title); if (taskContext.data?.safeImport) { htmlContent = htmlSanitizer.sanitize(htmlContent); } const {note} = noteService.createNewNote({ parentNoteId: parentNote.noteId, title, content: htmlContent, type: 'text', mime: 'text/html', isProtected: parentNote.isProtected && protectedSessionService.isProtectedSessionAvailable(), }); taskContext.increaseProgressCount(); return note; } function importHtml(taskContext: TaskContext, file: File, parentNote: BNote) { const title = utils.getNoteTitle(file.originalname, !!taskContext.data?.replaceUnderscoresWithSpaces); let content = file.buffer.toString("utf-8"); if (taskContext?.data?.safeImport) { content = htmlSanitizer.sanitize(content); } content = importUtils.handleH1(content, title); const {note} = noteService.createNewNote({ parentNoteId: parentNote.noteId, title, content, type: 'text', mime: 'text/html', isProtected: parentNote.isProtected && protectedSessionService.isProtectedSessionAvailable(), }); taskContext.increaseProgressCount(); return note; } function importAttachment(taskContext: TaskContext, file: File, parentNote: BNote) { const mime = mimeService.getMime(file.originalname) || file.mimetype; if (mime.startsWith("image/") && typeof file.buffer !== "string") { imageService.saveImageToAttachment(parentNote.noteId, file.buffer, file.originalname, taskContext.data?.shrinkImages); taskContext.increaseProgressCount(); } else { parentNote.saveAttachment({ title: file.originalname, content: file.buffer, role: 'file', mime: mime }); taskContext.increaseProgressCount(); } } export default { importSingleFile, importAttachment };