joplin/CliClient/app/command-dump.js

44 lines
905 B
JavaScript
Raw Normal View History

2017-07-10 20:03:46 +00:00
import { BaseCommand } from './base-command.js';
import { app } from './app.js';
import { _ } from 'lib/locale.js';
import { Folder } from 'lib/models/folder.js';
import { Note } from 'lib/models/note.js';
import { Tag } from 'lib/models/tag.js';
class Command extends BaseCommand {
usage() {
return 'dump';
}
description() {
return 'Dumps the complete database as JSON.';
}
2017-07-18 18:21:03 +00:00
hidden() {
return true;
}
2017-07-10 20:03:46 +00:00
async action(args) {
let items = [];
let folders = await Folder.all();
for (let i = 0; i < folders.length; i++) {
let folder = folders[i];
let notes = await Note.previews(folder.id);
items.push(folder);
items = items.concat(notes);
}
let tags = await Tag.all();
for (let i = 0; i < tags.length; i++) {
2017-07-25 18:36:52 +00:00
tags[i].notes_ = await Tag.noteIds(tags[i].id);
2017-07-10 20:03:46 +00:00
}
items = items.concat(tags);
2017-10-07 16:30:27 +00:00
this.stdout(JSON.stringify(items));
2017-07-10 20:03:46 +00:00
}
}
module.exports = Command;