Fix callback validation
Signed-off-by: Adam Hoka <hoka.adam@nexogen.hu>
This commit is contained in:
parent
65544f9a18
commit
b5574466cd
4 changed files with 7 additions and 4 deletions
|
@ -2,6 +2,7 @@
|
||||||
const url = require('url')
|
const url = require('url')
|
||||||
|
|
||||||
const config = require('../../config')
|
const config = require('../../config')
|
||||||
|
const logger = require('../../logger')
|
||||||
|
|
||||||
exports.uploadImage = function (imagePath, callback) {
|
exports.uploadImage = function (imagePath, callback) {
|
||||||
if (!imagePath || typeof imagePath !== 'string') {
|
if (!imagePath || typeof imagePath !== 'string') {
|
||||||
|
@ -10,7 +11,7 @@ exports.uploadImage = function (imagePath, callback) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!callback || typeof callback !== 'function') {
|
if (!callback || typeof callback !== 'function') {
|
||||||
callback(new Error('Callback has to be a function'), null)
|
logger.error('Callback has to be a function')
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ exports.uploadImage = function (imagePath, callback) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!callback || typeof callback !== 'function') {
|
if (!callback || typeof callback !== 'function') {
|
||||||
callback(new Error('Callback has to be a function'), null)
|
logger.error('Callback has to be a function')
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@ const path = require('path')
|
||||||
|
|
||||||
const config = require('../../config')
|
const config = require('../../config')
|
||||||
const {getImageMimeType} = require('../../utils')
|
const {getImageMimeType} = require('../../utils')
|
||||||
|
const logger = require('../../logger')
|
||||||
|
|
||||||
const Minio = require('minio')
|
const Minio = require('minio')
|
||||||
const minioClient = new Minio.Client({
|
const minioClient = new Minio.Client({
|
||||||
|
@ -21,7 +22,7 @@ exports.uploadImage = function (imagePath, callback) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!callback || typeof callback !== 'function') {
|
if (!callback || typeof callback !== 'function') {
|
||||||
callback(new Error('Callback has to be a function'), null)
|
logger.error('Callback has to be a function')
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@ const path = require('path')
|
||||||
|
|
||||||
const config = require('../../config')
|
const config = require('../../config')
|
||||||
const {getImageMimeType} = require('../../utils')
|
const {getImageMimeType} = require('../../utils')
|
||||||
|
const logger = require('../../logger')
|
||||||
|
|
||||||
const AWS = require('aws-sdk')
|
const AWS = require('aws-sdk')
|
||||||
const awsConfig = new AWS.Config(config.s3)
|
const awsConfig = new AWS.Config(config.s3)
|
||||||
|
@ -16,7 +17,7 @@ exports.uploadImage = function (imagePath, callback) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!callback || typeof callback !== 'function') {
|
if (!callback || typeof callback !== 'function') {
|
||||||
callback(new Error('Callback has to be a function'), null)
|
logger.error('Callback has to be a function')
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue