From c4b5457891fc05be8d44f036415acadb8ded3cde Mon Sep 17 00:00:00 2001 From: Pitu Date: Tue, 17 Jan 2017 18:55:35 -0300 Subject: Change from gallery to album --- controllers/albumsController.js | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 controllers/albumsController.js (limited to 'controllers/albumsController.js') diff --git a/controllers/albumsController.js b/controllers/albumsController.js new file mode 100644 index 0000000..7639b3d --- /dev/null +++ b/controllers/albumsController.js @@ -0,0 +1,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 \ No newline at end of file -- cgit v1.2.3