b5fc6db75d
We have various places with overly simple if statements that could be handled by our logging library. Also a lot of those logs are not marked as debug logs but as info logs, which can cause confusion during debugging. This patch removed unneeded if clauses around debug logging statements, reworks debug log messages towards ECMA templates and add some new logging statements which might be helpful in order to debug things like image uploads. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
35 lines
1.1 KiB
JavaScript
35 lines
1.1 KiB
JavaScript
'use strict'
|
|
const path = require('path')
|
|
|
|
const config = require('../../config')
|
|
const logger = require('../../logger')
|
|
|
|
const azure = require('azure-storage')
|
|
|
|
exports.uploadImage = function (imagePath, callback) {
|
|
if (!callback || typeof callback !== 'function') {
|
|
logger.error('Callback has to be a function')
|
|
return
|
|
}
|
|
|
|
if (!imagePath || typeof imagePath !== 'string') {
|
|
callback(new Error('Image path is missing or wrong'), null)
|
|
return
|
|
}
|
|
|
|
var azureBlobService = azure.createBlobService(config.azure.connectionString)
|
|
|
|
azureBlobService.createContainerIfNotExists(config.azure.container, { publicAccessLevel: 'blob' }, function (err, result, response) {
|
|
if (err) {
|
|
callback(new Error(err.message), null)
|
|
} else {
|
|
azureBlobService.createBlockBlobFromLocalFile(config.azure.container, path.basename(imagePath), imagePath, function (err, result, response) {
|
|
if (err) {
|
|
callback(new Error(err.message), null)
|
|
} else {
|
|
callback(null, azureBlobService.getUrl(config.azure.container, result.name))
|
|
}
|
|
})
|
|
}
|
|
})
|
|
}
|