| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 | /** * Created by zhengguorong on 16/11/4. */var jsonpatch = require('fast-json-patch')var File = require('./file.model')var tools = require('../../util/tools')var uuid = require('node-uuid')const respondWithResult = (res, statusCode) => {  statusCode = statusCode || 200  return function (entity) {    if (entity) {      return res.status(statusCode).json(entity)    }    return null  }}const patchUpdates = (patches) => {  return function (entity) {    try {      jsonpatch.apply(entity, patches, /*validate*/ true)    } catch (err) {      return Promise.reject(err)    }    return entity.save()  }}const removeEntity = (res) => {  return function (entity) {    if (entity) {      return entity.remove()        .then(() => {          res.status(204).end()        })    }  }}const handleEntityNotFound = (res) => {  return function (entity) {    if (!entity) {      res.status(404).end()      return null    }    return entity  }}const handleError = (res, statusCode) => {  statusCode = statusCode || 500  return function (err) {    res.status(statusCode).send(err)  }}module.exports.index = (req, res) => {  return File.find().exec()    .then(respondWithResult(res))    .catch(handleError(res))}// Gets a single File from the DBmodule.exports.show = (req, res) => {  return File.findById(req.params.id).exec()    .then(handleEntityNotFound(res))    .then(respondWithResult(res))    .catch(handleError(res))}module.exports.getByThemeId = (req, res) => {  return File.find({ themeId: req.params.id }).exec()    .then(handleEntityNotFound(res))    .then(respondWithResult(res))    .catch(handleError(res))}// Creates a new File in the DBmodule.exports.create = (req, res) => {  var imageInfo = buildImgPath(req.body.themeId || 'all')  if (req.body.imgData) {    tools.base64ToImg(req.body.imgData, imageInfo.imagePath)    req.body.filePath = imageInfo.accessPath  }  return File.create(req.body)    .then(respondWithResult(res, 201))    .catch(handleError(res))}const buildImgPath = (themeId) => {  // 文件使用uuid生成别名  var fileName = uuid.v1().replace(/-/g, '') + '.png'  // 文件目录  var dirPath = 'public/upload/' + themeId  // 图片保存路径  var imagePath = dirPath + '/' + fileName  // 图片访问路径  var accessPath = '/upload/' + themeId + '/' + fileName  return { accessPath: accessPath, imagePath: imagePath, dirPath: dirPath }}// Deletes a File from the DBmodule.exports.destroy = (req, res) => {  return File.findById(req.params.id).exec()    .then(handleEntityNotFound(res))    .then(removeEntity(res))    .catch(handleError(res))}
 |