mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-01-31 11:50:08 +01:00
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
|
|
const file = require('../../file');
|
|
const { paths } = require('../../constants');
|
|
|
|
const themesController = module.exports;
|
|
|
|
const defaultScreenshotPath = path.join(__dirname, '../../../public/images/themes/default.png');
|
|
|
|
themesController.get = async function (req, res, next) {
|
|
const themeDir = path.join(paths.nodeModules, req.params.theme);
|
|
const themeConfigPath = path.join(themeDir, 'theme.json');
|
|
|
|
let themeConfig;
|
|
try {
|
|
themeConfig = await fs.promises.readFile(themeConfigPath, 'utf8');
|
|
themeConfig = JSON.parse(themeConfig);
|
|
} catch (err) {
|
|
if (err.code === 'ENOENT') {
|
|
return next(Error('[[error:invalid-data]]'));
|
|
}
|
|
return next(err);
|
|
}
|
|
|
|
const screenshotPath = themeConfig.screenshot ?
|
|
path.join(themeDir, themeConfig.screenshot) :
|
|
'';
|
|
|
|
if (screenshotPath && !screenshotPath.startsWith(themeDir)) {
|
|
throw new Error('[[error:invalid-path]]');
|
|
}
|
|
const exists = screenshotPath ? await file.exists(screenshotPath) : false;
|
|
res.sendFile(exists ? screenshotPath : defaultScreenshotPath);
|
|
};
|