Pitu 8 лет назад
Родитель
Сommit
a8121f5d7c
2 измененных файлов с 21 добавлено и 1 удалено
  1. 20 1
      controllers/uploadController.js
  2. 1 0
      database/db.js

+ 20 - 1
controllers/uploadController.js

@@ -3,6 +3,8 @@ 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')
 
 let uploadsController = {}
 
@@ -44,7 +46,24 @@ uploadsController.upload = function(req, res, next){
 		if(req.files.length === 0) return res.json({ success: false, description: 'no-files' })
 
 		let files = []
+		//let existingFiles = []
+
 		req.files.forEach(function(file) {
+
+			/*
+			// 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
+
+			})*/
+
 			files.push({
 				name: file.filename, 
 				original: file.originalname,
@@ -92,7 +111,7 @@ uploadsController.list = function(req, res){
 		else
 			this.where('albumid', req.params.id)
 	})
-	.sort('id', 'DESC')
+	.orderBy('id', 'DESC')
 	.then((files) => {
 		db.table('albums').then((albums) => {
 

+ 1 - 0
database/db.js

@@ -15,6 +15,7 @@ let init = function(db, config){
 		table.string('original')
 		table.string('type')
 		table.string('size')
+		table.string('hash')
 		table.string('ip')
 		table.integer('albumid')
 		table.integer('timestamp')