2476 - downloadImages() method refactor
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
This commit is contained in:
parent
7b85b968f2
commit
ca47fe6827
|
@ -57,7 +57,11 @@ module.exports = Self => {
|
||||||
await sharp(srcFilePath, {failOnError: false})
|
await sharp(srcFilePath, {failOnError: false})
|
||||||
.resize(collection.maxWidth, collection.maxHeight, resizeOpts)
|
.resize(collection.maxWidth, collection.maxHeight, resizeOpts)
|
||||||
.png()
|
.png()
|
||||||
.toFile(dstFile);
|
.toFile(dstFile)
|
||||||
|
.catch(error => {
|
||||||
|
console.log('[ERROR] Image download failed: ' + error);
|
||||||
|
console.log('File => ' + srcFilePath);
|
||||||
|
});
|
||||||
|
|
||||||
const sizes = collection.sizes();
|
const sizes = collection.sizes();
|
||||||
for (let size of sizes) {
|
for (let size of sizes) {
|
||||||
|
@ -72,7 +76,11 @@ module.exports = Self => {
|
||||||
await sharp(srcFilePath, {failOnError: false})
|
await sharp(srcFilePath, {failOnError: false})
|
||||||
.resize(size.width, size.height, resizeOpts)
|
.resize(size.width, size.height, resizeOpts)
|
||||||
.png()
|
.png()
|
||||||
.toFile(dstFile);
|
.toFile(dstFile)
|
||||||
|
.catch(error => {
|
||||||
|
console.log('[ERROR] Image download failed: ' + error);
|
||||||
|
console.log('File => ' + srcFilePath);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
const model = models[collection.model];
|
const model = models[collection.model];
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
ALTER TABLE `vn`.`itemImageQueue`
|
||||||
|
ADD attempts INT default 0 NULL AFTER error;
|
|
@ -18,39 +18,37 @@ module.exports = Self => {
|
||||||
|
|
||||||
Self.downloadImages = async() => {
|
Self.downloadImages = async() => {
|
||||||
const models = Self.app.models;
|
const models = Self.app.models;
|
||||||
|
const container = await models.TempContainer.container('salix-image');
|
||||||
|
const tempPath = path.join(container.client.root, container.name);
|
||||||
|
const maxAttempts = 3;
|
||||||
|
|
||||||
try {
|
prune();
|
||||||
const tempPath = path.join('/tmp/salix-image');
|
download();
|
||||||
|
|
||||||
// Create temporary path
|
async function download() {
|
||||||
await fs.mkdir(tempPath, {recursive: true});
|
const image = await Self.findOne({
|
||||||
|
where: {url: {neq: null}, attempts: {lt: maxAttempts}},
|
||||||
|
order: 'attempts, updated'
|
||||||
|
});
|
||||||
|
|
||||||
const timer = setInterval(async() => {
|
if (!image) return;
|
||||||
const image = await Self.findOne({
|
|
||||||
where: {error: null, url: {neq: null}}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Exit loop
|
const srcFile = image.url.split('/').pop();
|
||||||
if (!image) return clearInterval(timer);
|
const dotIndex = srcFile.lastIndexOf('.');
|
||||||
|
const fileName = srcFile.substring(0, dotIndex);
|
||||||
|
const file = `${fileName}.png`;
|
||||||
|
const filePath = path.join(tempPath, file);
|
||||||
|
|
||||||
const srcFile = image.url.split('/').pop();
|
https.get(image.url, async response => {
|
||||||
const fileName = srcFile.split('.')[0];
|
if (response.statusCode != 200) {
|
||||||
const file = `${fileName}.png`;
|
const error = new Error(`Could not download the image. Status code ${response.statusCode}`);
|
||||||
const filePath = path.join(tempPath, file);
|
|
||||||
|
return await errorHandler(image.itemFk, error, filePath);
|
||||||
|
}
|
||||||
|
|
||||||
const writeStream = fs.createWriteStream(filePath);
|
const writeStream = fs.createWriteStream(filePath);
|
||||||
writeStream.on('open', () => {
|
writeStream.on('open', () => {
|
||||||
https.get(image.url, async response => {
|
response.pipe(writeStream);
|
||||||
if (response.statusCode != 200) {
|
|
||||||
const error = new Error(`Could not download the image. Status code ${response.statusCode}`);
|
|
||||||
|
|
||||||
return await errorHandler(image.itemFk, error, filePath);
|
|
||||||
}
|
|
||||||
|
|
||||||
response.pipe(writeStream);
|
|
||||||
}).on('error', async error => {
|
|
||||||
await errorHandler(image.itemFk, error, filePath);
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
||||||
writeStream.on('error', async error => {
|
writeStream.on('error', async error => {
|
||||||
|
@ -58,16 +56,23 @@ module.exports = Self => {
|
||||||
});
|
});
|
||||||
|
|
||||||
writeStream.on('finish', async function() {
|
writeStream.on('finish', async function() {
|
||||||
|
writeStream.end();
|
||||||
|
});
|
||||||
|
|
||||||
|
writeStream.on('close', async function() {
|
||||||
|
console.log('stream closed');
|
||||||
try {
|
try {
|
||||||
await models.Image.registerImage('catalog', filePath, fileName, image.itemFk);
|
await models.Image.registerImage('catalog', filePath, fileName, image.itemFk);
|
||||||
await image.destroy();
|
await image.destroy();
|
||||||
|
|
||||||
|
download();
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
await errorHandler(image.itemFk, error, filePath);
|
await errorHandler(image.itemFk, error, filePath);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}, 1000);
|
}).on('error', async error => {
|
||||||
} catch (error) {
|
await errorHandler(image.itemFk, error, filePath);
|
||||||
throw new Error('Try-catch error: ', error);
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async function errorHandler(rowId, error, filePath) {
|
async function errorHandler(rowId, error, filePath) {
|
||||||
|
@ -77,10 +82,18 @@ module.exports = Self => {
|
||||||
if (!row)
|
if (!row)
|
||||||
throw new Error(`Could not update due error ${error}`);
|
throw new Error(`Could not update due error ${error}`);
|
||||||
|
|
||||||
await row.updateAttribute('error', error);
|
if (row.attempts < maxAttempts) {
|
||||||
|
await row.updateAttributes({
|
||||||
|
error: error,
|
||||||
|
attempts: row.attempts + 1,
|
||||||
|
updated: new Date()
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
if (filePath && fs.existsSync(filePath))
|
if (filePath && fs.existsSync(filePath))
|
||||||
await fs.unlink(filePath);
|
await fs.unlink(filePath);
|
||||||
|
|
||||||
|
download();
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
throw new Error(`ErrorHandler error: ${err}`);
|
throw new Error(`ErrorHandler error: ${err}`);
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,17 +9,26 @@
|
||||||
},
|
},
|
||||||
"properties": {
|
"properties": {
|
||||||
"itemFk": {
|
"itemFk": {
|
||||||
"type": "Number",
|
"type": "number",
|
||||||
"id": true,
|
"id": true,
|
||||||
"description": "Identifier"
|
"description": "Identifier"
|
||||||
},
|
},
|
||||||
"url": {
|
"url": {
|
||||||
"type": "String",
|
"type": "string",
|
||||||
"required": true
|
"required": true
|
||||||
},
|
},
|
||||||
"error": {
|
"error": {
|
||||||
"type": "String",
|
"type": "string",
|
||||||
"required": true
|
"required": true
|
||||||
|
},
|
||||||
|
"attempts": {
|
||||||
|
"type": "number"
|
||||||
|
},
|
||||||
|
"created": {
|
||||||
|
"type": "date"
|
||||||
|
},
|
||||||
|
"updated": {
|
||||||
|
"type": "date"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"relations": {
|
"relations": {
|
||||||
|
|
Loading…
Reference in New Issue