2018-02-26 21:25:54 +02:00
|
|
|
class InteropService_Importer_Base {
|
|
|
|
|
2018-06-26 01:07:53 +02:00
|
|
|
setMetadata(md) {
|
|
|
|
this.metadata_ = md;
|
|
|
|
}
|
|
|
|
|
|
|
|
metadata() {
|
|
|
|
return this.metadata_;
|
|
|
|
}
|
|
|
|
|
2018-02-26 21:25:54 +02:00
|
|
|
async init(sourcePath, options) {
|
|
|
|
this.sourcePath_ = sourcePath;
|
|
|
|
this.options_ = options;
|
|
|
|
}
|
|
|
|
|
|
|
|
async exec(result) {}
|
|
|
|
|
|
|
|
async temporaryDirectory_(createIt) {
|
|
|
|
const md5 = require('md5');
|
|
|
|
const tempDir = require('os').tmpdir() + '/' + md5(Math.random() + Date.now());
|
|
|
|
if (createIt) await require('fs-extra').mkdirp(tempDir);
|
|
|
|
return tempDir;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = InteropService_Importer_Base;
|