mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2025-01-07 12:21:33 +00:00
Gallery WIP
This commit is contained in:
parent
633948660c
commit
dec004cc0a
@ -4,10 +4,25 @@ const db = require('knex')(config.database)
|
|||||||
let galleryController = {}
|
let galleryController = {}
|
||||||
|
|
||||||
galleryController.list = function(req, res, next){
|
galleryController.list = function(req, res, next){
|
||||||
if(!config.privacy.public)
|
//if(!config.privacy.public)
|
||||||
if(!config.privacy.IPs.includes(req.ip)) return res.status(401).send('Not Authorized!')
|
//if(!config.privacy.IPs.includes(req.ip)) return res.status(401).send('Not Authorized!')
|
||||||
|
|
||||||
db.table('gallery').select('id', 'name').then((data) => {
|
db.table('gallery').select('id', 'name').then((data) => {
|
||||||
res.json({ data })
|
res.json({ data })
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
galleryController.test = function(req, res, next){
|
||||||
|
if(!config.privacy.public)
|
||||||
|
if(!config.privacy.IPs.includes(req.ip)) 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(() => {})
|
||||||
|
}
|
@ -4,5 +4,6 @@ const galleryController = require('./controllers/galleryController')
|
|||||||
|
|
||||||
routes.post ('/upload', (req, res, next) => uploadController.upload(req, res, next))
|
routes.post ('/upload', (req, res, next) => uploadController.upload(req, res, next))
|
||||||
routes.get ('/gallery', (req, res, next) => galleryController.list(req, res, next))
|
routes.get ('/gallery', (req, res, next) => galleryController.list(req, res, next))
|
||||||
|
routes.get ('/gallery/test', (req, res, next) => galleryController.test(req, res, next))
|
||||||
|
|
||||||
module.exports = routes
|
module.exports = routes
|
Loading…
Reference in New Issue
Block a user