2017-10-04 02:13:38 +02:00
|
|
|
const config = require('../config.js');
|
|
|
|
const routes = require('express').Router();
|
|
|
|
const db = require('knex')(config.database);
|
|
|
|
const path = require('path');
|
|
|
|
const utils = require('../controllers/utilsController.js');
|
|
|
|
|
|
|
|
routes.get('/a/:identifier', async (req, res, next) => {
|
|
|
|
let identifier = req.params.identifier;
|
|
|
|
if (identifier === undefined) return res.status(401).json({ success: false, description: 'No identifier provided' });
|
|
|
|
|
2017-10-04 05:59:05 +02:00
|
|
|
const album = await db.table('albums').where({ identifier, enabled: 1 }).first();
|
|
|
|
if (!album) return res.status(404).sendFile('404.html', { root: './pages/error/' });
|
2017-10-04 02:13:38 +02:00
|
|
|
|
|
|
|
const files = await db.table('files').select('name').where('albumid', album.id).orderBy('id', 'DESC');
|
|
|
|
let thumb = '';
|
|
|
|
const basedomain = config.domain;
|
|
|
|
|
|
|
|
for (let file of files) {
|
|
|
|
file.file = `${basedomain}/${file.name}`;
|
|
|
|
|
|
|
|
let ext = path.extname(file.name).toLowerCase();
|
|
|
|
if (utils.imageExtensions.includes(ext) || utils.videoExtensions.includes(ext)) {
|
|
|
|
file.thumb = `${basedomain}/thumbs/${file.name.slice(0, -ext.length)}.png`;
|
|
|
|
|
|
|
|
/*
|
|
|
|
If thumbnail for album is still not set, do it.
|
|
|
|
A potential improvement would be to let the user upload a specific image as an album cover
|
|
|
|
since embedding the first image could potentially result in nsfw content when pasting links.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (thumb === '') {
|
|
|
|
thumb = file.thumb;
|
2017-09-20 08:03:31 +02:00
|
|
|
}
|
|
|
|
|
2017-10-04 02:13:38 +02:00
|
|
|
file.thumb = `<img src="${file.thumb}"/>`;
|
|
|
|
} else {
|
|
|
|
file.thumb = `<h1 class="title">.${ext}</h1>`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-04 07:05:38 +02:00
|
|
|
|
|
|
|
let enableDownload = false;
|
|
|
|
if (config.uploads.generateZips) enableDownload = true;
|
|
|
|
|
2017-10-04 02:13:38 +02:00
|
|
|
return res.render('album', {
|
|
|
|
layout: false,
|
|
|
|
title: album.name,
|
|
|
|
count: files.length,
|
|
|
|
thumb,
|
2017-10-04 07:05:38 +02:00
|
|
|
files,
|
|
|
|
identifier,
|
|
|
|
enableDownload
|
2017-10-04 02:13:38 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = routes;
|