1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/CliClient/app/command-status.js

54 lines
1.2 KiB
JavaScript
Raw Normal View History

const { BaseCommand } = require('./base-command.js');
const { app } = require('./app.js');
2017-12-14 20:12:14 +02:00
const Setting = require('lib/models/Setting.js');
const { _ } = require('lib/locale.js');
const { ReportService } = require('lib/services/report.js');
2017-07-13 20:09:47 +02:00
class Command extends BaseCommand {
usage() {
return 'status';
}
description() {
2017-07-18 20:21:03 +02:00
return _('Displays summary about the notes and notebooks.');
2017-07-13 20:09:47 +02:00
}
async action() {
const service = new ReportService();
const report = await service.status(Setting.value('sync.target'));
2017-07-13 20:09:47 +02:00
for (let i = 0; i < report.length; i++) {
const section = report[i];
2017-07-13 20:09:47 +02:00
2017-10-07 18:30:27 +02:00
if (i > 0) this.stdout('');
2017-07-13 20:09:47 +02:00
2019-09-19 23:51:18 +02:00
this.stdout(`# ${section.title}`);
2017-10-07 18:30:27 +02:00
this.stdout('');
2017-07-13 20:09:47 +02:00
let canRetryType = '';
for (const n in section.body) {
2017-07-13 20:09:47 +02:00
if (!section.body.hasOwnProperty(n)) continue;
const item = section.body[n];
if (typeof item === 'object') {
canRetryType = item.canRetryType;
this.stdout(item.text);
} else {
this.stdout(item);
}
}
if (canRetryType === 'e2ee') {
this.stdout('');
this.stdout(_('To retry decryption of these items. Run `e2ee decrypt --retry-failed-items`'));
2017-07-13 20:09:47 +02:00
}
}
app().gui().showConsole();
app().gui().maximizeConsole();
2017-07-13 20:09:47 +02:00
}
}
module.exports = Command;