2018-11-16 19:12:04 +08:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
const noteService = require('../../services/notes');
|
|
|
|
const parseString = require('xml2js').parseString;
|
|
|
|
|
2018-11-16 21:36:50 +08:00
|
|
|
async function importOpml(fileBuffer, parentNote) {
|
2018-11-16 19:12:04 +08:00
|
|
|
const xml = await new Promise(function(resolve, reject)
|
|
|
|
{
|
2018-11-16 21:36:50 +08:00
|
|
|
parseString(fileBuffer, function (err, result) {
|
2018-11-16 19:12:04 +08:00
|
|
|
if (err) {
|
|
|
|
reject(err);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
resolve(result);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
if (xml.opml.$.version !== '1.0' && xml.opml.$.version !== '1.1') {
|
|
|
|
return [400, 'Unsupported OPML version ' + xml.opml.$.version + ', 1.0 or 1.1 expected instead.'];
|
|
|
|
}
|
|
|
|
|
|
|
|
const outlines = xml.opml.body[0].outline || [];
|
|
|
|
let returnNote = null;
|
|
|
|
|
|
|
|
for (const outline of outlines) {
|
|
|
|
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>';
|
|
|
|
}
|
|
|
|
|
|
|
|
async function importOutline(outline, parentNoteId) {
|
|
|
|
const {note} = await noteService.createNote(parentNoteId, outline.$.title, toHtml(outline.$.text));
|
|
|
|
|
|
|
|
for (const childOutline of (outline.outline || [])) {
|
|
|
|
await importOutline(childOutline, note.noteId);
|
|
|
|
}
|
|
|
|
|
|
|
|
return note;
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
importOpml
|
|
|
|
};
|