2023-12-20 21:08:07 +02:00
|
|
|
import BaseCommand from './base-command';
|
2024-01-20 16:29:21 +02:00
|
|
|
import app from './app';
|
2023-12-20 21:08:07 +02:00
|
|
|
import { _ } from '@joplin/lib/locale';
|
|
|
|
import BaseModel from '@joplin/lib/BaseModel';
|
|
|
|
import shim from '@joplin/lib/shim';
|
2017-10-20 00:02:13 +02:00
|
|
|
|
|
|
|
class Command extends BaseCommand {
|
2023-12-20 21:08:07 +02:00
|
|
|
public override usage() {
|
2017-10-20 00:02:13 +02:00
|
|
|
return 'attach <note> <file>';
|
|
|
|
}
|
|
|
|
|
2023-12-20 21:08:07 +02:00
|
|
|
public override description() {
|
2017-10-20 00:02:13 +02:00
|
|
|
return _('Attaches the given file to the note.');
|
|
|
|
}
|
|
|
|
|
2024-04-05 13:16:49 +02:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
2023-12-20 21:08:07 +02:00
|
|
|
public override async action(args: any) {
|
2020-03-14 01:46:14 +02:00
|
|
|
const title = args['note'];
|
2017-10-20 00:02:13 +02:00
|
|
|
|
2020-03-14 01:46:14 +02:00
|
|
|
const note = await app().loadItem(BaseModel.TYPE_NOTE, title, { parent: app().currentFolder() });
|
2017-12-26 12:38:53 +02:00
|
|
|
this.encryptionCheck(note);
|
2017-10-20 00:02:13 +02:00
|
|
|
if (!note) throw new Error(_('Cannot find "%s".', title));
|
|
|
|
|
|
|
|
const localFilePath = args['file'];
|
|
|
|
|
2017-11-11 00:18:00 +02:00
|
|
|
await shim.attachFileToNote(note, localFilePath);
|
2017-10-20 00:02:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-30 09:35:42 +02:00
|
|
|
module.exports = Command;
|