diff options
| -rw-r--r-- | controllers/galleryController.js | 13 | ||||
| -rw-r--r-- | routes.js | 2 |
2 files changed, 15 insertions, 0 deletions
diff --git a/controllers/galleryController.js b/controllers/galleryController.js new file mode 100644 index 0000000..a499af5 --- /dev/null +++ b/controllers/galleryController.js @@ -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 }) + }) +}
\ No newline at end of file @@ -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
\ No newline at end of file |