Browse Source

Database now saves album

Pitu 7 years ago
parent
commit
ddb6d0df7d
4 changed files with 6 additions and 7 deletions
  1. 2 2
      controllers/uploadController.js
  2. 2 2
      database/db.js
  3. 2 2
      public/js/panel.js
  4. 0 1
      routes/api.js

+ 2 - 2
controllers/uploadController.js

@@ -26,7 +26,7 @@ uploadsController.upload = function(req, res, next){
 		if(req.headers.auth !== config.clientToken)
 			return res.status(401).send('not-authorized')
 
-	let gallery = req.headers.gallery
+	let album = req.headers.album
 	
 	upload(req, res, function (err) {
 		if (err) {
@@ -45,7 +45,7 @@ uploadsController.upload = function(req, res, next){
 				type: file.mimetype,
 				size: file.size, 
 				ip: req.ip,
-				galleryid: gallery,
+				albumid: album,
 				created_at: Math.floor(Date.now() / 1000)
 			})
 		})

+ 2 - 2
database/db.js

@@ -2,7 +2,7 @@
 let init = function(db, config){
 
 	// Create the tables we need to store galleries and files
-	db.schema.createTableIfNotExists('gallery', function (table) {
+	db.schema.createTableIfNotExists('albums', function (table) {
 		table.increments()
 		table.string('name')
 		table.timestamps()
@@ -15,7 +15,7 @@ let init = function(db, config){
 		table.string('type')
 		table.string('size')
 		table.string('ip')
-		table.integer('galleryid')
+		table.integer('albumid')
 		table.timestamps()
 	}).then(() => {})
 

+ 2 - 2
public/js/panel.js

@@ -74,7 +74,7 @@ panel.getUploads = function(){
 			  		<thead>
 			    		<tr>
 						      <th>File</th>
-						      <th>Gallery</th>
+						      <th>Album</th>
 						      <th>Date</th>
 			    		</tr>
 			  		</thead>
@@ -91,7 +91,7 @@ panel.getUploads = function(){
 				tr.innerHTML = `
 					<tr>
 				    	<th><a href="${item.file}" target="_blank">${item.file}</a></th>
-				      	<th>${item.gallery}</th>
+				      	<th>${item.album}</th>
 				      	<td>${item.date}</td>
 				    </tr>
 				    `;

+ 0 - 1
routes/api.js

@@ -9,7 +9,6 @@ routes.get ('/check', (req, res, next) => {
 })
 
 routes.get('/info', (req, res, next) => {
-
 	if(config.private === true)
 		if(req.headers.auth !== config.clientToken)
 			return res.status(401).send('not-authorized')