2018-03-18 01:14:50 +00:00
|
|
|
'use strict'
|
|
|
|
const url = require('url')
|
2018-09-26 18:40:28 +00:00
|
|
|
const path = require('path')
|
2018-03-18 01:14:50 +00:00
|
|
|
|
|
|
|
const config = require('../../config')
|
2018-06-01 11:01:57 +00:00
|
|
|
const logger = require('../../logger')
|
2018-03-18 01:14:50 +00:00
|
|
|
|
|
|
|
exports.uploadImage = function (imagePath, callback) {
|
|
|
|
if (!imagePath || typeof imagePath !== 'string') {
|
|
|
|
callback(new Error('Image path is missing or wrong'), null)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!callback || typeof callback !== 'function') {
|
2018-06-01 11:01:57 +00:00
|
|
|
logger.error('Callback has to be a function')
|
2018-03-18 01:14:50 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-09-26 18:40:28 +00:00
|
|
|
callback(null, url.resolve(config.serverURL + '/uploads/', path.basename(imagePath)))
|
2018-03-18 01:14:50 +00:00
|
|
|
}
|