albumsController.js 707 B

1234567891011121314151617181920212223242526272829303132
  1. const config = require('../config.js')
  2. const db = require('knex')(config.database)
  3. let albumsController = {}
  4. albumsController.list = function(req, res, next){
  5. if(req.headers.auth !== config.adminToken)
  6. return res.status(401).send('not-authorized')
  7. db.table('albums').select('id', 'name').then((albums) => {
  8. return res.json({ albums })
  9. })
  10. }
  11. albumsController.test = function(req, res, next){
  12. if(req.headers.auth !== config.adminToken)
  13. return res.status(401).send('not-authorized')
  14. let testdata = [
  15. {name: 'Test 1'},
  16. {name: 'Test 2'},
  17. {name: 'Test 3'},
  18. {name: 'Test 4'},
  19. {name: 'Test 5'}
  20. ]
  21. db.table('albums').insert(testdata).then(() => {})
  22. }
  23. module.exports = albumsController