2020-10-09 18:35:46 +01:00
|
|
|
/* eslint @typescript-eslint/no-unused-vars: 0, no-unused-vars: ["error", { "argsIgnorePattern": ".*" }], */
|
|
|
|
|
2021-01-22 17:41:11 +00:00
|
|
|
import Setting from '../../models/Setting';
|
2023-07-18 06:58:06 -07:00
|
|
|
import shim from '../../shim';
|
2020-10-09 18:35:46 +01:00
|
|
|
|
|
|
|
export default class InteropService_Exporter_Base {
|
2020-11-12 19:13:28 +00:00
|
|
|
private context_: any = {};
|
|
|
|
private metadata_: any = {};
|
2020-10-09 18:35:46 +01:00
|
|
|
|
2023-06-30 10:22:47 +01:00
|
|
|
public async init(_destDir: string, _options: any = {}) {}
|
|
|
|
public async prepareForProcessingItemType(_itemType: number, _itemsToExport: any[]) {}
|
|
|
|
public async processItem(_itemType: number, _item: any) {}
|
|
|
|
public async processResource(_resource: any, _filePath: string) {}
|
2023-03-06 14:22:01 +00:00
|
|
|
public async close() {}
|
2020-10-09 18:35:46 +01:00
|
|
|
|
2023-03-06 14:22:01 +00:00
|
|
|
public setMetadata(md: any) {
|
2020-10-09 18:35:46 +01:00
|
|
|
this.metadata_ = md;
|
|
|
|
}
|
|
|
|
|
2023-03-06 14:22:01 +00:00
|
|
|
public metadata() {
|
2020-10-09 18:35:46 +01:00
|
|
|
return this.metadata_;
|
|
|
|
}
|
|
|
|
|
2023-03-06 14:22:01 +00:00
|
|
|
public updateContext(context: any) {
|
2023-06-01 12:02:36 +01:00
|
|
|
this.context_ = { ...this.context_, ...context };
|
2020-10-09 18:35:46 +01:00
|
|
|
}
|
|
|
|
|
2023-03-06 14:22:01 +00:00
|
|
|
public context() {
|
2020-10-09 18:35:46 +01:00
|
|
|
return this.context_;
|
|
|
|
}
|
|
|
|
|
2023-03-06 14:22:01 +00:00
|
|
|
protected async temporaryDirectory_(createIt: boolean) {
|
2020-10-09 18:35:46 +01:00
|
|
|
const md5 = require('md5');
|
|
|
|
const tempDir = `${Setting.value('tempDir')}/${md5(Math.random() + Date.now())}`;
|
2023-07-18 06:58:06 -07:00
|
|
|
if (createIt) await shim.fsDriver().mkdir(tempDir);
|
2020-10-09 18:35:46 +01:00
|
|
|
return tempDir;
|
|
|
|
}
|
|
|
|
}
|