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')
|
|
|
|
const utils = require('./utilsController')
|
|
|
|
const config = require('./../config')
|
|
|
|
const logger = require('./../logger')
|
|
|
|
const db = require('knex')(config.database)
|
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
|
|
|
|
2018-04-18 21:00:36 +00:00
|
|
|
const homeDomain = config.homeDomain || config.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
|
2019-09-08 01:56:29 +00:00
|
|
|
if (zipOptions.streamFiles === undefined)
|
|
|
|
zipOptions.streamFiles = true
|
|
|
|
if (zipOptions.compression === undefined)
|
|
|
|
zipOptions.compression = 'DEFLATE'
|
2019-09-19 01:27:19 +00:00
|
|
|
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)
|
|
|
|
if (self.onHold.has(identifier))
|
|
|
|
continue
|
|
|
|
|
|
|
|
// Put token on-hold (wait for it to be inserted to DB)
|
|
|
|
self.onHold.add(identifier)
|
|
|
|
|
|
|
|
const album = await db.table('albums')
|
|
|
|
.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
|
|
|
|
|
|
|
throw 'Sorry, we could not allocate a unique random identifier. 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) => {
|
2018-01-23 20:06:30 +00:00
|
|
|
const user = await utils.authorize(req, res)
|
2018-12-18 17:01:28 +00:00
|
|
|
if (!user) return
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2018-04-28 17:26:39 +00:00
|
|
|
let fields = ['id', 'name']
|
2018-12-18 17:01:28 +00:00
|
|
|
if (req.params.sidebar === undefined)
|
2019-02-05 03:36:14 +00:00
|
|
|
fields = fields.concat(['timestamp', 'identifier', 'editedAt', 'download', 'public', 'description'])
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2018-03-30 02:39:53 +00:00
|
|
|
const albums = await db.table('albums')
|
|
|
|
.select(fields)
|
|
|
|
.where({
|
|
|
|
enabled: 1,
|
|
|
|
userid: user.id
|
|
|
|
})
|
|
|
|
|
2018-12-18 17:01:28 +00:00
|
|
|
if (req.params.sidebar !== undefined)
|
2018-01-23 20:06:30 +00:00
|
|
|
return res.json({ success: true, albums })
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
const albumids = {}
|
2018-04-05 10:52:57 +00:00
|
|
|
for (const album of albums) {
|
2018-04-28 17:26:39 +00:00
|
|
|
album.download = album.download !== 0
|
|
|
|
album.public = album.public !== 0
|
2019-09-08 01:56:29 +00:00
|
|
|
album.files = 0
|
|
|
|
// Map by IDs
|
|
|
|
albumids[album.id] = album
|
2018-01-23 20:06:30 +00:00
|
|
|
}
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2018-04-28 17:26:39 +00:00
|
|
|
const files = await db.table('files')
|
2019-09-08 01:56:29 +00:00
|
|
|
.whereIn('albumid', Object.keys(albumids))
|
2018-04-28 17:26:39 +00:00
|
|
|
.select('albumid')
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
// Increment files count
|
|
|
|
for (const file of files)
|
|
|
|
if (albumids[file.albumid])
|
|
|
|
albumids[file.albumid].files++
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2018-04-28 17:26:39 +00:00
|
|
|
return res.json({ success: true, albums, homeDomain })
|
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) => {
|
2018-01-23 20:06:30 +00:00
|
|
|
const user = await utils.authorize(req, res)
|
2018-12-18 17:01:28 +00:00
|
|
|
if (!user) return
|
2018-01-23 20:06:30 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
const name = typeof req.body.name === 'string'
|
2019-09-17 04:13:41 +00:00
|
|
|
? utils.escape(req.body.name.trim().substring(0, self.titleMaxLength))
|
2019-09-08 01:56:29 +00:00
|
|
|
: ''
|
|
|
|
|
|
|
|
if (!name)
|
2018-03-24 13:52:47 +00:00
|
|
|
return res.json({ success: false, description: 'No album name specified.' })
|
2018-01-23 20:06:30 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
try {
|
|
|
|
const album = await db.table('albums')
|
|
|
|
.where({
|
|
|
|
name,
|
|
|
|
enabled: 1,
|
|
|
|
userid: user.id
|
|
|
|
})
|
|
|
|
.first()
|
2018-01-23 20:06:30 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
if (album)
|
|
|
|
return res.json({ success: false, description: 'There is already an album with that name.' })
|
2018-01-23 20:06:30 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
const identifier = await self.getUniqueRandomName()
|
|
|
|
|
|
|
|
const ids = await db.table('albums').insert({
|
|
|
|
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
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
return res.json({ success: true, id: ids[0] })
|
|
|
|
} catch (error) {
|
|
|
|
logger.error(error)
|
|
|
|
return res.status(500).json({ success: false, description: 'An unexpected error occurred. Try again?' })
|
|
|
|
}
|
2018-04-28 17:26:39 +00:00
|
|
|
}
|
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
self.delete = async (req, res, next) => {
|
2018-01-23 20:06:30 +00:00
|
|
|
const user = await utils.authorize(req, res)
|
2018-12-18 17:01:28 +00:00
|
|
|
if (!user) return
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2018-01-23 20:06:30 +00:00
|
|
|
const id = req.body.id
|
2018-03-30 02:39:53 +00:00
|
|
|
const purge = req.body.purge
|
2019-09-17 04:13:41 +00:00
|
|
|
if (!Number.isFinite(id))
|
2018-03-24 13:52:47 +00:00
|
|
|
return res.json({ success: false, description: 'No album specified.' })
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
try {
|
|
|
|
if (purge) {
|
|
|
|
const files = await db.table('files')
|
|
|
|
.where({
|
|
|
|
albumid: id,
|
|
|
|
userid: user.id
|
|
|
|
})
|
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)
|
|
|
|
if (failed.length)
|
|
|
|
return res.json({ success: false, failed })
|
|
|
|
}
|
2018-03-30 02:39:53 +00:00
|
|
|
}
|
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
await db.table('albums')
|
|
|
|
.where({
|
|
|
|
id,
|
|
|
|
userid: user.id
|
|
|
|
})
|
|
|
|
.update('enabled', 0)
|
2019-09-17 04:13:41 +00:00
|
|
|
utils.invalidateAlbumsCache([id])
|
2018-03-30 02:39:53 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
const identifier = await db.table('albums')
|
|
|
|
.select('identifier')
|
|
|
|
.where({
|
|
|
|
id,
|
|
|
|
userid: user.id
|
|
|
|
})
|
|
|
|
.first()
|
|
|
|
.then(row => row.identifier)
|
2018-04-28 17:26:39 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
await paths.unlink(path.join(paths.zips, `${identifier}.zip`))
|
|
|
|
} catch (error) {
|
2018-04-29 12:47:24 +00:00
|
|
|
if (error && error.code !== 'ENOENT') {
|
2019-08-26 17:02:06 +00:00
|
|
|
logger.error(error)
|
2019-09-08 01:56:29 +00:00
|
|
|
return res.status(500).json({ success: false, description: 'An unexpected error occurred. Try again?' })
|
2018-04-29 12:47:24 +00:00
|
|
|
}
|
2019-09-08 01:56:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return res.json({ success: true })
|
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) => {
|
2018-01-23 20:06:30 +00:00
|
|
|
const user = await utils.authorize(req, res)
|
2018-12-18 17:01:28 +00:00
|
|
|
if (!user) return
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2018-04-28 17:26:39 +00:00
|
|
|
const id = parseInt(req.body.id)
|
2018-12-18 17:01:28 +00:00
|
|
|
if (isNaN(id))
|
2018-03-24 13:52:47 +00:00
|
|
|
return res.json({ success: false, description: 'No album specified.' })
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
const name = typeof req.body.name === 'string'
|
2019-09-17 04:13:41 +00:00
|
|
|
? utils.escape(req.body.name.trim().substring(0, self.titleMaxLength))
|
2019-09-08 01:56:29 +00:00
|
|
|
: ''
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
if (!name)
|
|
|
|
return res.json({ success: false, description: 'No name specified.' })
|
2018-03-30 02:39:53 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
try {
|
|
|
|
const album = await db.table('albums')
|
|
|
|
.where({
|
|
|
|
id,
|
|
|
|
userid: user.id,
|
|
|
|
enabled: 1
|
|
|
|
})
|
|
|
|
.first()
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
if (!album)
|
|
|
|
return res.json({ success: false, description: 'Could not get album with the specified ID.' })
|
|
|
|
else if (album.id !== id)
|
|
|
|
return res.json({ success: false, description: 'Name already in use.' })
|
|
|
|
else if (req._old && (album.id === id))
|
|
|
|
// Old rename API
|
|
|
|
return res.json({ success: false, description: 'You did not specify a new name.' })
|
2018-03-30 02:39:53 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
await db.table('albums')
|
2018-04-28 17:26:39 +00:00
|
|
|
.where({
|
|
|
|
id,
|
|
|
|
userid: user.id
|
|
|
|
})
|
2019-09-08 01:56:29 +00:00
|
|
|
.update({
|
|
|
|
name,
|
2019-09-17 04:13:41 +00:00
|
|
|
editedAt: Math.floor(Date.now() / 1000),
|
2019-09-08 01:56:29 +00:00
|
|
|
download: Boolean(req.body.download),
|
|
|
|
public: Boolean(req.body.public),
|
|
|
|
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-17 04:13:41 +00:00
|
|
|
utils.invalidateAlbumsCache([id])
|
2019-09-08 01:56:29 +00:00
|
|
|
|
|
|
|
if (!req.body.requestLink)
|
|
|
|
return res.json({ success: true, name })
|
|
|
|
|
|
|
|
const oldIdentifier = album.identifier
|
|
|
|
const newIdentifier = await self.getUniqueRandomName()
|
2018-04-28 17:26:39 +00:00
|
|
|
|
|
|
|
await db.table('albums')
|
|
|
|
.where({
|
|
|
|
id,
|
|
|
|
userid: user.id
|
|
|
|
})
|
2019-09-08 01:56:29 +00:00
|
|
|
.update('identifier', newIdentifier)
|
|
|
|
utils.invalidateStatsCache('albums')
|
|
|
|
self.onHold.delete(newIdentifier)
|
2018-04-28 17:26:39 +00:00
|
|
|
|
|
|
|
// Rename zip archive of the album if it exists
|
2019-09-08 01:56:29 +00:00
|
|
|
try {
|
|
|
|
const oldZip = path.join(paths.zips, `${oldIdentifier}.zip`)
|
|
|
|
// await paths.access(oldZip)
|
|
|
|
const newZip = path.join(paths.zips, `${newIdentifier}.zip`)
|
|
|
|
await paths.rename(oldZip, newZip)
|
|
|
|
} catch (err) {
|
|
|
|
// Re-throw error
|
|
|
|
if (err.code !== 'ENOENT')
|
|
|
|
throw err
|
|
|
|
}
|
|
|
|
|
|
|
|
return res.json({
|
|
|
|
success: true,
|
|
|
|
identifier: newIdentifier
|
2018-04-28 17:26:39 +00:00
|
|
|
})
|
2019-09-08 01:56:29 +00:00
|
|
|
} catch (error) {
|
|
|
|
logger.error(error)
|
|
|
|
return res.status(500).json({ success: false, description: 'An unexpected error occurred. Try again?' })
|
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) => {
|
2018-01-23 20:06:30 +00:00
|
|
|
const identifier = req.params.identifier
|
2018-12-18 17:01:28 +00:00
|
|
|
if (identifier === undefined)
|
2018-04-28 17:26:39 +00:00
|
|
|
return res.status(401).json({ success: false, description: 'No identifier provided.' })
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
try {
|
|
|
|
const album = await db.table('albums')
|
|
|
|
.where({
|
|
|
|
identifier,
|
|
|
|
enabled: 1
|
|
|
|
})
|
|
|
|
.first()
|
2018-04-28 17:26:39 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
if (!album)
|
|
|
|
return res.json({
|
|
|
|
success: false,
|
|
|
|
description: 'Album not found.'
|
|
|
|
})
|
|
|
|
else if (album.public === 0)
|
|
|
|
return res.status(403).json({
|
|
|
|
success: false,
|
|
|
|
description: 'This album is not available for public.'
|
|
|
|
})
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
const title = album.name
|
|
|
|
const files = await db.table('files')
|
|
|
|
.select('name')
|
|
|
|
.where('albumid', album.id)
|
|
|
|
.orderBy('id', 'DESC')
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
for (const file of files) {
|
|
|
|
file.file = `${config.domain}/${file.name}`
|
2017-10-04 00:13:38 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
const extname = utils.extname(file.name)
|
|
|
|
if (utils.mayGenerateThumb(extname))
|
|
|
|
file.thumb = `${config.domain}/thumbs/${file.name.slice(0, -extname.length)}.png`
|
|
|
|
}
|
2017-01-30 01:17:49 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
return res.json({
|
|
|
|
success: true,
|
|
|
|
title,
|
|
|
|
count: files.length,
|
|
|
|
files
|
|
|
|
})
|
|
|
|
} catch (error) {
|
|
|
|
logger.error(error)
|
|
|
|
return res.status(500).json({ success: false, description: 'An unexpected error occcured. Try again?' })
|
|
|
|
}
|
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) => {
|
2018-04-27 03:03:13 +00:00
|
|
|
const versionString = parseInt(req.query.v)
|
2018-04-26 21:04:21 +00:00
|
|
|
const download = (filePath, fileName) => {
|
2019-09-01 19:23:16 +00:00
|
|
|
const headers = {}
|
|
|
|
if (config.cacheControl && versionString > 0) {
|
|
|
|
headers['Access-Control-Allow-Origin'] = '*'
|
2018-04-26 21:04:21 +00:00
|
|
|
headers['Cache-Control'] = 'public, max-age=2592000, must-revalidate, proxy-revalidate, immutable, stale-while-revalidate=86400, stale-if-error=604800'
|
2019-09-01 19:23:16 +00:00
|
|
|
}
|
2018-04-26 21:04:21 +00:00
|
|
|
return res.download(filePath, fileName, { headers })
|
|
|
|
}
|
|
|
|
|
2018-01-23 20:06:30 +00:00
|
|
|
const identifier = req.params.identifier
|
2018-12-18 17:01:28 +00:00
|
|
|
if (identifier === undefined)
|
2018-04-26 21:04:21 +00:00
|
|
|
return res.status(401).json({
|
|
|
|
success: false,
|
|
|
|
description: 'No identifier provided.'
|
|
|
|
})
|
2018-01-23 20:06:30 +00:00
|
|
|
|
2018-12-18 17:01:28 +00:00
|
|
|
if (!config.uploads.generateZips)
|
2019-09-08 01:56:29 +00:00
|
|
|
return res.status(401).json({
|
|
|
|
success: false,
|
|
|
|
description: 'Zip generation disabled.'
|
2018-04-28 17:26:39 +00:00
|
|
|
})
|
2019-09-08 01:56:29 +00:00
|
|
|
|
|
|
|
try {
|
|
|
|
const album = await db.table('albums')
|
|
|
|
.where({
|
|
|
|
identifier,
|
|
|
|
enabled: 1
|
|
|
|
})
|
|
|
|
.first()
|
|
|
|
|
|
|
|
if (!album)
|
|
|
|
return res.json({ success: false, description: 'Album not found.' })
|
|
|
|
else if (album.download === 0)
|
|
|
|
return res.json({ success: false, description: 'Download for this album is disabled.' })
|
|
|
|
|
|
|
|
if ((isNaN(versionString) || versionString <= 0) && album.editedAt)
|
|
|
|
return res.redirect(`${album.identifier}?v=${album.editedAt}`)
|
|
|
|
|
2019-09-23 08:09:15 +00:00
|
|
|
// TODO: editedAt column will now be updated whenever
|
|
|
|
// a user is simply editing the album's name/description.
|
|
|
|
// Perhaps add a new timestamp column that will only be updated
|
|
|
|
// when the files in the album are actually modified?
|
|
|
|
if (album.zipGeneratedAt > album.editedAt)
|
|
|
|
try {
|
|
|
|
const filePath = path.join(paths.zips, `${identifier}.zip`)
|
|
|
|
await paths.access(filePath)
|
|
|
|
return download(filePath, `${album.name}.zip`)
|
|
|
|
} catch (error) {
|
|
|
|
// Re-throw error
|
|
|
|
if (error.code !== 'ENOENT')
|
|
|
|
throw error
|
2019-09-08 01:56:29 +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}.`)
|
|
|
|
return self.zipEmitters.get(identifier).once('done', (filePath, fileName, json) => {
|
|
|
|
if (filePath && fileName)
|
|
|
|
download(filePath, fileName)
|
|
|
|
else if (json)
|
|
|
|
res.json(json)
|
|
|
|
})
|
|
|
|
}
|
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
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
const files = await db.table('files')
|
|
|
|
.select('name', 'size')
|
|
|
|
.where('albumid', album.id)
|
|
|
|
if (files.length === 0) {
|
|
|
|
logger.log(`Finished zip task for album: ${identifier} (no files).`)
|
2018-05-09 08:41:30 +00:00
|
|
|
const json = {
|
2018-04-26 21:04:21 +00:00
|
|
|
success: false,
|
2019-09-08 01:56:29 +00:00
|
|
|
description: 'There are no files in the album.'
|
2018-05-09 08:41:30 +00:00
|
|
|
}
|
2019-09-08 01:56:29 +00:00
|
|
|
self.zipEmitters.get(identifier).emit('done', null, null, json)
|
2018-05-09 08:41:30 +00:00
|
|
|
return res.json(json)
|
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).`)
|
|
|
|
const json = {
|
|
|
|
success: false,
|
|
|
|
description: `Total size of all files in the album exceeds the configured limit (${zipMaxTotalSize} MB).`
|
|
|
|
}
|
|
|
|
self.zipEmitters.get(identifier).emit('done', null, null, json)
|
|
|
|
return res.json(json)
|
|
|
|
}
|
|
|
|
}
|
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)
|
|
|
|
return res.status(500).json({
|
|
|
|
success: 'false',
|
|
|
|
description: error.toString()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.log(`Finished zip task for album: ${identifier} (success).`)
|
|
|
|
|
|
|
|
await db.table('albums')
|
|
|
|
.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)
|
|
|
|
return download(filePath, fileName)
|
|
|
|
} catch (error) {
|
|
|
|
logger.error(error)
|
|
|
|
return res.status(500).json({ success: false, description: 'An unexpected error occurred. Try again?' })
|
|
|
|
}
|
2018-01-23 20:06:30 +00:00
|
|
|
}
|
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
self.addFiles = async (req, res, next) => {
|
2018-03-30 02:39:53 +00:00
|
|
|
const user = await utils.authorize(req, res)
|
2018-12-18 17:01:28 +00:00
|
|
|
if (!user) return
|
2018-03-30 02:39:53 +00:00
|
|
|
|
|
|
|
const ids = req.body.ids
|
2019-09-08 01:56:29 +00:00
|
|
|
if (!Array.isArray(ids) || !ids.length)
|
2018-03-30 02:39:53 +00:00
|
|
|
return res.json({ success: false, description: 'No files specified.' })
|
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
let albumid = parseInt(req.body.albumid)
|
|
|
|
if (isNaN(albumid) || albumid < 0) albumid = null
|
2018-03-30 02:39:53 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
let failed = []
|
2018-04-05 12:54:24 +00:00
|
|
|
const albumids = []
|
2019-09-08 01:56:29 +00:00
|
|
|
try {
|
|
|
|
if (albumid !== null) {
|
|
|
|
const album = await db.table('albums')
|
|
|
|
.where('id', albumid)
|
|
|
|
.where(function () {
|
|
|
|
if (user.username !== 'root')
|
|
|
|
this.where('userid', user.id)
|
|
|
|
})
|
|
|
|
.first()
|
2018-04-05 03:10:10 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
if (!album)
|
|
|
|
return res.json({
|
|
|
|
success: false,
|
|
|
|
description: 'Album does not exist or it does not belong to the user.'
|
|
|
|
})
|
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
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
const files = await db.table('files')
|
|
|
|
.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
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
await db.table('files')
|
|
|
|
.whereIn('id', files.map(file => file.id))
|
|
|
|
.update('albumid', albumid)
|
2018-05-10 17:25:52 +00:00
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
files.forEach(file => {
|
|
|
|
if (file.albumid && !albumids.includes(file.albumid))
|
|
|
|
albumids.push(file.albumid)
|
2018-05-10 17:25:52 +00:00
|
|
|
})
|
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
await db.table('albums')
|
|
|
|
.whereIn('id', albumids)
|
|
|
|
.update('editedAt', Math.floor(Date.now() / 1000))
|
|
|
|
|
|
|
|
return res.json({ success: true, failed })
|
|
|
|
} catch (error) {
|
|
|
|
logger.error(error)
|
|
|
|
if (failed.length === ids.length)
|
|
|
|
return res.json({
|
|
|
|
success: false,
|
|
|
|
description: `Could not ${albumid === null ? 'add' : 'remove'} any files ${albumid === null ? 'to' : 'from'} the album.`
|
|
|
|
})
|
|
|
|
else
|
|
|
|
return res.status(500).json({ success: false, description: 'An unexpected error occurred. Try again?' })
|
|
|
|
}
|
2018-03-30 02:39:53 +00:00
|
|
|
}
|
|
|
|
|
2019-09-08 01:56:29 +00:00
|
|
|
module.exports = self
|