2017-01-17 22:55:35 +01:00
|
|
|
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)
|
2017-01-19 06:37:35 +01:00
|
|
|
return res.status(401).json({ success: false, description: 'not-authorized'})
|
2017-01-17 22:55:35 +01:00
|
|
|
|
2017-01-18 06:40:14 +01:00
|
|
|
let fields = ['id', 'name']
|
|
|
|
|
2017-01-19 06:37:35 +01:00
|
|
|
if(req.params.sidebar === undefined)
|
2017-01-18 06:40:14 +01:00
|
|
|
fields.push('timestamp')
|
|
|
|
|
2017-01-18 09:07:20 +01:00
|
|
|
db.table('albums').select(fields).where('enabled', 1).then((albums) => {
|
2017-01-18 07:29:46 +01:00
|
|
|
|
2017-01-19 06:37:35 +01:00
|
|
|
if(req.params.sidebar !== undefined)
|
2017-01-18 08:05:56 +01:00
|
|
|
return res.json({ success: true, albums })
|
2017-01-18 09:07:20 +01:00
|
|
|
|
2017-01-18 07:29:46 +01:00
|
|
|
let ids = []
|
|
|
|
for(let album of albums){
|
|
|
|
album.date = new Date(album.timestamp * 1000)
|
2017-01-19 04:31:01 +01:00
|
|
|
album.date = album.date.getFullYear() + '-' + (album.date.getMonth() + 1) + '-' + 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()
|
2017-01-18 07:29:46 +01:00
|
|
|
|
|
|
|
ids.push(album.id)
|
|
|
|
}
|
2017-01-18 06:40:14 +01:00
|
|
|
|
|
|
|
db.table('files').whereIn('albumid', ids).select('albumid').then((files) => {
|
|
|
|
|
|
|
|
let albumsCount = {}
|
|
|
|
|
|
|
|
for(let id of ids) albumsCount[id] = 0
|
|
|
|
for(let file of files) albumsCount[file.albumid] += 1
|
|
|
|
for(let album of albums) album.files = albumsCount[album.id]
|
|
|
|
|
|
|
|
return res.json({ success: true, albums })
|
|
|
|
})
|
2017-01-17 22:55:35 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-01-18 06:40:14 +01:00
|
|
|
albumsController.create = function(req, res, next){
|
2017-01-17 22:55:35 +01:00
|
|
|
|
|
|
|
if(req.headers.auth !== config.adminToken)
|
2017-01-19 06:37:35 +01:00
|
|
|
return res.status(401).json({ success: false, description: 'not-authorized'})
|
2017-01-17 22:55:35 +01:00
|
|
|
|
2017-01-19 06:37:35 +01:00
|
|
|
let name = req.body.name
|
2017-01-18 06:40:14 +01:00
|
|
|
if(name === undefined || name === '')
|
|
|
|
return res.json({ success: false, description: 'No album name specified' })
|
|
|
|
|
|
|
|
db.table('albums').where('name', name).then((album) => {
|
|
|
|
if(album.length !== 0) return res.json({ success: false, description: 'There\'s already an album with that name' })
|
2017-01-17 22:55:35 +01:00
|
|
|
|
2017-01-18 06:40:14 +01:00
|
|
|
db.table('albums').insert({
|
|
|
|
name: name,
|
2017-01-18 09:07:20 +01:00
|
|
|
enabled: 1,
|
2017-01-18 06:40:14 +01:00
|
|
|
timestamp: Math.floor(Date.now() / 1000)
|
|
|
|
}).then(() => {
|
|
|
|
return res.json({ success: true })
|
|
|
|
})
|
|
|
|
})
|
2017-01-17 22:55:35 +01:00
|
|
|
}
|
|
|
|
|
2017-01-18 06:40:14 +01:00
|
|
|
|
2017-01-17 22:55:35 +01:00
|
|
|
module.exports = albumsController
|