mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2024-12-13 16:06:21 +00:00
28 lines
877 B
JavaScript
28 lines
877 B
JavaScript
const config = require('../config.js')
|
|
const routes = require('express').Router()
|
|
const uploadController = require('../controllers/uploadController')
|
|
const galleryController = require('../controllers/galleryController')
|
|
|
|
routes.get('/check', (req, res, next) => {
|
|
if(config.TOKEN === '')
|
|
return res.json({token: false})
|
|
return res.json({token: true})
|
|
})
|
|
|
|
routes.get('/info', (req, res, next) => {
|
|
|
|
if(config.TOKEN !== '')
|
|
if(req.headers.auth !== config.TOKEN)
|
|
return res.status(401).send('not-authorized')
|
|
|
|
return res.json({
|
|
maxFileSize: config.uploads.maxsize.slice(0, -2)
|
|
})
|
|
})
|
|
|
|
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/test', (req, res, next) => galleryController.test(req, res, next))
|
|
|
|
module.exports = routes
|