joplin/packages/lib/services/interop/InteropService_Exporter_Jex.ts

44 lines
1.4 KiB
TypeScript
Raw Normal View History

2020-11-05 16:58:23 +00:00
import { _ } from '../../locale';
const InteropService_Exporter_Base = require('./InteropService_Exporter_Base').default;
const InteropService_Exporter_Raw = require('./InteropService_Exporter_Raw').default;
const fs = require('fs-extra');
2020-11-05 16:58:23 +00:00
const shim = require('../../shim').default;
export default class InteropService_Exporter_Jex extends InteropService_Exporter_Base {
async init(destPath:string) {
2019-09-19 21:51:18 +00:00
if (await shim.fsDriver().isDirectory(destPath)) throw new Error(`Path is a directory: ${destPath}`);
this.tempDir_ = await this.temporaryDirectory_(false);
this.destPath_ = destPath;
this.rawExporter_ = new InteropService_Exporter_Raw();
await this.rawExporter_.init(this.tempDir_);
}
async processItem(itemType:number, item:any) {
return this.rawExporter_.processItem(itemType, item);
}
async processResource(resource:any, filePath:string) {
return this.rawExporter_.processResource(resource, filePath);
}
async close() {
const stats = await shim.fsDriver().readDirStats(this.tempDir_, { recursive: true });
const filePaths = stats.filter((a:any) => !a.isDirectory()).map((a:any) => a.path);
if (!filePaths.length) throw new Error(_('There is no data to export.'));
2019-07-29 13:43:53 +00:00
await require('tar').create(
{
strict: true,
portable: true,
file: this.destPath_,
cwd: this.tempDir_,
},
filePaths
);
await fs.remove(this.tempDir_);
}
}