aboutsummaryrefslogtreecommitdiff
path: root/controllers
diff options
context:
space:
mode:
Diffstat (limited to 'controllers')
-rw-r--r--controllers/galleryController.js13
1 files changed, 13 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