mirror of
https://github.com/WebTools-NG/WebTools-NG
synced 2024-11-22 19:13:19 +00:00
Merge pull request #644 from WebTools-NG/ukdtom/issue643
[BUG] Output all 'Export' fields failed to proceed
This commit is contained in:
commit
1879508b31
1 changed files with 15 additions and 2 deletions
|
@ -1783,10 +1783,23 @@ const etHelper = new class ETHELPER {
|
||||||
let files = await this.getExportPicsUrlandFile( { type: extype, data: data} );
|
let files = await this.getExportPicsUrlandFile( { type: extype, data: data} );
|
||||||
let title = String(JSONPath({path: '$.title', json: data})[0]);
|
let title = String(JSONPath({path: '$.title', json: data})[0]);
|
||||||
for (var idx in files){
|
for (var idx in files){
|
||||||
|
if ( files[idx]['url'].endsWith('undefined')){
|
||||||
|
log.error(`[ethelper.js] (exportPics) - could not find picture for ${files[idx]['outFile']}`)
|
||||||
|
let errorFile = files[idx]['outFile'];
|
||||||
|
errorFile = errorFile.replace('.jpg', '.txt');
|
||||||
|
const fs = require('fs');
|
||||||
|
try {
|
||||||
|
fs.writeFileSync( errorFile, `etHelper (forceDownload-downloadError) downloading pic for "${title}" was not found`, 'utf-8');
|
||||||
|
}
|
||||||
|
catch(e) {
|
||||||
|
log.error(`etHelper (forceDownload-downloadError) failed to save error file: ${errorFile}`);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
log.silly(`[ethelper.js] (exportPics) - downloading ${files[idx]['url']} as file ${files[idx]['outFile']} with a title as ${title}`)
|
log.silly(`[ethelper.js] (exportPics) - downloading ${files[idx]['url']} as file ${files[idx]['outFile']} with a title as ${title}`)
|
||||||
await this.forceDownload( { url:files[idx]['url'], target:files[idx]['outFile'], title:title} );
|
await this.forceDownload( { url:files[idx]['url'], target:files[idx]['outFile'], title:title} );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
async getXLSXHeader(){
|
async getXLSXHeader(){
|
||||||
if ( this.Settings.xlsxHeader ){
|
if ( this.Settings.xlsxHeader ){
|
||||||
|
|
Loading…
Reference in a new issue