mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2024-12-14 08:26:22 +00:00
3a398721b5
* Replaced all instances of getElementById and getElementsByClassName with querySelector or querySelectorAll. * Updated utilsController.js to stop disabling no-async-promise-executor eslint rule. * Removed unused lines in dashboard.njk. * Refactored maxFileSize to maxSize in home.{css,js,njk}. * Updated ClamAV codes in lolisafe.js. No more pinging. Since querying version will also check connection anyway. * Option "Upload to album" in homepage is now selectable. Selecting this option will restore the uploader to not associate files with an album. * Fixed uploader to properly respect server's max file size. Also updated error message of file size to use MB instead of MiB. * Creating an album from homepage will automatically select the album. * Updated Dropzone.js to v5.5.0. * Bumped v1 & v3 version strings. * Various other small fixes.
52 lines
3.5 KiB
JavaScript
52 lines
3.5 KiB
JavaScript
const config = require('./../config')
|
|
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')
|
|
const utilsController = require('./../controllers/utilsController')
|
|
|
|
routes.get('/check', (req, res, next) => {
|
|
return res.json({
|
|
private: config.private,
|
|
enableUserAccounts: config.enableUserAccounts,
|
|
maxSize: config.uploads.maxSize,
|
|
chunkSize: config.uploads.chunkSize
|
|
})
|
|
})
|
|
|
|
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/bulkdelete', (req, res, next) => uploadController.bulkDelete(req, res, next))
|
|
routes.post('/upload/finishchunks', (req, res, next) => uploadController.finishChunks(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/addfiles', (req, res, next) => albumsController.addFiles(req, res, next))
|
|
routes.post('/albums/delete', (req, res, next) => albumsController.delete(req, res, next))
|
|
routes.post('/albums/edit', (req, res, next) => albumsController.edit(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))
|
|
routes.get('/users', (req, res, next) => authController.listUsers(req, res, next))
|
|
routes.get('/users/:page', (req, res, next) => authController.listUsers(req, res, next))
|
|
routes.post('/users/edit', (req, res, next) => authController.editUser(req, res, next))
|
|
routes.post('/users/disable', (req, res, next) => authController.disableUser(req, res, next))
|
|
routes.get('/stats', (req, res, next) => utilsController.stats(req, res, next))
|
|
|
|
module.exports = routes
|