summaryrefslogtreecommitdiff
path: root/lib/web/imageRouter/filesystem.js
blob: 8c432b0c5f2f836db012f33ddacfac43c3b75ae6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
'use strict'
const url = require('url')
const path = require('path')

const config = require('../../config')
const logger = require('../../logger')

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') {
    logger.error('Callback has to be a function')
    return
  }

  callback(null, url.resolve(config.serverURL + '/uploads/', path.basename(imagePath)))
}