uploadController.js 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. const path = require('path')
  2. const config = require('../config.js')
  3. const multer = require('multer')
  4. const randomstring = require('randomstring')
  5. const db = require('knex')(config.database)
  6. //const crypto = require('crypto')
  7. //const fs = require('fs')
  8. let uploadsController = {}
  9. const storage = multer.diskStorage({
  10. destination: function (req, file, cb) {
  11. cb(null, './' + config.uploads.folder + '/')
  12. },
  13. filename: function (req, file, cb) {
  14. cb(null, randomstring.generate(config.uploads.fileLength) + path.extname(file.originalname))
  15. }
  16. })
  17. const upload = multer({
  18. storage: storage,
  19. limits: { fileSize: config.uploads.maxSize }
  20. }).array('files[]')
  21. uploadsController.upload = function(req, res, next){
  22. if(config.private === true)
  23. if(req.headers.auth !== config.clientToken)
  24. return res.status(401).json({ success: false, description: 'not-authorized'})
  25. let album = req.params.albumid
  26. if(album !== undefined)
  27. if(req.headers.adminauth !== config.adminToken)
  28. return res.status(401).json({ success: false, description: 'not-authorized'})
  29. upload(req, res, function (err) {
  30. if (err) {
  31. console.error(err)
  32. return res.json({
  33. success: false,
  34. description: err
  35. })
  36. }
  37. if(req.files.length === 0) return res.json({ success: false, description: 'no-files' })
  38. let files = []
  39. //let existingFiles = []
  40. req.files.forEach(function(file) {
  41. /*
  42. // Check if the file exists by checking hash and size
  43. let hash = crypto.createHash('md5')
  44. let stream = fs.createReadStream('./' + config.uploads.folder + '/' + file.filename)
  45. stream.on('data', function (data) {
  46. hash.update(data, 'utf8')
  47. })
  48. stream.on('end', function () {
  49. let fileHash = hash.digest('hex') // 34f7a3113803f8ed3b8fd7ce5656ebec
  50. })*/
  51. files.push({
  52. name: file.filename,
  53. original: file.originalname,
  54. type: file.mimetype,
  55. size: file.size,
  56. ip: req.ip,
  57. albumid: album,
  58. timestamp: Math.floor(Date.now() / 1000)
  59. })
  60. })
  61. db.table('files').insert(files).then(() => {
  62. let basedomain = req.get('host')
  63. for(let domain of config.domains)
  64. if(domain.host === req.get('host'))
  65. if(domain.hasOwnProperty('resolve'))
  66. basedomain = domain.resolve
  67. res.json({
  68. success: true,
  69. files: files.map(file => {
  70. return {
  71. name: file.name,
  72. size: file.size,
  73. url: 'http://' + basedomain + '/' + file.name
  74. }
  75. })
  76. })
  77. })
  78. })
  79. }
  80. uploadsController.list = function(req, res){
  81. if(req.headers.auth !== config.adminToken)
  82. return res.status(401).json({ success: false, description: 'not-authorized'})
  83. db.table('files')
  84. .where(function(){
  85. if(req.params.id === undefined)
  86. this.where('id', '<>', '')
  87. else
  88. this.where('albumid', req.params.id)
  89. })
  90. .orderBy('id', 'DESC')
  91. .then((files) => {
  92. db.table('albums').then((albums) => {
  93. let basedomain = req.get('host')
  94. for(let domain of config.domains)
  95. if(domain.host === req.get('host'))
  96. if(domain.hasOwnProperty('resolve'))
  97. basedomain = domain.resolve
  98. for(let file of files){
  99. file.file = 'http://' + basedomain + '/' + file.name
  100. //file.file = config.basedomain + config.uploads.prefix + file.name
  101. file.date = new Date(file.timestamp * 1000)
  102. file.date = file.date.getFullYear() + '-' + (file.date.getMonth() + 1) + '-' + file.date.getDate() + ' ' + (file.date.getHours() < 10 ? '0' : '') + file.date.getHours() + ':' + (file.date.getMinutes() < 10 ? '0' : '') + file.date.getMinutes() + ':' + (file.date.getSeconds() < 10 ? '0' : '') + file.date.getSeconds()
  103. file.album = ''
  104. if(file.albumid !== undefined)
  105. for(let album of albums)
  106. if(file.albumid === album.id)
  107. file.album = album.name
  108. }
  109. return res.json({
  110. success: true,
  111. files
  112. })
  113. })
  114. })
  115. }
  116. module.exports = uploadsController