1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/CliClient/app/command-import.js

71 lines
2.3 KiB
JavaScript
Raw Normal View History

const { BaseCommand } = require('./base-command.js');
const InteropService = require('lib/services/InteropService.js');
const BaseModel = require('lib/BaseModel.js');
2018-02-26 21:16:01 +02:00
const { cliUtils } = require('./cli-utils.js');
const { app } = require('./app.js');
const { _ } = require('lib/locale.js');
class Command extends BaseCommand {
usage() {
2018-02-26 21:16:01 +02:00
return 'import <path> [notebook]';
}
description() {
return _('Imports data into Joplin.');
}
options() {
2018-02-27 22:04:38 +02:00
const service = new InteropService();
const formats = service
.modules()
.filter(m => m.type === 'importer')
.map(m => m.format);
2018-02-27 22:04:38 +02:00
return [['--format <format>', _('Source format: %s', ['auto'].concat(formats).join(', '))], ['-f, --force', _('Do not ask for confirmation.')]];
}
async action(args) {
2018-02-26 21:16:01 +02:00
let folder = await app().loadItem(BaseModel.TYPE_FOLDER, args.notebook);
if (args.notebook && !folder) throw new Error(_('Cannot find "%s".', args.notebook));
2018-02-26 20:43:50 +02:00
const importOptions = {};
importOptions.path = args.path;
2018-02-26 21:16:01 +02:00
importOptions.format = args.options.format ? args.options.format : 'auto';
2018-02-26 20:43:50 +02:00
importOptions.destinationFolderId = folder ? folder.id : null;
2018-02-26 21:16:01 +02:00
let lastProgress = '';
// onProgress/onError supported by Enex import only
importOptions.onProgress = progressState => {
2018-02-26 21:16:01 +02:00
let line = [];
line.push(_('Found: %d.', progressState.loaded));
line.push(_('Created: %d.', progressState.created));
if (progressState.updated) line.push(_('Updated: %d.', progressState.updated));
if (progressState.skipped) line.push(_('Skipped: %d.', progressState.skipped));
if (progressState.resourcesCreated) line.push(_('Resources: %d.', progressState.resourcesCreated));
if (progressState.notesTagged) line.push(_('Tagged: %d.', progressState.notesTagged));
lastProgress = line.join(' ');
cliUtils.redraw(lastProgress);
};
importOptions.onError = error => {
2018-02-26 21:16:01 +02:00
let s = error.trace ? error.trace : error.toString();
this.stdout(s);
};
app()
.gui()
.showConsole();
2018-02-26 21:16:01 +02:00
this.stdout(_('Importing notes...'));
const service = new InteropService();
const result = await service.import(importOptions);
result.warnings.map(w => this.stdout(w));
2018-02-26 21:16:01 +02:00
cliUtils.redrawDone();
if (lastProgress) this.stdout(_('The notes have been imported: %s', lastProgress));
}
}
module.exports = Command;