albumsController.js 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. let fields = ['id', 'name']
  8. if(req.headers.extended !== undefined)
  9. fields.push('timestamp')
  10. db.table('albums').select(fields).then((albums) => {
  11. if(req.headers.extended === undefined)
  12. return res.json({ success: true, albums })
  13. let ids = []
  14. for(let album of albums)
  15. ids.push(album.id)
  16. db.table('files').whereIn('albumid', ids).select('albumid').then((files) => {
  17. let albumsCount = {}
  18. for(let id of ids) albumsCount[id] = 0
  19. for(let file of files) albumsCount[file.albumid] += 1
  20. for(let album of albums) album.files = albumsCount[album.id]
  21. return res.json({ success: true, albums })
  22. })
  23. })
  24. }
  25. albumsController.create = function(req, res, next){
  26. if(req.headers.auth !== config.adminToken)
  27. return res.status(401).send('not-authorized')
  28. let name = req.headers.name
  29. if(name === undefined || name === '')
  30. return res.json({ success: false, description: 'No album name specified' })
  31. db.table('albums').where('name', name).then((album) => {
  32. if(album.length !== 0) return res.json({ success: false, description: 'There\'s already an album with that name' })
  33. db.table('albums').insert({
  34. name: name,
  35. timestamp: Math.floor(Date.now() / 1000)
  36. }).then(() => {
  37. return res.json({ success: true })
  38. })
  39. })
  40. }
  41. module.exports = albumsController