2018-03-18 01:14:50 +00:00
|
|
|
'use strict'
|
|
|
|
const url = require('url')
|
|
|
|
|
|
|
|
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-03-07 14:17:35 +00:00
|
|
|
callback(null, url.resolve(config.serverURL + '/', imagePath.match(/^public\/(.+$)/)[1]))
|
2018-03-18 01:14:50 +00:00
|
|
|
}
|