2022-11-01 17:28:14 +02:00
const BaseCommand = require ( './base-command' ) . default ;
2020-11-07 17:59:37 +02:00
const InteropService = require ( '@joplin/lib/services/interop/InteropService' ) . default ;
const BaseModel = require ( '@joplin/lib/BaseModel' ) . 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' ) ;
2017-08-20 16:29:18 +02:00
class Command extends BaseCommand {
usage ( ) {
2018-02-23 21:32:19 +02:00
return 'export <path>' ;
2017-08-20 16:29:18 +02:00
}
description ( ) {
2018-02-23 21:32:19 +02:00
return _ ( 'Exports Joplin data to the given path. By default, it will export the complete database including notebooks, notes, tags and resources.' ) ;
2017-08-20 16:29:18 +02:00
}
options ( ) {
2020-10-09 19:35:46 +02:00
const service = InteropService . instance ( ) ;
2019-07-30 09:35:42 +02:00
const formats = service
. modules ( )
2020-05-21 10:14:33 +02:00
. filter ( m => m . type === 'exporter' && m . format !== 'html' )
. map ( m => m . format + ( m . description ? ` ( ${ m . description } ) ` : '' ) ) ;
2018-02-27 22:04:38 +02:00
2019-07-30 09:35:42 +02:00
return [ [ '--format <format>' , _ ( 'Destination format: %s' , formats . join ( ', ' ) ) ] , [ '--note <note>' , _ ( 'Exports only the given note.' ) ] , [ '--notebook <notebook>' , _ ( 'Exports only the given notebook.' ) ] ] ;
2017-08-20 16:29:18 +02:00
}
2019-07-30 09:35:42 +02:00
2017-08-20 16:29:18 +02:00
async action ( args ) {
2020-03-14 01:46:14 +02:00
const exportOptions = { } ;
2018-02-23 21:32:19 +02:00
exportOptions . path = args . path ;
2018-02-25 23:08:32 +02:00
exportOptions . format = args . options . format ? args . options . format : 'jex' ;
2017-08-20 16:29:18 +02:00
2020-05-20 18:31:41 +02:00
if ( exportOptions . format === 'html' ) throw new Error ( 'HTML export is not supported. Please use the desktop application.' ) ;
2017-08-20 16:29:18 +02:00
if ( args . options . note ) {
const notes = await app ( ) . loadItems ( BaseModel . TYPE _NOTE , args . options . note , { parent : app ( ) . currentFolder ( ) } ) ;
if ( ! notes . length ) throw new Error ( _ ( 'Cannot find "%s".' , args . options . note ) ) ;
2020-05-21 10:14:33 +02:00
exportOptions . sourceNoteIds = notes . map ( n => n . id ) ;
2017-08-20 16:29:18 +02:00
} else if ( args . options . notebook ) {
const folders = await app ( ) . loadItems ( BaseModel . TYPE _FOLDER , args . options . notebook ) ;
if ( ! folders . length ) throw new Error ( _ ( 'Cannot find "%s".' , args . options . notebook ) ) ;
2020-05-21 10:14:33 +02:00
exportOptions . sourceFolderIds = folders . map ( n => n . id ) ;
2017-08-20 16:29:18 +02:00
}
2020-10-09 19:35:46 +02:00
const service = InteropService . instance ( ) ;
2018-02-23 21:32:19 +02:00
const result = await service . export ( exportOptions ) ;
2017-08-20 16:29:18 +02:00
2020-05-21 10:14:33 +02:00
result . warnings . map ( w => this . stdout ( w ) ) ;
2017-08-20 16:29:18 +02:00
}
}
2019-07-30 09:35:42 +02:00
module . exports = Command ;