mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2024-12-13 16:06:21 +00:00
66a63ca6d6
* Added new dependency: rimraf. This will be used by chunked upload support to bulk delete temporary chunk files. * Added chunked uploads support :3 * Updated Dropzone to 5.2.0. * More improvements to thumbnail view. Delete button will now only appear on hover. Some other details, such as file name, size and album/owner will also appear on hover. Touch devices will have all of those appear always visible by default. * Image thumbnails will now appear on home page after successful uploads (only for WEBP, JPG, JPEG, BMP, GIF and PNG files). WEBP may not work properly in Firefox though. * Refactored home.js to use const/let and some other stuff. * Refactored album view. It will now display properly on mobile screen. Download Album button will also no longer be located at the top right, but right below the subtitle. * Updated some version strings. * And maybe some others that I can't remember.
42 lines
2.7 KiB
JavaScript
42 lines
2.7 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,
|
|
chunkedUploads: config.uploads.chunkedUploads
|
|
})
|
|
})
|
|
|
|
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/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/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
|