2018-03-18 02:14:50 +01:00
|
|
|
'use strict'
|
|
|
|
const url = require('url')
|
2018-09-26 20:40:28 +02:00
|
|
|
const path = require('path')
|
2018-03-18 02:14:50 +01:00
|
|
|
|
|
|
|
const config = require('../../config')
|
2018-06-01 13:01:57 +02:00
|
|
|
const logger = require('../../logger')
|
2018-03-18 02:14:50 +01: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 13:01:57 +02:00
|
|
|
logger.error('Callback has to be a function')
|
2018-03-18 02:14:50 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-11-14 14:10:14 +01:00
|
|
|
callback(null, url.URL.resolve(config.serverURL + '/uploads/', path.basename(imagePath)))
|
2018-03-18 02:14:50 +01:00
|
|
|
}
|