2018-05-09 08:41:30 +00:00
|
|
|
const EventEmitter = require('events')
|
2018-01-23 20:06:30 +00:00
|
|
|
const fs = require('fs')
|
2018-04-13 16:20:57 +00:00
|
|
|
const path = require('path')
|
|
|
|
const randomstring = require('randomstring')
|
2018-01-23 20:06:30 +00:00
|
|
|
const Zip = require('jszip')
|
Updates (very important to read)
Client-side CSS & JS files will now be processed with Gulp.
Gulp tasks are configured in gulpfile.js file.
CSS files will be optimized with postcss-preset-env, which will
auto-add vendor prefixes and convert any parts necessary for browsers
compatibility.
Afterwards they will be minified with cssnano.
JS files will be optimized with bublé,
likewise for browsers compatibility.
Afterwards they will be minified with terser.
Unprocessed CSS & JS files will now be located at src directory, while
the processed results will be located at dist directory.
Due to bublé, the JS files should now be compatible up to IE 11
at the minimum.
Previously the safe would not work in IE 11 due to extensive usage of
template literals.
Due to that as well, JS files in src directory will now extensively use
arrow functions for my personal comfort (as they will be converted too).
The server will use the processed files at dist directory by default.
If you want to rebuild the files by your own, you can run "yarn build".
Gulp is a development dependency, so make sure you have installed all
development dependencies (e.i. NOT using "yarn install --production").
---
yarn lint -> gulp lint
yarn build -> gulp default
yarn watch -> gulp watch
yarn develop -> env NODE_ENV=development yarn watch
---
Fixed not being able to demote staff into normal users.
/api/token/verify will no longer respond with 401 HTTP error code,
unless an error occurred (which will be 500 HTTP error code).
Fixed /nojs route not displaying file's original name when a duplicate
is found on the server.
Removed is-breeze CSS class name, in favor of Bulma's is-info.
Removed custom styling from auth page, in favor of global styling.
Removed all usage of style HTML attribute in favor of CSS classes.
Renamed js/s/ to js/misc/.
Use loading spinners on dashboard's sidebar menus.
Disable all other sidebar menus when something is loading.
Changed title HTML attribute of disabled control buttons in
uploads & users list.
Hid checkboxes and WIP controls from users list.
Better error messages handling.
Especially homepage will now support CF's HTTP error codes.
Updated various icons.
Also, added fontello config file at public/libs/fontello/config.json.
This should let you edit them more easily with fontello.
Use Gatsby icon for my blog's link in homepage's footer.
A bunch of other improvements here & there.
2019-09-15 06:20:11 +00:00
|
|
|
const paths = require('./pathsController')
|
2020-06-01 04:44:16 +00:00
|
|
|
const perms = require('./permissionController')
|
2020-12-26 12:54:41 +00:00
|
|
|
const uploadController = require('./uploadController')
|
Updates (very important to read)
Client-side CSS & JS files will now be processed with Gulp.
Gulp tasks are configured in gulpfile.js file.
CSS files will be optimized with postcss-preset-env, which will
auto-add vendor prefixes and convert any parts necessary for browsers
compatibility.
Afterwards they will be minified with cssnano.
JS files will be optimized with bublé,
likewise for browsers compatibility.
Afterwards they will be minified with terser.
Unprocessed CSS & JS files will now be located at src directory, while
the processed results will be located at dist directory.
Due to bublé, the JS files should now be compatible up to IE 11
at the minimum.
Previously the safe would not work in IE 11 due to extensive usage of
template literals.
Due to that as well, JS files in src directory will now extensively use
arrow functions for my personal comfort (as they will be converted too).
The server will use the processed files at dist directory by default.
If you want to rebuild the files by your own, you can run "yarn build".
Gulp is a development dependency, so make sure you have installed all
development dependencies (e.i. NOT using "yarn install --production").
---
yarn lint -> gulp lint
yarn build -> gulp default
yarn watch -> gulp watch
yarn develop -> env NODE_ENV=development yarn watch
---
Fixed not being able to demote staff into normal users.
/api/token/verify will no longer respond with 401 HTTP error code,
unless an error occurred (which will be 500 HTTP error code).
Fixed /nojs route not displaying file's original name when a duplicate
is found on the server.
Removed is-breeze CSS class name, in favor of Bulma's is-info.
Removed custom styling from auth page, in favor of global styling.
Removed all usage of style HTML attribute in favor of CSS classes.
Renamed js/s/ to js/misc/.
Use loading spinners on dashboard's sidebar menus.
Disable all other sidebar menus when something is loading.
Changed title HTML attribute of disabled control buttons in
uploads & users list.
Hid checkboxes and WIP controls from users list.
Better error messages handling.
Especially homepage will now support CF's HTTP error codes.
Updated various icons.
Also, added fontello config file at public/libs/fontello/config.json.
This should let you edit them more easily with fontello.
Use Gatsby icon for my blog's link in homepage's footer.
A bunch of other improvements here & there.
2019-09-15 06:20:11 +00:00
|
|
|
const utils = require('./utilsController')
|
2021-01-08 00:29:14 +00:00
|
|
|
const apiErrorsHandler = require('./handlers/apiErrorsHandler.js')
|
2021-01-08 01:44:28 +00:00
|
|
|
const ClientError = require('./utils/ClientError')
|
|
|
|
const ServerError = require('./utils/ServerError')
|
Updates (very important to read)
Client-side CSS & JS files will now be processed with Gulp.
Gulp tasks are configured in gulpfile.js file.
CSS files will be optimized with postcss-preset-env, which will
auto-add vendor prefixes and convert any parts necessary for browsers
compatibility.
Afterwards they will be minified with cssnano.
JS files will be optimized with bublé,
likewise for browsers compatibility.
Afterwards they will be minified with terser.
Unprocessed CSS & JS files will now be located at src directory, while
the processed results will be located at dist directory.
Due to bublé, the JS files should now be compatible up to IE 11
at the minimum.
Previously the safe would not work in IE 11 due to extensive usage of
template literals.
Due to that as well, JS files in src directory will now extensively use
arrow functions for my personal comfort (as they will be converted too).
The server will use the processed files at dist directory by default.
If you want to rebuild the files by your own, you can run "yarn build".
Gulp is a development dependency, so make sure you have installed all
development dependencies (e.i. NOT using "yarn install --production").
---
yarn lint -> gulp lint
yarn build -> gulp default
yarn watch -> gulp watch
yarn develop -> env NODE_ENV=development yarn watch
---
Fixed not being able to demote staff into normal users.
/api/token/verify will no longer respond with 401 HTTP error code,
unless an error occurred (which will be 500 HTTP error code).
Fixed /nojs route not displaying file's original name when a duplicate
is found on the server.
Removed is-breeze CSS class name, in favor of Bulma's is-info.
Removed custom styling from auth page, in favor of global styling.
Removed all usage of style HTML attribute in favor of CSS classes.
Renamed js/s/ to js/misc/.
Use loading spinners on dashboard's sidebar menus.
Disable all other sidebar menus when something is loading.
Changed title HTML attribute of disabled control buttons in
uploads & users list.
Hid checkboxes and WIP controls from users list.
Better error messages handling.
Especially homepage will now support CF's HTTP error codes.
Updated various icons.
Also, added fontello config file at public/libs/fontello/config.json.
This should let you edit them more easily with fontello.
Use Gatsby icon for my blog's link in homepage's footer.
A bunch of other improvements here & there.
2019-09-15 06:20:11 +00:00
|
|
|
const config = require('./../config')
|
|
|
|
const logger = require('./../logger')
|
2018-04-13 16:20:57 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
const self = {
|
2019-09-17 04:13:41 +00:00
|
|
|
// Don't forget to update max length of text inputs in
|
|
|
|
// home.js & dashboard.js when changing these values
|
2019-09-19 01:27:19 +00:00
|
|
|
titleMaxLength: 70,
|
2019-09-17 04:13:41 +00:00
|
|
|
descMaxLength: 4000,
|
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
onHold: new Set()
|
|
|
|
}
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2022-06-22 06:27:38 +00:00
|
|
|
const homeDomain = utils.conf.homeDomain || utils.conf.domain
|
2019-09-08 01:56:29 +00:00
|
|
|
|
|
|
|
const zipMaxTotalSize = parseInt(config.cloudflare.zipMaxTotalSize)
|
2019-09-19 01:27:19 +00:00
|
|
|
const zipMaxTotalSizeBytes = zipMaxTotalSize * 1e6
|
2019-07-17 23:22:47 +00:00
|
|
|
const zipOptions = config.uploads.jsZipOptions
|
|
|
|
|
|
|
|
// Force 'type' option to 'nodebuffer'
|
|
|
|
zipOptions.type = 'nodebuffer'
|
|
|
|
|
|
|
|
// Apply fallbacks for missing config values
|
2020-10-30 18:12:09 +00:00
|
|
|
if (zipOptions.streamFiles === undefined) zipOptions.streamFiles = true
|
|
|
|
if (zipOptions.compression === undefined) zipOptions.compression = 'DEFLATE'
|
|
|
|
if (zipOptions.compressionOptions === undefined) zipOptions.compressionOptions = {}
|
|
|
|
if (zipOptions.compressionOptions.level === undefined) zipOptions.compressionOptions.level = 1
|
2018-05-09 08:41:30 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
self.zipEmitters = new Map()
|
2018-05-09 08:41:30 +00:00
|
|
|
|
|
|
|
class ZipEmitter extends EventEmitter {
|
|
|
|
constructor (identifier) {
|
|
|
|
super()
|
|
|
|
this.identifier = identifier
|
2019-09-08 01:56:29 +00:00
|
|
|
this.once('done', () => self.zipEmitters.delete(this.identifier))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
self.getUniqueRandomName = async () => {
|
|
|
|
for (let i = 0; i < utils.idMaxTries; i++) {
|
|
|
|
const identifier = randomstring.generate(config.uploads.albumIdentifierLength)
|
2020-10-30 18:12:09 +00:00
|
|
|
if (self.onHold.has(identifier)) continue
|
2019-09-08 01:56:29 +00:00
|
|
|
|
|
|
|
// Put token on-hold (wait for it to be inserted to DB)
|
|
|
|
self.onHold.add(identifier)
|
|
|
|
|
2022-06-03 21:21:56 +00:00
|
|
|
const album = await utils.db.table('albums')
|
2019-09-08 01:56:29 +00:00
|
|
|
.where('identifier', identifier)
|
|
|
|
.select('id')
|
|
|
|
.first()
|
|
|
|
if (album) {
|
|
|
|
self.onHold.delete(identifier)
|
|
|
|
logger.log(`Album with identifier ${identifier} already exists (${i + 1}/${utils.idMaxTries}).`)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
return identifier
|
2018-05-09 08:41:30 +00:00
|
|
|
}
|
2019-09-08 01:56:29 +00:00
|
|
|
|
2021-01-08 01:44:28 +00:00
|
|
|
throw new ServerError('Failed to allocate a unique identifier for the album. Try again?')
|
2018-05-09 08:41:30 +00:00
|
|
|
}
|
2018-04-18 21:00:36 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
self.list = async (req, res, next) => {
|
2021-01-08 00:29:14 +00:00
|
|
|
try {
|
2021-01-08 03:50:25 +00:00
|
|
|
const user = await utils.authorize(req)
|
2021-01-08 00:29:14 +00:00
|
|
|
|
|
|
|
const all = req.headers.all === '1'
|
|
|
|
const simple = req.headers.simple
|
|
|
|
const ismoderator = perms.is(user, 'moderator')
|
|
|
|
if (all && !ismoderator) return res.status(403).end()
|
|
|
|
|
|
|
|
const filter = function () {
|
|
|
|
if (!all) {
|
|
|
|
this.where({
|
|
|
|
enabled: 1,
|
|
|
|
userid: user.id
|
|
|
|
})
|
|
|
|
}
|
2020-10-30 18:12:09 +00:00
|
|
|
}
|
2018-03-30 02:39:53 +00:00
|
|
|
|
2020-06-01 04:44:16 +00:00
|
|
|
// Query albums count for pagination
|
2022-06-03 21:21:56 +00:00
|
|
|
const count = await utils.db.table('albums')
|
2020-06-01 04:44:16 +00:00
|
|
|
.where(filter)
|
|
|
|
.count('id as count')
|
|
|
|
.then(rows => rows[0].count)
|
2020-10-30 18:12:09 +00:00
|
|
|
if (!count) return res.json({ success: true, albums: [], count })
|
2020-06-01 04:44:16 +00:00
|
|
|
|
2020-10-11 10:32:22 +00:00
|
|
|
const fields = ['id', 'name']
|
2020-06-01 04:44:16 +00:00
|
|
|
|
|
|
|
let albums
|
2020-12-26 11:49:51 +00:00
|
|
|
if (simple) {
|
2022-06-03 21:21:56 +00:00
|
|
|
albums = await utils.db.table('albums')
|
2020-06-01 04:44:16 +00:00
|
|
|
.where(filter)
|
|
|
|
.select(fields)
|
|
|
|
|
|
|
|
return res.json({ success: true, albums, count })
|
|
|
|
} else {
|
|
|
|
let offset = Number(req.params.page)
|
|
|
|
if (isNaN(offset)) offset = 0
|
|
|
|
else if (offset < 0) offset = Math.max(0, Math.ceil(count / 25) + offset)
|
|
|
|
|
2021-02-12 08:48:40 +00:00
|
|
|
fields.push('identifier', 'enabled', 'timestamp', 'editedAt', 'zipGeneratedAt', 'download', 'public', 'description')
|
2020-10-30 18:12:09 +00:00
|
|
|
if (all) fields.push('userid')
|
2020-06-01 04:44:16 +00:00
|
|
|
|
2022-06-03 21:21:56 +00:00
|
|
|
albums = await utils.db.table('albums')
|
2020-06-01 04:44:16 +00:00
|
|
|
.where(filter)
|
|
|
|
.limit(25)
|
|
|
|
.offset(25 * offset)
|
|
|
|
.select(fields)
|
|
|
|
}
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2020-06-01 04:44:16 +00:00
|
|
|
const albumids = {}
|
|
|
|
for (const album of albums) {
|
|
|
|
album.download = album.download !== 0
|
|
|
|
album.public = album.public !== 0
|
|
|
|
album.uploads = 0
|
2021-02-12 08:48:40 +00:00
|
|
|
album.size = 0
|
|
|
|
album.zipSize = null
|
2022-05-05 06:17:32 +00:00
|
|
|
album.descriptionHtml = album.description
|
|
|
|
? utils.md.instance.render(album.description)
|
|
|
|
: ''
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2020-06-01 04:44:16 +00:00
|
|
|
// Map by IDs
|
|
|
|
albumids[album.id] = album
|
|
|
|
}
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2021-02-12 08:48:40 +00:00
|
|
|
const getAlbumZipSize = async album => {
|
|
|
|
if (!album.zipGeneratedAt) return
|
|
|
|
try {
|
|
|
|
const filePath = path.join(paths.zips, `${album.identifier}.zip`)
|
|
|
|
const stats = await paths.stat(filePath)
|
|
|
|
albumids[album.id].zipSize = stats.size
|
|
|
|
} catch (error) {
|
|
|
|
if (error.code !== 'ENOENT') logger.error(error)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
await Promise.all(albums.map(album => getAlbumZipSize(album)))
|
|
|
|
|
2022-06-03 21:21:56 +00:00
|
|
|
const uploads = await utils.db.table('files')
|
2020-06-01 04:44:16 +00:00
|
|
|
.whereIn('albumid', Object.keys(albumids))
|
2021-02-12 08:48:40 +00:00
|
|
|
.select('albumid', 'size')
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2020-10-30 18:12:09 +00:00
|
|
|
for (const upload of uploads) {
|
|
|
|
if (albumids[upload.albumid]) {
|
2020-06-01 04:44:16 +00:00
|
|
|
albumids[upload.albumid].uploads++
|
2021-02-12 08:48:40 +00:00
|
|
|
albumids[upload.albumid].size += parseInt(upload.size)
|
2020-10-30 18:12:09 +00:00
|
|
|
}
|
|
|
|
}
|
2020-06-01 04:44:16 +00:00
|
|
|
|
|
|
|
// If we are not listing all albums, send response
|
2020-10-30 18:12:09 +00:00
|
|
|
if (!all) return res.json({ success: true, albums, count, homeDomain })
|
2020-06-01 04:44:16 +00:00
|
|
|
|
|
|
|
// Otherwise proceed to querying usernames
|
|
|
|
const userids = albums
|
|
|
|
.map(album => album.userid)
|
|
|
|
.filter((v, i, a) => {
|
|
|
|
return v !== null && v !== undefined && v !== '' && a.indexOf(v) === i
|
|
|
|
})
|
|
|
|
|
|
|
|
// If there are no albums attached to a registered user, send response
|
2020-10-30 18:12:09 +00:00
|
|
|
if (!userids.length) return res.json({ success: true, albums, count, homeDomain })
|
2020-06-01 04:44:16 +00:00
|
|
|
|
|
|
|
// Query usernames of user IDs from currently selected files
|
2022-06-03 21:21:56 +00:00
|
|
|
const usersTable = await utils.db.table('users')
|
2020-06-01 04:44:16 +00:00
|
|
|
.whereIn('id', userids)
|
|
|
|
.select('id', 'username')
|
|
|
|
|
|
|
|
const users = {}
|
2020-10-30 18:12:09 +00:00
|
|
|
for (const user of usersTable) {
|
2020-06-01 04:44:16 +00:00
|
|
|
users[user.id] = user.username
|
2020-10-30 18:12:09 +00:00
|
|
|
}
|
2020-06-01 04:44:16 +00:00
|
|
|
|
2021-01-08 02:27:38 +00:00
|
|
|
await res.json({ success: true, albums, count, users, homeDomain })
|
2020-06-01 04:44:16 +00:00
|
|
|
} catch (error) {
|
2021-01-08 00:29:14 +00:00
|
|
|
return apiErrorsHandler(error, req, res, next)
|
2020-06-01 04:44:16 +00:00
|
|
|
}
|
2018-01-23 20:06:30 +00:00
|
|
|
}
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
self.create = async (req, res, next) => {
|
2021-01-08 00:29:14 +00:00
|
|
|
try {
|
2021-01-08 03:50:25 +00:00
|
|
|
const user = await utils.authorize(req)
|
2018-01-23 20:06:30 +00:00
|
|
|
|
2021-01-08 00:29:14 +00:00
|
|
|
const name = typeof req.body.name === 'string'
|
|
|
|
? utils.escape(req.body.name.trim().substring(0, self.titleMaxLength))
|
|
|
|
: ''
|
2019-09-08 01:56:29 +00:00
|
|
|
|
2021-01-08 01:44:28 +00:00
|
|
|
if (!name) throw new ClientError('No album name specified.')
|
2018-01-23 20:06:30 +00:00
|
|
|
|
2022-06-03 21:21:56 +00:00
|
|
|
const album = await utils.db.table('albums')
|
2019-09-08 01:56:29 +00:00
|
|
|
.where({
|
|
|
|
name,
|
|
|
|
enabled: 1,
|
|
|
|
userid: user.id
|
|
|
|
})
|
|
|
|
.first()
|
2018-01-23 20:06:30 +00:00
|
|
|
|
2021-01-08 02:22:31 +00:00
|
|
|
if (album) throw new ClientError('Album name already in use.', { statusCode: 403 })
|
2018-01-23 20:06:30 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
const identifier = await self.getUniqueRandomName()
|
|
|
|
|
2022-06-03 21:21:56 +00:00
|
|
|
const ids = await utils.db.table('albums').insert({
|
2019-09-08 01:56:29 +00:00
|
|
|
name,
|
|
|
|
enabled: 1,
|
|
|
|
userid: user.id,
|
|
|
|
identifier,
|
|
|
|
timestamp: Math.floor(Date.now() / 1000),
|
|
|
|
editedAt: 0,
|
|
|
|
zipGeneratedAt: 0,
|
|
|
|
download: (req.body.download === false || req.body.download === 0) ? 0 : 1,
|
|
|
|
public: (req.body.public === false || req.body.public === 0) ? 0 : 1,
|
|
|
|
description: typeof req.body.description === 'string'
|
2019-09-17 04:13:41 +00:00
|
|
|
? utils.escape(req.body.description.trim().substring(0, self.descMaxLength))
|
2019-09-08 01:56:29 +00:00
|
|
|
: ''
|
2018-04-28 17:26:39 +00:00
|
|
|
})
|
2019-09-08 01:56:29 +00:00
|
|
|
utils.invalidateStatsCache('albums')
|
|
|
|
self.onHold.delete(identifier)
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2021-01-08 02:27:38 +00:00
|
|
|
await res.json({ success: true, id: ids[0] })
|
2019-09-08 01:56:29 +00:00
|
|
|
} catch (error) {
|
2021-01-08 00:29:14 +00:00
|
|
|
return apiErrorsHandler(error, req, res, next)
|
2019-09-08 01:56:29 +00:00
|
|
|
}
|
2018-04-28 17:26:39 +00:00
|
|
|
}
|
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
self.delete = async (req, res, next) => {
|
2020-06-01 04:44:16 +00:00
|
|
|
// Map /delete requests to /disable route
|
2022-05-05 06:58:54 +00:00
|
|
|
req.body.del = true
|
2020-06-01 04:44:16 +00:00
|
|
|
return self.disable(req, res, next)
|
|
|
|
}
|
|
|
|
|
|
|
|
self.disable = async (req, res, next) => {
|
2021-01-08 00:29:14 +00:00
|
|
|
try {
|
2021-01-08 03:50:25 +00:00
|
|
|
const user = await utils.authorize(req)
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2022-05-05 06:58:54 +00:00
|
|
|
const ismoderator = perms.is(user, 'moderator')
|
|
|
|
|
2022-05-05 07:30:41 +00:00
|
|
|
const id = parseInt(req.body.id)
|
|
|
|
if (isNaN(id)) throw new ClientError('No album specified.')
|
|
|
|
|
2021-01-08 00:29:14 +00:00
|
|
|
const purge = req.body.purge
|
2022-05-05 06:58:54 +00:00
|
|
|
const del = ismoderator ? req.body.del : false
|
2022-05-05 07:30:41 +00:00
|
|
|
|
|
|
|
const filter = function () {
|
|
|
|
this.where('id', id)
|
|
|
|
|
|
|
|
if (!ismoderator) {
|
|
|
|
this.andWhere({
|
|
|
|
enabled: 1,
|
|
|
|
userid: user.id
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-03 21:21:56 +00:00
|
|
|
const album = await utils.db.table('albums')
|
2022-05-05 07:30:41 +00:00
|
|
|
.where(filter)
|
|
|
|
.first()
|
|
|
|
|
|
|
|
if (!album) {
|
|
|
|
throw new ClientError('Could not get album with the specified ID.')
|
|
|
|
}
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
if (purge) {
|
2022-06-03 21:21:56 +00:00
|
|
|
const files = await utils.db.table('files')
|
2019-09-08 01:56:29 +00:00
|
|
|
.where({
|
|
|
|
albumid: id,
|
2022-05-05 07:30:41 +00:00
|
|
|
userid: album.userid
|
2019-09-08 01:56:29 +00:00
|
|
|
})
|
2018-03-30 02:39:53 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
if (files.length) {
|
|
|
|
const ids = files.map(file => file.id)
|
|
|
|
const failed = await utils.bulkDeleteFromDb('id', ids, user)
|
2020-10-30 18:12:09 +00:00
|
|
|
if (failed.length) return res.json({ success: false, failed })
|
2019-09-08 01:56:29 +00:00
|
|
|
}
|
2019-10-06 23:11:07 +00:00
|
|
|
utils.invalidateStatsCache('uploads')
|
2018-03-30 02:39:53 +00:00
|
|
|
}
|
|
|
|
|
2022-05-05 06:58:54 +00:00
|
|
|
if (del) {
|
2022-06-03 21:21:56 +00:00
|
|
|
await utils.db.table('albums')
|
2022-05-05 06:58:54 +00:00
|
|
|
.where(filter)
|
|
|
|
.first()
|
|
|
|
.del()
|
|
|
|
} else {
|
2022-06-03 21:21:56 +00:00
|
|
|
await utils.db.table('albums')
|
2022-05-05 06:58:54 +00:00
|
|
|
.where(filter)
|
|
|
|
.first()
|
|
|
|
.update('enabled', 0)
|
|
|
|
}
|
|
|
|
utils.invalidateAlbumsCache([id])
|
|
|
|
utils.invalidateStatsCache('albums')
|
|
|
|
|
2021-01-08 01:44:28 +00:00
|
|
|
try {
|
2022-05-05 07:30:41 +00:00
|
|
|
await paths.unlink(path.join(paths.zips, `${album.identifier}.zip`))
|
2021-01-08 01:44:28 +00:00
|
|
|
} catch (error) {
|
|
|
|
// Re-throw non-ENOENT error
|
|
|
|
if (error.code !== 'ENOENT') throw error
|
|
|
|
}
|
2021-01-08 02:27:38 +00:00
|
|
|
await res.json({ success: true })
|
2019-09-08 01:56:29 +00:00
|
|
|
} catch (error) {
|
2021-01-08 00:29:14 +00:00
|
|
|
return apiErrorsHandler(error, req, res, next)
|
2019-09-08 01:56:29 +00:00
|
|
|
}
|
2018-01-23 20:06:30 +00:00
|
|
|
}
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
self.edit = async (req, res, next) => {
|
2021-01-08 00:29:14 +00:00
|
|
|
try {
|
2021-01-08 03:50:25 +00:00
|
|
|
const user = await utils.authorize(req)
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2021-01-08 00:29:14 +00:00
|
|
|
const ismoderator = perms.is(user, 'moderator')
|
2020-06-01 04:44:16 +00:00
|
|
|
|
2021-01-08 00:29:14 +00:00
|
|
|
const id = parseInt(req.body.id)
|
2021-01-08 01:44:28 +00:00
|
|
|
if (isNaN(id)) throw new ClientError('No album specified.')
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2021-01-08 00:29:14 +00:00
|
|
|
const name = typeof req.body.name === 'string'
|
|
|
|
? utils.escape(req.body.name.trim().substring(0, self.titleMaxLength))
|
|
|
|
: ''
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2021-01-08 01:44:28 +00:00
|
|
|
if (!name) throw new ClientError('No album name specified.')
|
2018-03-30 02:39:53 +00:00
|
|
|
|
2021-01-08 00:29:14 +00:00
|
|
|
const filter = function () {
|
|
|
|
this.where('id', id)
|
2020-06-01 04:44:16 +00:00
|
|
|
|
2021-01-08 00:29:14 +00:00
|
|
|
if (!ismoderator) {
|
|
|
|
this.andWhere({
|
|
|
|
enabled: 1,
|
|
|
|
userid: user.id
|
|
|
|
})
|
|
|
|
}
|
2020-10-30 18:12:09 +00:00
|
|
|
}
|
2020-06-01 04:44:16 +00:00
|
|
|
|
2022-06-03 21:21:56 +00:00
|
|
|
const album = await utils.db.table('albums')
|
2020-06-01 04:44:16 +00:00
|
|
|
.where(filter)
|
2019-09-08 01:56:29 +00:00
|
|
|
.first()
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2020-10-30 18:12:09 +00:00
|
|
|
if (!album) {
|
2021-01-08 01:44:28 +00:00
|
|
|
throw new ClientError('Could not get album with the specified ID.')
|
|
|
|
}
|
|
|
|
|
|
|
|
const albumNewState = (ismoderator && typeof req.body.enabled !== 'undefined')
|
|
|
|
? Boolean(req.body.enabled)
|
|
|
|
: null
|
|
|
|
|
2022-06-03 21:21:56 +00:00
|
|
|
const nameInUse = await utils.db.table('albums')
|
2021-01-08 01:44:28 +00:00
|
|
|
.where({
|
|
|
|
name,
|
|
|
|
enabled: 1,
|
|
|
|
userid: user.id
|
|
|
|
})
|
|
|
|
.whereNot('id', id)
|
|
|
|
.first()
|
|
|
|
|
|
|
|
if ((album.enabled || (albumNewState === true)) && nameInUse) {
|
|
|
|
if (req._old) {
|
|
|
|
// Old rename API (stick with 200 status code for this)
|
|
|
|
throw new ClientError('You did not specify a new name.', { statusCode: 200 })
|
|
|
|
} else {
|
2021-01-08 02:22:31 +00:00
|
|
|
throw new ClientError('Album name already in use.', { statusCode: 403 })
|
2021-01-08 01:44:28 +00:00
|
|
|
}
|
2020-10-30 18:12:09 +00:00
|
|
|
}
|
2018-03-30 02:39:53 +00:00
|
|
|
|
2019-10-06 23:11:07 +00:00
|
|
|
const update = {
|
|
|
|
name,
|
|
|
|
download: Boolean(req.body.download),
|
|
|
|
public: Boolean(req.body.public),
|
|
|
|
description: typeof req.body.description === 'string'
|
|
|
|
? utils.escape(req.body.description.trim().substring(0, self.descMaxLength))
|
|
|
|
: ''
|
|
|
|
}
|
|
|
|
|
2021-01-08 01:44:28 +00:00
|
|
|
if (albumNewState !== null) {
|
|
|
|
update.enabled = albumNewState
|
2020-10-30 18:12:09 +00:00
|
|
|
}
|
2020-06-01 04:44:16 +00:00
|
|
|
|
2020-10-30 18:12:09 +00:00
|
|
|
if (req.body.requestLink) {
|
2019-10-06 23:11:07 +00:00
|
|
|
update.identifier = await self.getUniqueRandomName()
|
2020-10-30 18:12:09 +00:00
|
|
|
}
|
2019-10-06 23:11:07 +00:00
|
|
|
|
2022-06-03 21:21:56 +00:00
|
|
|
await utils.db.table('albums')
|
2020-06-01 04:44:16 +00:00
|
|
|
.where(filter)
|
2019-10-06 23:11:07 +00:00
|
|
|
.update(update)
|
2019-09-17 04:13:41 +00:00
|
|
|
utils.invalidateAlbumsCache([id])
|
Improved albums public page cache and more
Removed its dependency towards albums' editedAt property.
Editing album's metas (name, description, etc) will no longer update
its editedAt property.
Instead it will now ONLY be updated when adding/removing files to/from
it. Just like how it was meant to be, which was to be used to check
whether it's necessary to re-generate their downloadable ZIPs.
Albums public page cache will still be properly invalidated when
adding/removing files to/from it, as well as after editing their metas.
Added views/album-notice.njk to be used to render okay-ish notice when
an album's public page is still being generated.
I was originally thinking of using it for disabled albums as well, but
I refrained from it to reduce the possibility of disabled album IDs from
being easily scanned (as it just returns 404 now).
Removed invalidatedAt property from stats cache. Instead their caches
will immediately be nullified as they should (thus frees up memory
slightly as well).
Stats cache for albums will now only be cleared when truly necessary.
As in, adding/removing files to/from albums will no longer clear them.
Updated Nunjucks files to properly use h1, h2, h3 tags in actual
hierarchical orders.
Elements that don't need to use hX tags will now use P instead.
Nothing changes visually, only structurally.
Fixed some elements in Nunjucks using single quotes instead of
double quotes. They'd have worked the same, but consistency.
Added h1 title in FAQ page.
Make text for no JS warning a bit bigger, and improved the phrasing
a little bit.
2020-06-03 03:44:24 +00:00
|
|
|
utils.invalidateStatsCache('albums')
|
2019-09-08 01:56:29 +00:00
|
|
|
|
2019-10-06 23:11:07 +00:00
|
|
|
if (req.body.requestLink) {
|
|
|
|
self.onHold.delete(update.identifier)
|
|
|
|
|
|
|
|
// Rename zip archive of the album if it exists
|
|
|
|
try {
|
|
|
|
const oldZip = path.join(paths.zips, `${album.identifier}.zip`)
|
|
|
|
const newZip = path.join(paths.zips, `${update.identifier}.zip`)
|
|
|
|
await paths.rename(oldZip, newZip)
|
2020-10-30 18:12:09 +00:00
|
|
|
} catch (error) {
|
2021-01-08 01:44:28 +00:00
|
|
|
// Re-throw non-ENOENT error
|
2020-10-30 18:12:09 +00:00
|
|
|
if (error.code !== 'ENOENT') throw error
|
2019-10-06 23:11:07 +00:00
|
|
|
}
|
2018-04-28 17:26:39 +00:00
|
|
|
|
2021-01-08 02:27:38 +00:00
|
|
|
await res.json({
|
2019-10-06 23:11:07 +00:00
|
|
|
success: true,
|
|
|
|
identifier: update.identifier
|
2018-04-28 17:26:39 +00:00
|
|
|
})
|
2019-10-06 23:11:07 +00:00
|
|
|
} else {
|
2021-01-08 02:27:38 +00:00
|
|
|
await res.json({ success: true, name })
|
2019-09-08 01:56:29 +00:00
|
|
|
}
|
|
|
|
} catch (error) {
|
2021-01-08 00:29:14 +00:00
|
|
|
return apiErrorsHandler(error, req, res, next)
|
2018-04-28 17:26:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
self.rename = async (req, res, next) => {
|
2018-04-28 17:26:39 +00:00
|
|
|
req._old = true
|
|
|
|
req.body = { name: req.body.name }
|
2019-09-08 01:56:29 +00:00
|
|
|
return self.edit(req, res, next)
|
2018-01-23 20:06:30 +00:00
|
|
|
}
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
self.get = async (req, res, next) => {
|
|
|
|
try {
|
2021-01-08 00:29:14 +00:00
|
|
|
const identifier = req.params.identifier
|
|
|
|
if (identifier === undefined) {
|
2021-01-08 01:44:28 +00:00
|
|
|
throw new ClientError('No identifier provided.')
|
2021-01-08 00:29:14 +00:00
|
|
|
}
|
|
|
|
|
2022-06-03 21:21:56 +00:00
|
|
|
const album = await utils.db.table('albums')
|
2019-09-08 01:56:29 +00:00
|
|
|
.where({
|
|
|
|
identifier,
|
|
|
|
enabled: 1
|
|
|
|
})
|
|
|
|
.first()
|
2018-04-28 17:26:39 +00:00
|
|
|
|
2020-12-26 12:54:41 +00:00
|
|
|
if (!album || album.public === 0) {
|
2021-01-08 01:44:28 +00:00
|
|
|
throw new ClientError('Album not found.', { statusCode: 404 })
|
2020-10-30 18:12:09 +00:00
|
|
|
}
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
const title = album.name
|
2022-06-03 21:21:56 +00:00
|
|
|
const files = await utils.db.table('files')
|
2019-09-08 01:56:29 +00:00
|
|
|
.select('name')
|
|
|
|
.where('albumid', album.id)
|
2020-04-04 16:36:43 +00:00
|
|
|
.orderBy('id', 'desc')
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
for (const file of files) {
|
2020-12-26 12:54:41 +00:00
|
|
|
if (req._upstreamCompat) {
|
2022-06-22 06:27:38 +00:00
|
|
|
file.url = `${utils.conf.domain}/${file.name}`
|
2020-12-26 12:54:41 +00:00
|
|
|
} else {
|
2022-06-22 06:27:38 +00:00
|
|
|
file.file = `${utils.conf.domain}/${file.name}`
|
2020-12-26 12:54:41 +00:00
|
|
|
}
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
const extname = utils.extname(file.name)
|
2020-10-30 18:12:09 +00:00
|
|
|
if (utils.mayGenerateThumb(extname)) {
|
2022-06-22 06:27:38 +00:00
|
|
|
file.thumb = `${utils.conf.domain}/thumbs/${file.name.slice(0, -extname.length)}.png`
|
2020-12-26 12:54:41 +00:00
|
|
|
if (req._upstreamCompat) file.thumbSquare = file.thumb
|
2020-10-30 18:12:09 +00:00
|
|
|
}
|
2019-09-08 01:56:29 +00:00
|
|
|
}
|
2017-01-30 01:17:49 +00:00
|
|
|
|
2021-01-08 02:27:38 +00:00
|
|
|
await res.json({
|
2019-09-08 01:56:29 +00:00
|
|
|
success: true,
|
2020-12-26 12:54:41 +00:00
|
|
|
description: 'Successfully retrieved files.',
|
2019-09-08 01:56:29 +00:00
|
|
|
title,
|
2020-12-26 12:54:41 +00:00
|
|
|
download: Boolean(album.download),
|
2019-09-08 01:56:29 +00:00
|
|
|
count: files.length,
|
|
|
|
files
|
|
|
|
})
|
|
|
|
} catch (error) {
|
2021-01-08 00:29:14 +00:00
|
|
|
return apiErrorsHandler(error, req, res, next)
|
2019-09-08 01:56:29 +00:00
|
|
|
}
|
2018-01-23 20:06:30 +00:00
|
|
|
}
|
2017-10-04 05:05:38 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
self.generateZip = async (req, res, next) => {
|
2021-01-08 00:29:14 +00:00
|
|
|
try {
|
|
|
|
const versionString = parseInt(req.query.v)
|
2018-04-26 21:04:21 +00:00
|
|
|
|
2021-01-08 00:29:14 +00:00
|
|
|
const identifier = req.params.identifier
|
|
|
|
if (identifier === undefined) {
|
2021-01-08 01:44:28 +00:00
|
|
|
throw new ClientError('No identifier provided.')
|
2021-01-08 00:29:14 +00:00
|
|
|
}
|
2018-01-23 20:06:30 +00:00
|
|
|
|
2021-01-08 00:29:14 +00:00
|
|
|
if (!config.uploads.generateZips) {
|
2021-01-08 01:44:28 +00:00
|
|
|
throw new ClientError('ZIP generation disabled.', { statusCode: 403 })
|
2021-01-08 00:29:14 +00:00
|
|
|
}
|
2019-09-08 01:56:29 +00:00
|
|
|
|
2022-06-03 21:21:56 +00:00
|
|
|
const album = await utils.db.table('albums')
|
2019-09-08 01:56:29 +00:00
|
|
|
.where({
|
|
|
|
identifier,
|
|
|
|
enabled: 1
|
|
|
|
})
|
|
|
|
.first()
|
|
|
|
|
2020-10-30 18:12:09 +00:00
|
|
|
if (!album) {
|
2021-01-08 01:44:28 +00:00
|
|
|
throw new ClientError('Album not found.', { statusCode: 404 })
|
2020-10-30 18:12:09 +00:00
|
|
|
} else if (album.download === 0) {
|
2021-01-08 01:44:28 +00:00
|
|
|
throw new ClientError('Download for this album is disabled.', { statusCode: 403 })
|
2020-10-30 18:12:09 +00:00
|
|
|
}
|
2019-09-08 01:56:29 +00:00
|
|
|
|
2020-10-30 18:12:09 +00:00
|
|
|
if ((isNaN(versionString) || versionString <= 0) && album.editedAt) {
|
2019-09-08 01:56:29 +00:00
|
|
|
return res.redirect(`${album.identifier}?v=${album.editedAt}`)
|
2020-10-30 18:12:09 +00:00
|
|
|
}
|
2019-09-08 01:56:29 +00:00
|
|
|
|
2020-10-30 18:12:09 +00:00
|
|
|
if (album.zipGeneratedAt > album.editedAt) {
|
2019-09-23 08:09:15 +00:00
|
|
|
try {
|
|
|
|
const filePath = path.join(paths.zips, `${identifier}.zip`)
|
|
|
|
await paths.access(filePath)
|
2021-01-08 02:27:38 +00:00
|
|
|
await res.download(filePath, `${album.name}.zip`)
|
2021-02-12 05:33:43 +00:00
|
|
|
return
|
2019-09-23 08:09:15 +00:00
|
|
|
} catch (error) {
|
2021-01-08 01:44:28 +00:00
|
|
|
// Re-throw non-ENOENT error
|
2020-10-30 18:12:09 +00:00
|
|
|
if (error.code !== 'ENOENT') throw error
|
2019-09-08 01:56:29 +00:00
|
|
|
}
|
2020-10-30 18:12:09 +00:00
|
|
|
}
|
2018-04-28 17:26:39 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
if (self.zipEmitters.has(identifier)) {
|
|
|
|
logger.log(`Waiting previous zip task for album: ${identifier}.`)
|
2021-01-08 01:44:28 +00:00
|
|
|
return self.zipEmitters.get(identifier).once('done', (filePath, fileName, clientErr) => {
|
2020-10-30 18:12:09 +00:00
|
|
|
if (filePath && fileName) {
|
2020-02-11 10:18:04 +00:00
|
|
|
res.download(filePath, fileName)
|
2021-01-08 01:44:28 +00:00
|
|
|
} else if (clientErr) {
|
|
|
|
apiErrorsHandler(clientErr, req, res, next)
|
2020-10-30 18:12:09 +00:00
|
|
|
}
|
2019-09-08 01:56:29 +00:00
|
|
|
})
|
|
|
|
}
|
2018-05-09 08:41:30 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
self.zipEmitters.set(identifier, new ZipEmitter(identifier))
|
2018-05-09 08:41:30 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
logger.log(`Starting zip task for album: ${identifier}.`)
|
2018-04-28 17:26:39 +00:00
|
|
|
|
2022-06-03 21:21:56 +00:00
|
|
|
const files = await utils.db.table('files')
|
2019-09-08 01:56:29 +00:00
|
|
|
.select('name', 'size')
|
|
|
|
.where('albumid', album.id)
|
|
|
|
if (files.length === 0) {
|
|
|
|
logger.log(`Finished zip task for album: ${identifier} (no files).`)
|
2021-01-08 02:22:31 +00:00
|
|
|
const clientErr = new ClientError('There are no files in the album.', { statusCode: 200 })
|
2021-01-08 01:44:28 +00:00
|
|
|
self.zipEmitters.get(identifier).emit('done', null, null, clientErr)
|
|
|
|
throw clientErr
|
2018-04-26 21:04:21 +00:00
|
|
|
}
|
2018-01-23 20:06:30 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
if (zipMaxTotalSize) {
|
|
|
|
const totalSizeBytes = files.reduce((accumulator, file) => accumulator + parseInt(file.size), 0)
|
|
|
|
if (totalSizeBytes > zipMaxTotalSizeBytes) {
|
|
|
|
logger.log(`Finished zip task for album: ${identifier} (size exceeds).`)
|
2021-01-08 02:22:31 +00:00
|
|
|
const clientErr = new ClientError(`Total size of all files in the album exceeds ${zipMaxTotalSize} MB limit.`, { statusCode: 403 })
|
2021-01-08 01:44:28 +00:00
|
|
|
self.zipEmitters.get(identifier).emit('done', null, null, clientErr)
|
|
|
|
throw clientErr
|
2019-09-08 01:56:29 +00:00
|
|
|
}
|
|
|
|
}
|
2018-01-23 20:06:30 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
const zipPath = path.join(paths.zips, `${album.identifier}.zip`)
|
|
|
|
const archive = new Zip()
|
2018-01-23 20:06:30 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
try {
|
2019-09-23 08:09:15 +00:00
|
|
|
// Since we are adding all files concurrently,
|
|
|
|
// their order in the ZIP file may not be in alphabetical order.
|
|
|
|
// However, ZIP viewers in general should sort the files themselves.
|
|
|
|
await Promise.all(files.map(async file => {
|
2019-09-08 01:56:29 +00:00
|
|
|
const data = await paths.readFile(path.join(paths.uploads, file.name))
|
|
|
|
archive.file(file.name, data)
|
2019-09-23 08:09:15 +00:00
|
|
|
}))
|
2019-09-08 01:56:29 +00:00
|
|
|
await new Promise((resolve, reject) => {
|
|
|
|
archive.generateNodeStream(zipOptions)
|
2018-04-28 17:26:39 +00:00
|
|
|
.pipe(fs.createWriteStream(zipPath))
|
2019-09-08 01:56:29 +00:00
|
|
|
.on('error', error => reject(error))
|
|
|
|
.on('finish', () => resolve())
|
|
|
|
})
|
|
|
|
} catch (error) {
|
|
|
|
logger.error(error)
|
2021-01-08 01:44:28 +00:00
|
|
|
throw new ServerError(error.message)
|
2019-09-08 01:56:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
logger.log(`Finished zip task for album: ${identifier} (success).`)
|
|
|
|
|
2022-06-03 21:21:56 +00:00
|
|
|
await utils.db.table('albums')
|
2019-09-08 01:56:29 +00:00
|
|
|
.where('id', album.id)
|
|
|
|
.update('zipGeneratedAt', Math.floor(Date.now() / 1000))
|
|
|
|
utils.invalidateStatsCache('albums')
|
|
|
|
|
|
|
|
const filePath = path.join(paths.zips, `${identifier}.zip`)
|
|
|
|
const fileName = `${album.name}.zip`
|
|
|
|
|
|
|
|
self.zipEmitters.get(identifier).emit('done', filePath, fileName)
|
2021-01-08 02:27:38 +00:00
|
|
|
await res.download(filePath, fileName)
|
2019-09-08 01:56:29 +00:00
|
|
|
} catch (error) {
|
2021-01-08 00:29:14 +00:00
|
|
|
return apiErrorsHandler(error, req, res, next)
|
2019-09-08 01:56:29 +00:00
|
|
|
}
|
2018-01-23 20:06:30 +00:00
|
|
|
}
|
|
|
|
|
2020-12-26 12:54:41 +00:00
|
|
|
self.listFiles = async (req, res, next) => {
|
|
|
|
if (req.params.page === undefined) {
|
|
|
|
// Map to /api/album/get, but with lolisafe upstream compatibility, when accessed with this API route
|
|
|
|
req.params.identifier = req.params.id
|
|
|
|
delete req.params.id
|
|
|
|
|
|
|
|
req._upstreamCompat = true
|
|
|
|
res._json = res.json
|
|
|
|
res.json = (body = {}) => {
|
|
|
|
// Rebuild JSON payload to match lolisafe upstream
|
|
|
|
const rebuild = {}
|
|
|
|
const maps = {
|
|
|
|
success: null,
|
|
|
|
description: 'message',
|
|
|
|
title: 'name',
|
|
|
|
download: 'downloadEnabled',
|
|
|
|
count: null
|
|
|
|
}
|
|
|
|
|
|
|
|
Object.keys(body).forEach(key => {
|
|
|
|
if (maps[key] !== undefined) {
|
|
|
|
if (maps[key]) rebuild[maps[key]] = body[key]
|
|
|
|
} else {
|
|
|
|
rebuild[key] = body[key]
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
if (rebuild.message) rebuild.message = rebuild.message.replace(/\.$/, '')
|
|
|
|
return res._json(rebuild)
|
|
|
|
}
|
|
|
|
return self.get(req, res, next)
|
|
|
|
} else {
|
|
|
|
return uploadController.list(req, res, next)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
self.addFiles = async (req, res, next) => {
|
2021-01-08 00:29:14 +00:00
|
|
|
let ids, albumid, failed, albumids
|
|
|
|
try {
|
2021-01-08 03:50:25 +00:00
|
|
|
const user = await utils.authorize(req)
|
2018-03-30 02:39:53 +00:00
|
|
|
|
2021-01-08 00:29:14 +00:00
|
|
|
ids = req.body.ids
|
|
|
|
if (!Array.isArray(ids) || !ids.length) {
|
2021-01-08 01:44:28 +00:00
|
|
|
throw new ClientError('No files specified.')
|
2021-01-08 00:29:14 +00:00
|
|
|
}
|
2018-03-30 02:39:53 +00:00
|
|
|
|
2021-01-08 00:29:14 +00:00
|
|
|
albumid = parseInt(req.body.albumid)
|
|
|
|
if (isNaN(albumid) || albumid < 0) albumid = null
|
2018-03-30 02:39:53 +00:00
|
|
|
|
2021-01-08 00:29:14 +00:00
|
|
|
failed = []
|
|
|
|
albumids = []
|
2019-09-08 01:56:29 +00:00
|
|
|
if (albumid !== null) {
|
2022-06-03 21:21:56 +00:00
|
|
|
const album = await utils.db.table('albums')
|
2019-09-08 01:56:29 +00:00
|
|
|
.where('id', albumid)
|
|
|
|
.where(function () {
|
2020-10-30 18:12:09 +00:00
|
|
|
if (user.username !== 'root') {
|
2019-09-08 01:56:29 +00:00
|
|
|
this.where('userid', user.id)
|
2020-10-30 18:12:09 +00:00
|
|
|
}
|
2019-09-08 01:56:29 +00:00
|
|
|
})
|
|
|
|
.first()
|
2018-04-05 03:10:10 +00:00
|
|
|
|
2020-10-30 18:12:09 +00:00
|
|
|
if (!album) {
|
2021-01-08 02:22:31 +00:00
|
|
|
throw new ClientError('Album does not exist or it does not belong to the user.', { statusCode: 404 })
|
2020-10-30 18:12:09 +00:00
|
|
|
}
|
2018-04-05 03:10:10 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
albumids.push(albumid)
|
|
|
|
}
|
2018-03-30 02:39:53 +00:00
|
|
|
|
2022-06-03 21:21:56 +00:00
|
|
|
const files = await utils.db.table('files')
|
2019-09-08 01:56:29 +00:00
|
|
|
.whereIn('id', ids)
|
|
|
|
.where('userid', user.id)
|
2018-03-30 02:39:53 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
failed = ids.filter(id => !files.find(file => file.id === id))
|
2018-03-30 02:39:53 +00:00
|
|
|
|
2022-06-03 21:21:56 +00:00
|
|
|
await utils.db.table('files')
|
2019-09-08 01:56:29 +00:00
|
|
|
.whereIn('id', files.map(file => file.id))
|
|
|
|
.update('albumid', albumid)
|
2021-01-08 04:18:50 +00:00
|
|
|
utils.invalidateStatsCache('albums')
|
2018-05-10 17:25:52 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
files.forEach(file => {
|
2020-10-30 18:12:09 +00:00
|
|
|
if (file.albumid && !albumids.includes(file.albumid)) {
|
2019-09-08 01:56:29 +00:00
|
|
|
albumids.push(file.albumid)
|
2020-10-30 18:12:09 +00:00
|
|
|
}
|
2018-05-10 17:25:52 +00:00
|
|
|
})
|
|
|
|
|
2022-06-03 21:21:56 +00:00
|
|
|
await utils.db.table('albums')
|
2019-09-08 01:56:29 +00:00
|
|
|
.whereIn('id', albumids)
|
|
|
|
.update('editedAt', Math.floor(Date.now() / 1000))
|
Improved albums public page cache and more
Removed its dependency towards albums' editedAt property.
Editing album's metas (name, description, etc) will no longer update
its editedAt property.
Instead it will now ONLY be updated when adding/removing files to/from
it. Just like how it was meant to be, which was to be used to check
whether it's necessary to re-generate their downloadable ZIPs.
Albums public page cache will still be properly invalidated when
adding/removing files to/from it, as well as after editing their metas.
Added views/album-notice.njk to be used to render okay-ish notice when
an album's public page is still being generated.
I was originally thinking of using it for disabled albums as well, but
I refrained from it to reduce the possibility of disabled album IDs from
being easily scanned (as it just returns 404 now).
Removed invalidatedAt property from stats cache. Instead their caches
will immediately be nullified as they should (thus frees up memory
slightly as well).
Stats cache for albums will now only be cleared when truly necessary.
As in, adding/removing files to/from albums will no longer clear them.
Updated Nunjucks files to properly use h1, h2, h3 tags in actual
hierarchical orders.
Elements that don't need to use hX tags will now use P instead.
Nothing changes visually, only structurally.
Fixed some elements in Nunjucks using single quotes instead of
double quotes. They'd have worked the same, but consistency.
Added h1 title in FAQ page.
Make text for no JS warning a bit bigger, and improved the phrasing
a little bit.
2020-06-03 03:44:24 +00:00
|
|
|
utils.invalidateAlbumsCache(albumids)
|
2019-09-08 01:56:29 +00:00
|
|
|
|
2021-01-08 02:27:38 +00:00
|
|
|
await res.json({ success: true, failed })
|
2019-09-08 01:56:29 +00:00
|
|
|
} catch (error) {
|
2021-01-08 00:29:14 +00:00
|
|
|
if (Array.isArray(failed) && (failed.length === ids.length)) {
|
2021-01-08 01:44:28 +00:00
|
|
|
return apiErrorsHandler(new ServerError(`Could not ${albumid === null ? 'add' : 'remove'} any files ${albumid === null ? 'to' : 'from'} the album.`), req, res, next)
|
2020-10-30 18:12:09 +00:00
|
|
|
} else {
|
2021-01-08 00:29:14 +00:00
|
|
|
return apiErrorsHandler(error, req, res, next)
|
2020-10-30 18:12:09 +00:00
|
|
|
}
|
2019-09-08 01:56:29 +00:00
|
|
|
}
|
2018-03-30 02:39:53 +00:00
|
|
|
}
|
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
module.exports = self
|