Because of circular import problems, this commit also moves the error messages from response.js to errors.js Signed-off-by: David Mehren <dmehren1@gmail.com>
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
'use strict'
 | 
						|
 | 
						|
const Router = require('express').Router
 | 
						|
const formidable = require('formidable')
 | 
						|
 | 
						|
const config = require('../../config')
 | 
						|
const logger = require('../../logger')
 | 
						|
const errors = require('../../errors')
 | 
						|
 | 
						|
const imageRouter = module.exports = Router()
 | 
						|
 | 
						|
// upload image
 | 
						|
imageRouter.post('/uploadimage', function (req, res) {
 | 
						|
  var form = new formidable.IncomingForm()
 | 
						|
 | 
						|
  form.keepExtensions = true
 | 
						|
 | 
						|
  if (config.imageUploadType === 'filesystem') {
 | 
						|
    form.uploadDir = config.uploadsPath
 | 
						|
  }
 | 
						|
 | 
						|
  form.parse(req, function (err, fields, files) {
 | 
						|
    if (err || !files.image || !files.image.path) {
 | 
						|
      logger.error(`formidable error: ${err}`)
 | 
						|
      errors.errorForbidden(res)
 | 
						|
    } else {
 | 
						|
      logger.debug(`SERVER received uploadimage: ${JSON.stringify(files.image)}`)
 | 
						|
 | 
						|
      const uploadProvider = require('./' + config.imageUploadType)
 | 
						|
      logger.debug(`imageRouter: Uploading ${files.image.path} using ${config.imageUploadType}`)
 | 
						|
      uploadProvider.uploadImage(files.image.path, function (err, url) {
 | 
						|
        if (err !== null) {
 | 
						|
          logger.error(err)
 | 
						|
          return res.status(500).end('upload image error')
 | 
						|
        }
 | 
						|
        logger.debug(`SERVER sending ${url} to client`)
 | 
						|
        res.send({
 | 
						|
          link: url
 | 
						|
        })
 | 
						|
      })
 | 
						|
    }
 | 
						|
  })
 | 
						|
})
 |