v3.0.0/controllers/uploadController.js

226 lines
5.9 KiB
JavaScript
Raw Normal View History

2017-01-13 08:34:21 +01:00
const path = require('path')
const config = require('../config.js')
const multer = require('multer')
const randomstring = require('randomstring')
const db = require('knex')(config.database)
const crypto = require('crypto')
const fs = require('fs')
2017-01-13 08:34:21 +01:00
let uploadsController = {}
const storage = multer.diskStorage({
destination: function (req, file, cb) {
cb(null, './' + config.uploads.folder + '/')
},
filename: function (req, file, cb) {
2017-01-14 09:50:18 +01:00
cb(null, randomstring.generate(config.uploads.fileLength) + path.extname(file.originalname))
2017-01-13 08:34:21 +01:00
}
})
const upload = multer({
storage: storage,
2017-01-19 00:38:13 +01:00
limits: { fileSize: config.uploads.maxSize }
}).array('files[]')
2017-01-13 08:34:21 +01:00
uploadsController.upload = function(req, res, next){
2017-01-17 04:37:54 +01:00
if(config.private === true)
2017-01-16 08:45:29 +01:00
if(req.headers.auth !== config.clientToken)
return res.status(401).json({ success: false, description: 'not-authorized'})
2017-01-13 08:34:21 +01:00
2017-01-19 07:04:22 +01:00
let album = req.params.albumid
2017-01-13 08:34:21 +01:00
if(album !== undefined)
2017-01-18 07:40:16 +01:00
if(req.headers.adminauth !== config.adminToken)
return res.status(401).json({ success: false, description: 'not-authorized'})
2017-01-13 08:34:21 +01:00
upload(req, res, function (err) {
if (err) {
console.error(err)
return res.json({
success: false,
description: err
})
2017-01-13 08:34:21 +01:00
}
2017-01-19 07:04:22 +01:00
if(req.files.length === 0) return res.json({ success: false, description: 'no-files' })
let files = []
let existingFiles = []
let iteration = 1
2017-01-19 07:34:48 +01:00
req.files.forEach(function(file) {
2017-01-19 07:34:48 +01:00
// Check if the file exists by checking hash and size
let hash = crypto.createHash('md5')
let stream = fs.createReadStream('./' + config.uploads.folder + '/' + file.filename)
stream.on('data', function (data) {
hash.update(data, 'utf8')
})
stream.on('end', function () {
let fileHash = hash.digest('hex') // 34f7a3113803f8ed3b8fd7ce5656ebec
db.table('files').where({
hash: fileHash,
size: file.size
}).then((dbfile) => {
if(dbfile.length !== 0){
uploadsController.deleteFile(file.filename).then(() => {}).catch((e) => console.error(e))
existingFiles.push(dbfile[0])
}else{
files.push({
name: file.filename,
original: file.originalname,
type: file.mimetype,
size: file.size,
hash: fileHash,
ip: req.ip,
albumid: album,
timestamp: Math.floor(Date.now() / 1000)
})
}
if(iteration === req.files.length)
2017-01-21 09:17:29 +01:00
return uploadsController.processFilesForDisplay(req, res, files, existingFiles)
iteration++
})
2017-01-19 07:34:48 +01:00
})
})
})
}
2017-01-21 09:17:29 +01:00
uploadsController.processFilesForDisplay = function(req, res, files, existingFiles){
let basedomain = req.get('host')
for(let domain of config.domains)
if(domain.host === req.get('host'))
if(domain.hasOwnProperty('resolve'))
basedomain = domain.resolve
if(files.length === 0){
return res.json({
success: true,
files: existingFiles.map(file => {
return {
name: file.name,
size: file.size,
url: basedomain + '/' + file.name
}
2017-01-13 08:34:21 +01:00
})
})
}
db.table('files').insert(files).then(() => {
2017-01-13 08:34:21 +01:00
for(let efile of existingFiles) files.push(efile)
res.json({
success: true,
files: files.map(file => {
return {
name: file.name,
size: file.size,
url: basedomain + '/' + file.name
}
})
})
}).catch(function(error) { console.log(error); res.json({success: false, description: 'error'}) })
2017-01-13 08:34:21 +01:00
}
uploadsController.delete = function(req, res){
if(req.headers.auth !== config.adminToken)
return res.status(401).json({ success: false, description: 'not-authorized'})
let id = req.body.id
if(id === undefined || id === '')
return res.json({ success: false, description: 'No file specified' })
db.table('files').where('id', id).then((file) => {
2017-01-21 07:57:25 +01:00
uploadsController.deleteFile(file[0].name).then(() => {
db.table('files').where('id', id).del().then(() =>{
return res.json({ success: true })
}).catch(function(error) { console.log(error); res.json({success: false, description: 'error'}) })
}).catch((e) => {
return res.json({ success: false, description: e.toString() })
})
}).catch(function(error) { console.log(error); res.json({success: false, description: 'error'}) })
}
uploadsController.deleteFile = function(file){
return new Promise(function(resolve, reject){
fs.stat('./' + config.uploads.folder + '/' + file, function (err, stats) {
if (err) { return reject(err) }
fs.unlink('./' + config.uploads.folder + '/' + file, function(err){
if (err) { return reject(err) }
return resolve()
})
})
})
}
uploadsController.list = function(req, res){
2017-01-17 04:37:54 +01:00
if(req.headers.auth !== config.adminToken)
return res.status(401).json({ success: false, description: 'not-authorized'})
2017-01-21 09:17:29 +01:00
let offset = req.params.page
if(offset === undefined) offset = 0
db.table('files')
.where(function(){
if(req.params.id === undefined)
this.where('id', '<>', '')
else
this.where('albumid', req.params.id)
})
2017-01-19 07:34:48 +01:00
.orderBy('id', 'DESC')
2017-01-21 09:17:29 +01:00
.limit(25)
.offset(25 * offset)
.then((files) => {
db.table('albums').then((albums) => {
2017-01-19 04:31:01 +01:00
let basedomain = req.get('host')
for(let domain of config.domains)
if(domain.host === req.get('host'))
if(domain.hasOwnProperty('resolve'))
basedomain = domain.resolve
for(let file of files){
file.file = basedomain + '/' + file.name
file.date = new Date(file.timestamp * 1000)
2017-01-19 04:31:01 +01:00
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()
file.album = ''
if(file.albumid !== undefined)
for(let album of albums)
if(file.albumid === album.id)
file.album = album.name
}
return res.json({
success: true,
files
})
})
}).catch(function(error) { console.log(error); res.json({success: false, description: 'error'}) })
}
2017-01-13 08:34:21 +01:00
module.exports = uploadsController