aboutsummaryrefslogtreecommitdiff
path: root/controllers/albumsController.js
blob: 7639b3db66c56c01f40240882a85b0db46972adb (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
31
32
const config = require('../config.js')
const db = require('knex')(config.database)

let albumsController = {}

albumsController.list = function(req, res, next){
	
	if(req.headers.auth !== config.adminToken)
		return res.status(401).send('not-authorized')

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

albumsController.test = function(req, res, next){
	
	if(req.headers.auth !== config.adminToken)
		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('albums').insert(testdata).then(() => {})
}

module.exports = albumsController