1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/packages/app-cli/app/command-set.ts

56 lines
1.5 KiB
TypeScript
Raw Normal View History

import BaseCommand from './base-command';
const { app } = require('./app.js');
import { _ } from '@joplin/lib/locale';
import BaseModel from '@joplin/lib/BaseModel';
import Database from '@joplin/lib/database';
import Note from '@joplin/lib/models/Note';
2017-07-10 22:03:46 +02:00
class Command extends BaseCommand {
public override usage() {
2017-07-28 20:13:07 +02:00
return 'set <note> <name> [value]';
2017-07-10 22:03:46 +02:00
}
public override 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
}
public override async action(args: any) {
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 timestamp = Date.now();
const newNote: any = {
2017-07-11 20:17:23 +02:00
id: notes[i].id,
type_: notes[i].type_,
updated_time: timestamp,
2017-07-11 20:17:23 +02:00
};
newNote[propName] = propValue;
if (!newNote.id) newNote.created_time = timestamp;
await Note.save(newNote, {
autoTimestamp: false, // No auto-timestamp because user may have provided them
});
2017-07-10 22:03:46 +02:00
}
}
}
module.exports = Command;