mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2024-12-13 16:06:21 +00:00
02e2e402c3
As the title says, this commit is a massive overhaul. I've rewritten/restrucuted almost everything in the controller scripts. Because of that, there's a considerable possibility that I've broken something somewhere. Notable changes: Added temporary uploads. Removed file name length changer from dashboard, in favor of an equivalent in homepage config tab. This allows non-registered users to also set file name length. A bunch of other undocmented stuff. I don't know, I'm too tired to remember them all.
75 lines
2.2 KiB
JavaScript
75 lines
2.2 KiB
JavaScript
const config = require('./../config')
|
|
const db = require('knex')(config.database)
|
|
const path = require('path')
|
|
const paths = require('./../controllers/pathsController')
|
|
const routes = require('express').Router()
|
|
const utils = require('./../controllers/utilsController')
|
|
|
|
const homeDomain = config.homeDomain || config.domain
|
|
|
|
routes.get('/a/:identifier', async (req, res, next) => {
|
|
const identifier = req.params.identifier
|
|
if (identifier === undefined)
|
|
return res.status(401).json({
|
|
success: false,
|
|
description: 'No identifier provided.'
|
|
})
|
|
|
|
const album = await db.table('albums')
|
|
.where({
|
|
identifier,
|
|
enabled: 1
|
|
})
|
|
.first()
|
|
|
|
if (!album)
|
|
return res.status(404).sendFile(path.join(paths.errorRoot, config.errorPages[404]))
|
|
else if (album.public === 0)
|
|
return res.status(403).json({
|
|
success: false,
|
|
description: 'This album is not available for public.'
|
|
})
|
|
|
|
const files = await db.table('files')
|
|
.select('name', 'size')
|
|
.where('albumid', album.id)
|
|
.orderBy('id', 'DESC')
|
|
|
|
let thumb = ''
|
|
const basedomain = config.domain
|
|
|
|
let totalSize = 0
|
|
for (const file of files) {
|
|
file.file = `${basedomain}/${file.name}`
|
|
file.extname = path.extname(file.name).toLowerCase()
|
|
if (utils.mayGenerateThumb(file.extname)) {
|
|
file.thumb = `${basedomain}/thumbs/${file.name.slice(0, -file.extname.length)}.png`
|
|
/*
|
|
If thumbnail for album is still not set, set it to current file's full URL.
|
|
A potential improvement would be to let the user set a specific image as an album cover.
|
|
*/
|
|
if (thumb === '') thumb = file.file
|
|
}
|
|
totalSize += parseInt(file.size)
|
|
}
|
|
|
|
return res.render('album', {
|
|
title: album.name,
|
|
description: album.description ? album.description.replace(/\n/g, '<br>') : null,
|
|
count: files.length,
|
|
thumb,
|
|
files,
|
|
identifier,
|
|
generateZips: config.uploads.generateZips,
|
|
downloadLink: album.download === 0
|
|
? null
|
|
: `${homeDomain}/api/album/zip/${album.identifier}?v=${album.editedAt}`,
|
|
editedAt: album.editedAt,
|
|
url: `${homeDomain}/a/${album.identifier}`,
|
|
totalSize,
|
|
nojs: req.query.nojs !== undefined
|
|
})
|
|
})
|
|
|
|
module.exports = routes
|