2018-03-18 01:14:50 +00:00
|
|
|
'use strict'
|
2018-12-18 13:52:09 +00:00
|
|
|
const URL = require('url').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
|
|
|
|
}
|
|
|
|
|
2019-04-18 10:10:46 +00:00
|
|
|
let url
|
|
|
|
try {
|
|
|
|
url = (new URL(path.basename(imagePath), config.serverURL + '/uploads/')).href
|
|
|
|
} catch (e) {
|
|
|
|
url = config.serverURL + '/uploads/' + path.basename(imagePath)
|
|
|
|
}
|
|
|
|
|
|
|
|
callback(null, url)
|
2018-03-18 01:14:50 +00:00
|
|
|
}
|