mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
66 lines
1.6 KiB
JavaScript
66 lines
1.6 KiB
JavaScript
const { BaseCommand } = require('./base-command.js');
|
|
const { _, setLocale } = require('lib/locale.js');
|
|
const { app } = require('./app.js');
|
|
const { Setting } = require('lib/models/setting.js');
|
|
|
|
class Command extends BaseCommand {
|
|
|
|
usage() {
|
|
return 'config [name] [value]';
|
|
}
|
|
|
|
description() {
|
|
return _("Gets or sets a config value. If [value] is not provided, it will show the value of [name]. If neither [name] nor [value] is provided, it will list the current configuration.");
|
|
}
|
|
|
|
options() {
|
|
return [
|
|
['-v, --verbose', _('Also displays unset and hidden config variables.')],
|
|
];
|
|
}
|
|
|
|
async action(args) {
|
|
const verbose = args.options.verbose;
|
|
|
|
const renderKeyValue = (name) => {
|
|
const value = Setting.value(name);
|
|
if (Setting.isEnum(name)) {
|
|
return _('%s = %s (%s)', name, value, Setting.enumOptionsDoc(name));
|
|
} else {
|
|
return _('%s = %s', name, value);
|
|
}
|
|
}
|
|
|
|
if (!args.name && !args.value) {
|
|
let keys = Setting.keys(!verbose, 'cli');
|
|
keys.sort();
|
|
for (let i = 0; i < keys.length; i++) {
|
|
const value = Setting.value(keys[i]);
|
|
if (!verbose && !value) continue;
|
|
this.stdout(renderKeyValue(keys[i]));
|
|
}
|
|
app().gui().showConsole();
|
|
app().gui().maximizeConsole();
|
|
return;
|
|
}
|
|
|
|
if (args.name && !args.value) {
|
|
this.stdout(renderKeyValue(args.name));
|
|
app().gui().showConsole();
|
|
app().gui().maximizeConsole();
|
|
return;
|
|
}
|
|
|
|
Setting.setValue(args.name, args.value);
|
|
|
|
if (args.name == 'locale') {
|
|
setLocale(Setting.value('locale'));
|
|
app().onLocaleChanged();
|
|
}
|
|
|
|
await Setting.saveAll();
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = Command; |