mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2024-12-13 16:06:21 +00:00
34 lines
746 B
JavaScript
34 lines
746 B
JavaScript
const config = require('../config.js')
|
|
const db = require('knex')(config.database)
|
|
|
|
let galleryController = {}
|
|
|
|
galleryController.list = function(req, res, next){
|
|
|
|
if(config.TOKEN !== '')
|
|
if(req.headers.auth !== config.TOKEN)
|
|
return res.status(401).send('not-authorized')
|
|
|
|
db.table('gallery').select('id', 'name').then((data) => {
|
|
res.json({ data })
|
|
})
|
|
}
|
|
|
|
galleryController.test = function(req, res, next){
|
|
|
|
if(config.TOKEN !== '')
|
|
if(req.headers.auth !== config.TOKEN)
|
|
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('gallery').insert(testdata).then(() => {})
|
|
}
|
|
|
|
module.exports = galleryController |