"use strict";
const noteService = require('../../services/notes');
const imageService = require('../../services/image.js');
const protectedSessionService = require('../protected_session');
const markdownService = require('./markdown.js');
const mimeService = require('./mime.js');
const utils = require('../../services/utils');
const importUtils = require('./utils');
const htmlSanitizer = require('../html_sanitizer');
function importSingleFile(taskContext, file, parentNote) {
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, parentNote, taskContext) {
const {note} = imageService.saveImage(parentNote.noteId, file.buffer, file.originalname, taskContext.data.shrinkImages);
taskContext.increaseProgressCount();
return note;
}
function importFile(taskContext, file, parentNote) {
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, file, parentNote) {
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, file, parentNote) {
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) {
// 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, file, parentNote) { 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, file, parentNote) { 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; } /** * @param {TaskContext} taskContext * @param file * @param {BNote} parentNote * @returns {BNote} */ function importAttachment(taskContext, file, parentNote) { const mime = mimeService.getMime(file.originalname) || file.mimetype; if (mime.startsWith("image/")) { 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(); } } module.exports = { importSingleFile, importAttachment };