2023-12-20 11:08:07 -08:00
import BaseCommand from './base-command' ;
2024-01-20 14:29:21 +00:00
import app from './app' ;
2023-12-20 11:08:07 -08:00
import { _ } from '@joplin/lib/locale' ;
import Note from '@joplin/lib/models/Note' ;
2024-03-14 11:38:07 -07:00
import BaseModel , { DeleteOptions } from '@joplin/lib/BaseModel' ;
2024-03-02 14:25:27 +00:00
import { NoteEntity } from '@joplin/lib/services/database/types' ;
2017-07-10 20:03:46 +00:00
class Command extends BaseCommand {
2023-12-20 11:08:07 -08:00
public override usage() {
2017-10-23 22:48:29 +01:00
return 'rmnote <note-pattern>' ;
}
2023-12-20 11:08:07 -08:00
public override description() {
2017-08-04 18:02:43 +02:00
return _ ( 'Deletes the notes matching <note-pattern>.' ) ;
2017-07-10 20:03:46 +00:00
}
2023-12-20 11:08:07 -08:00
public override options() {
2024-03-14 11:38:07 -07:00
return [
[ '-f, --force' , _ ( 'Deletes the notes without asking for confirmation.' ) ] ,
[ '-p, --permanent' , _ ( 'Deletes notes permanently, skipping the trash.' ) ] ,
] ;
2017-07-10 20:03:46 +00:00
}
2024-04-05 12:16:49 +01:00
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
2023-12-20 11:08:07 -08:00
public override async action ( args : any ) {
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 18:17:23 +00:00
2024-03-02 14:25:27 +00:00
const notes : NoteEntity [ ] = await app ( ) . loadItems ( BaseModel . TYPE_NOTE , pattern ) ;
2017-08-04 18:02:43 +02:00
if ( ! notes . length ) throw new Error ( _ ( 'Cannot find "%s".' , pattern ) ) ;
2017-10-07 18:07:38 +01:00
2024-03-02 14:25:27 +00:00
let ok = true ;
if ( ! force && notes . length > 1 ) {
ok = await this . prompt ( _ ( '%d notes match this pattern. Delete them?' , notes . length ) , { booleanAnswerDefault : 'n' } ) ;
}
2024-03-14 11:38:07 -07:00
const permanent = ( args . options ? . permanent === true ) || notes . every ( n = > ! ! n . deleted_time ) ;
if ( ! force && permanent ) {
const message = (
notes . length === 1 ? _ ( 'This will permanently delete the note "%s". Continue?' , notes [ 0 ] . title ) : _ ( '%d notes will be permanently deleted. Continue?' , notes . length )
) ;
ok = await this . prompt ( message , { booleanAnswerDefault : 'n' } ) ;
}
2017-10-07 19:05:35 +01:00
if ( ! ok ) return ;
2024-03-02 14:25:27 +00:00
const ids = notes . map ( n = > n . id ) ;
2024-03-14 11:38:07 -07:00
const options : DeleteOptions = {
toTrash : ! permanent ,
sourceDescription : 'rmnote' ,
} ;
await Note . batchDelete ( ids , options ) ;
2017-07-10 20:03:46 +00:00
}
}
2019-07-30 09:35:42 +02:00
module . exports = Command ;