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

55 lines
1.4 KiB
JavaScript
Raw Normal View History

const { BaseCommand } = require('./base-command.js');
const { app } = require('./app.js');
const { _ } = require('lib/locale.js');
2017-12-14 20:12:14 +02:00
const BaseModel = require('lib/BaseModel.js');
2017-12-07 20:12:46 +02:00
const { Database } = require('lib/database.js');
2017-12-14 20:12:14 +02:00
const Note = require('lib/models/Note.js');
2017-07-10 22:03:46 +02:00
class Command extends BaseCommand {
usage() {
2017-07-28 20:13:07 +02:00
return 'set <note> <name> [value]';
2017-07-10 22:03:46 +02:00
}
description() {
2017-12-07 20:12:46 +02:00
const fields = Note.fields();
const s = [];
for (let i = 0; i < fields.length; i++) {
const f = fields[i];
if (f.name === 'id') continue;
2019-09-19 23:51:18 +02:00
s.push(`${f.name} (${Database.enumName('fieldType', f.type)})`);
2017-12-07 20:12:46 +02:00
}
2017-07-10 22:03:46 +02:00
2017-12-07 20:12:46 +02:00
return _('Sets the property <name> of the given <note> to the given [value]. Possible properties are:\n\n%s', s.join(', '));
2017-08-04 18:02:43 +02:00
}
2017-07-10 22:03:46 +02:00
async action(args) {
const title = args['note'];
const propName = args['name'];
2017-07-10 22:03:46 +02:00
let propValue = args['value'];
if (!propValue) propValue = '';
const notes = await app().loadItems(BaseModel.TYPE_NOTE, title);
2017-07-18 20:21:03 +02:00
if (!notes.length) throw new Error(_('Cannot find "%s".', title));
2017-07-10 22:03:46 +02:00
2017-07-11 20:17:23 +02:00
for (let i = 0; i < notes.length; i++) {
2017-12-26 12:38:53 +02:00
this.encryptionCheck(notes[i]);
const newNote = {
2017-07-11 20:17:23 +02:00
id: notes[i].id,
type_: notes[i].type_,
};
newNote[propName] = propValue;
const timestamp = Date.now();
await Note.save(newNote, {
autoTimestamp: false, // No auto-timestamp because user may have provided them
updated_time: timestamp,
created_time: timestamp,
});
2017-07-10 22:03:46 +02:00
}
}
}
module.exports = Command;