albumsController.js 1.9 KB

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