trilium/src/services/import/opml.js

86 lines
2.3 KiB
JavaScript
Raw Normal View History

"use strict";
const noteService = require('../../services/notes');
const parseString = require('xml2js').parseString;
2019-02-26 04:22:57 +08:00
const protectedSessionService = require('../protected_session');
2019-02-11 02:36:03 +08:00
/**
* @param {TaskContext} taskContext
2019-02-11 02:36:03 +08:00
* @param {Buffer} fileBuffer
* @param {Note} parentNote
* @return {Promise<*[]|*>}
*/
async function importOpml(taskContext, fileBuffer, parentNote) {
const xml = await new Promise(function(resolve, reject)
{
parseString(fileBuffer, function (err, result) {
if (err) {
reject(err);
}
else {
resolve(result);
}
});
});
2019-02-17 05:13:29 +08:00
if (!['1.0', '1.1', '2.0'].includes(xml.opml.$.version)) {
return [400, 'Unsupported OPML version ' + xml.opml.$.version + ', 1.0, 1.1 or 2.0 expected instead.'];
}
const opmlVersion = parseInt(xml.opml.$.version);
async function importOutline(outline, parentNoteId) {
let title, content;
if (opmlVersion === 1) {
title = outline.$.title;
content = toHtml(outline.$.text);
}
else if (opmlVersion === 2) {
title = outline.$.text;
content = outline.$._note; // _note is already HTML
}
else {
throw new Error("Unrecognized OPML version " + opmlVersion);
}
2019-11-16 18:09:52 +08:00
const {note} = await noteService.createNewNote({
parentNoteId,
title,
content,
isProtected: parentNote.isProtected && protectedSessionService.isProtectedSessionAvailable()
2019-02-26 04:22:57 +08:00
});
2019-02-17 05:13:29 +08:00
taskContext.increaseProgressCount();
2019-02-17 05:13:29 +08:00
for (const childOutline of (outline.outline || [])) {
await importOutline(childOutline, note.noteId);
}
return note;
}
const outlines = xml.opml.body[0].outline || [];
let returnNote = null;
for (const outline of outlines) {
2019-02-17 05:13:29 +08:00
const note = await importOutline(outline, parentNote.noteId);
// first created note will be activated after import
returnNote = returnNote || note;
}
return returnNote;
}
function toHtml(text) {
if (!text) {
return '';
}
return '<p>' + text.replace(/(?:\r\n|\r|\n)/g, '</p><p>') + '</p>';
}
module.exports = {
importOpml
};