2020-10-09 19:35:46 +02:00
|
|
|
import { ImportExportResult } from './types';
|
|
|
|
|
2020-11-05 18:58:23 +02:00
|
|
|
const InteropService_Importer_Base = require('./InteropService_Importer_Base').default;
|
|
|
|
const InteropService_Importer_Raw = require('./InteropService_Importer_Raw').default;
|
|
|
|
const { filename } = require('../../path-utils');
|
2018-02-26 21:25:54 +02:00
|
|
|
const fs = require('fs-extra');
|
|
|
|
|
2020-10-09 19:35:46 +02:00
|
|
|
export default class InteropService_Importer_Jex extends InteropService_Importer_Base {
|
2020-11-12 21:13:28 +02:00
|
|
|
async exec(result: ImportExportResult) {
|
2018-02-26 21:25:54 +02:00
|
|
|
const tempDir = await this.temporaryDirectory_(true);
|
|
|
|
|
|
|
|
try {
|
|
|
|
await require('tar').extract({
|
|
|
|
strict: true,
|
|
|
|
portable: true,
|
|
|
|
file: this.sourcePath_,
|
|
|
|
cwd: tempDir,
|
|
|
|
});
|
|
|
|
} catch (error) {
|
2020-03-14 01:46:14 +02:00
|
|
|
const msg = [`Cannot untar file ${this.sourcePath_}`, error.message];
|
2018-02-26 21:25:54 +02:00
|
|
|
if (error.data) msg.push(JSON.stringify(error.data));
|
2020-03-14 01:46:14 +02:00
|
|
|
const e = new Error(msg.join(': '));
|
2018-02-26 21:25:54 +02:00
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
|
2018-03-01 20:35:17 +02:00
|
|
|
if (!('defaultFolderTitle' in this.options_)) this.options_.defaultFolderTitle = filename(this.sourcePath_);
|
|
|
|
|
2018-02-26 21:25:54 +02:00
|
|
|
const importer = new InteropService_Importer_Raw();
|
|
|
|
await importer.init(tempDir, this.options_);
|
|
|
|
result = await importer.exec(result);
|
|
|
|
|
|
|
|
await fs.remove(tempDir);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|