aboutsummaryrefslogtreecommitdiff
path: root/controllers/galleryController.js
blob: f2e914c32a5331efe08a3c620562bc735a9b84ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
const config = require('../config.js')
const db = require('knex')(config.database)

let galleryController = {}

galleryController.list = function(req, res, next){
	//if(!config.privacy.public)
		//if(!config.privacy.IPs.includes(req.ip)) return res.status(401).send('Not Authorized!')

	db.table('gallery').select('id', 'name').then((data) => {
		res.json({ data })
	})
}

galleryController.test = function(req, res, next){
	//if(!config.privacy.public)
		//if(!config.privacy.IPs.includes(req.ip)) return res.status(401).send('Not Authorized!')

	let testdata = [
		{name: 'Test 1'},
		{name: 'Test 2'},
		{name: 'Test 3'},
		{name: 'Test 4'},
		{name: 'Test 5'}
	]

	db.table('gallery').insert(testdata).then(() => {})
}

module.exports = galleryController