mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2025-01-18 17:21:33 +00:00
Gallery WIP
This commit is contained in:
parent
669819bc31
commit
633948660c
13
controllers/galleryController.js
Normal file
13
controllers/galleryController.js
Normal file
@ -0,0 +1,13 @@
|
||||
const config = require('../config.js')
|
||||
const db = require('knex')(config.database)
|
||||
|
||||
let galleryController = {}
|
||||
|
||||
galleryController.list = function(req, res, next){
|
||||
if(!config.privacy.public)
|
||||
if(!config.privacy.IPs.includes(req.ip)) return res.status(401).send('Not Authorized!')
|
||||
|
||||
db.table('gallery').select('id', 'name').then((data) => {
|
||||
res.json({ data })
|
||||
})
|
||||
}
|
@ -1,6 +1,8 @@
|
||||
const routes = require('express').Router()
|
||||
const uploadController = require('./controllers/uploadController')
|
||||
const galleryController = require('./controllers/galleryController')
|
||||
|
||||
routes.post ('/upload', (req, res, next) => uploadController.upload(req, res, next))
|
||||
routes.get ('/gallery', (req, res, next) => galleryController.list(req, res, next))
|
||||
|
||||
module.exports = routes
|
Loading…
Reference in New Issue
Block a user