2022-11-01 17:28:14 +02:00
const BaseCommand = require ( './base-command' ) . default ;
2017-11-03 02:09:34 +02:00
const { app } = require ( './app.js' ) ;
2020-11-07 17:59:37 +02:00
const { _ } = require ( '@joplin/lib/locale' ) ;
2021-01-22 19:41:11 +02:00
const Note = require ( '@joplin/lib/models/Note' ) . default ;
2020-11-07 17:59:37 +02:00
const BaseModel = require ( '@joplin/lib/BaseModel' ) . default ;
2017-07-10 22:03:46 +02:00
class Command extends BaseCommand {
usage ( ) {
2017-10-23 23:48:29 +02:00
return 'rmnote <note-pattern>' ;
}
2017-07-10 22:03:46 +02:00
description ( ) {
2017-08-04 18:02:43 +02:00
return _ ( 'Deletes the notes matching <note-pattern>.' ) ;
2017-07-10 22:03:46 +02:00
}
options ( ) {
2019-07-30 09:35:42 +02:00
return [ [ '-f, --force' , _ ( 'Deletes the notes without asking for confirmation.' ) ] ] ;
2017-07-10 22:03:46 +02:00
}
async action ( args ) {
2017-08-04 18:02:43 +02:00
const pattern = args [ 'note-pattern' ] ;
2017-08-04 18:50:12 +02:00
const force = args . options && args . options . force === true ;
2017-07-11 20:17:23 +02:00
2017-08-04 18:02:43 +02:00
const notes = await app ( ) . loadItems ( BaseModel . TYPE _NOTE , pattern ) ;
if ( ! notes . length ) throw new Error ( _ ( 'Cannot find "%s".' , pattern ) ) ;
2017-10-07 19:07:38 +02:00
2017-10-23 23:48:29 +02:00
const ok = force ? true : await this . prompt ( notes . length > 1 ? _ ( '%d notes match this pattern. Delete them?' , notes . length ) : _ ( 'Delete note?' ) , { booleanAnswerDefault : 'n' } ) ;
2017-10-07 20:05:35 +02:00
if ( ! ok ) return ;
2020-05-21 10:14:33 +02:00
const ids = notes . map ( n => n . id ) ;
2017-10-07 20:05:35 +02:00
await Note . batchDelete ( ids ) ;
2017-07-10 22:03:46 +02:00
}
}
2019-07-30 09:35:42 +02:00
module . exports = Command ;