mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2024-12-13 07:56:23 +00:00
616124446f
WARNING: Please turn off lolisafe before upgrading, then run "node database/migration.js" once after upgrading. Ignore all errors/warnings about duplicate column name. Afterwards make sure your config.js follows the new format in config.sample.js (specifically fileLength and generateThumbnails options). * generateImageThumbnails and generateVideoThumbnails options in config.js is now renamed to an object named generateThumbnails, with image and video as its properties. * fileLength option is now an object with min, max, default and userChangeable as its properties. * User may now change their preferred file length (following the previous option, of course). * Updated a bunch of responses messages. Mainly appending a dot to the messages. * New APIs: /fileLength/config to get an object of the current fileLength config (exactly what is in the config.js file). /fileLength/change to change user's preferred file length. * And maybe some others ...?
40 lines
2.5 KiB
JavaScript
40 lines
2.5 KiB
JavaScript
const config = require('../config.js')
|
|
const routes = require('express').Router()
|
|
const uploadController = require('../controllers/uploadController')
|
|
const albumsController = require('../controllers/albumsController')
|
|
const tokenController = require('../controllers/tokenController')
|
|
const authController = require('../controllers/authController')
|
|
|
|
routes.get('/check', (req, res, next) => {
|
|
return res.json({
|
|
private: config.private,
|
|
maxFileSize: config.uploads.maxSize
|
|
})
|
|
})
|
|
|
|
routes.post('/login', (req, res, next) => authController.verify(req, res, next))
|
|
routes.post('/register', (req, res, next) => authController.register(req, res, next))
|
|
routes.post('/password/change', (req, res, next) => authController.changePassword(req, res, next))
|
|
routes.get('/uploads', (req, res, next) => uploadController.list(req, res, next))
|
|
routes.get('/uploads/:page', (req, res, next) => uploadController.list(req, res, next))
|
|
routes.post('/upload', (req, res, next) => uploadController.upload(req, res, next))
|
|
routes.post('/upload/delete', (req, res, next) => uploadController.delete(req, res, next))
|
|
routes.post('/upload/:albumid', (req, res, next) => uploadController.upload(req, res, next))
|
|
routes.get('/album/get/:identifier', (req, res, next) => albumsController.get(req, res, next))
|
|
routes.get('/album/zip/:identifier', (req, res, next) => albumsController.generateZip(req, res, next))
|
|
routes.get('/album/:id', (req, res, next) => uploadController.list(req, res, next))
|
|
routes.get('/album/:id/:page', (req, res, next) => uploadController.list(req, res, next))
|
|
routes.get('/albums', (req, res, next) => albumsController.list(req, res, next))
|
|
routes.get('/albums/:sidebar', (req, res, next) => albumsController.list(req, res, next))
|
|
routes.post('/albums', (req, res, next) => albumsController.create(req, res, next))
|
|
routes.post('/albums/delete', (req, res, next) => albumsController.delete(req, res, next))
|
|
routes.post('/albums/rename', (req, res, next) => albumsController.rename(req, res, next))
|
|
routes.get('/albums/test', (req, res, next) => albumsController.test(req, res, next))
|
|
routes.get('/tokens', (req, res, next) => tokenController.list(req, res, next))
|
|
routes.post('/tokens/verify', (req, res, next) => tokenController.verify(req, res, next))
|
|
routes.post('/tokens/change', (req, res, next) => tokenController.change(req, res, next))
|
|
routes.get('/fileLength/config', (req, res, next) => authController.getFileLengthConfig(req, res, next))
|
|
routes.post('/fileLength/change', (req, res, next) => authController.changeFileLength(req, res, next))
|
|
|
|
module.exports = routes
|