36aa641cb9
also, set no-use-before-define in linter
116 lines
3.9 KiB
JavaScript
116 lines
3.9 KiB
JavaScript
import assert from 'node:assert';
|
|
import AuditSource from '../auditsource.js';
|
|
import BoxError from '../boxerror.js';
|
|
import branding from '../branding.js';
|
|
import { HttpError } from '@cloudron/connect-lastmile';
|
|
import { HttpSuccess } from '@cloudron/connect-lastmile';
|
|
import safe from 'safetydance';
|
|
|
|
|
|
async function getFooter(req, res, next) {
|
|
const [error, footer] = await safe(branding.getFooter());
|
|
if (error) return next(BoxError.toHttpError(error));
|
|
|
|
next(new HttpSuccess(200, { footer }));
|
|
}
|
|
|
|
async function setFooter(req, res, next) {
|
|
assert.strictEqual(typeof req.body, 'object');
|
|
|
|
if (typeof req.body.footer !== 'string') return next(new HttpError(400, 'footer is required'));
|
|
|
|
const [error] = await safe(branding.setFooter(req.body.footer, AuditSource.fromRequest(req)));
|
|
if (error) return next(BoxError.toHttpError(error));
|
|
|
|
next(new HttpSuccess(200, {}));
|
|
}
|
|
|
|
async function setCloudronName(req, res, next) {
|
|
assert.strictEqual(typeof req.body, 'object');
|
|
|
|
if (typeof req.body.name !== 'string') return next(new HttpError(400, 'name is required'));
|
|
|
|
const [error] = await safe(branding.setCloudronName(req.body.name, AuditSource.fromRequest(req)));
|
|
if (error) return next(BoxError.toHttpError(error));
|
|
|
|
next(new HttpSuccess(200, {}));
|
|
}
|
|
|
|
async function getCloudronName(req, res, next) {
|
|
const [error, name] = await safe(branding.getCloudronName());
|
|
if (error) return next(BoxError.toHttpError(error));
|
|
|
|
next(new HttpSuccess(200, { name }));
|
|
}
|
|
|
|
async function setCloudronAvatar(req, res, next) {
|
|
assert.strictEqual(typeof req.files, 'object');
|
|
|
|
if (!req.files.avatar) return next(new HttpError(400, 'avatar must be provided'));
|
|
const avatar = safe.fs.readFileSync(req.files.avatar.path);
|
|
safe.fs.unlinkSync(req.files.avatar.path);
|
|
if (!avatar) return next(BoxError.toHttpError(new BoxError(BoxError.FS_ERROR, safe.error.message)));
|
|
|
|
const [error] = await safe(branding.setCloudronAvatar(avatar, AuditSource.fromRequest(req)));
|
|
if (error) return next(BoxError.toHttpError(error));
|
|
|
|
next(new HttpSuccess(200, {}));
|
|
}
|
|
|
|
async function getCloudronAvatar(req, res, next) {
|
|
const [error, avatar] = await safe(branding.getCloudronAvatar());
|
|
if (error) return next(BoxError.toHttpError(error));
|
|
|
|
// avoid caching the avatar on the client to see avatar changes immediately
|
|
res.set('Cache-Control', 'no-cache');
|
|
|
|
res.set('Content-Type', 'image/png');
|
|
res.status(200).send(avatar);
|
|
}
|
|
|
|
async function setCloudronBackground(req, res, next) {
|
|
assert.strictEqual(typeof req.files, 'object');
|
|
|
|
if (!req.files.background) return next(new HttpError(400, 'background not provided'));
|
|
const backgroundImage = safe.fs.readFileSync(req.files.background.path);
|
|
safe.fs.unlinkSync(req.files.background.path);
|
|
if (!backgroundImage) return next(BoxError.toHttpError(new BoxError(BoxError.FS_ERROR, safe.error.message)));
|
|
|
|
const [error] = await safe(branding.setCloudronBackground(backgroundImage));
|
|
if (error) return next(BoxError.toHttpError(error));
|
|
|
|
next(new HttpSuccess(200, {}));
|
|
}
|
|
|
|
async function unsetCloudronBackground(req, res, next) {
|
|
const [error] = await safe(branding.setCloudronBackground(null));
|
|
if (error) return next(BoxError.toHttpError(error));
|
|
|
|
next(new HttpSuccess(200, {}));
|
|
}
|
|
|
|
async function getCloudronBackground(req, res, next) {
|
|
const [error, background] = await safe(branding.getCloudronBackground());
|
|
if (error) return next(BoxError.toHttpError(error));
|
|
|
|
if (!background) return next(new HttpError(404, 'no background set'));
|
|
|
|
// avoid caching on the client to see changes immediately
|
|
res.set('Cache-Control', 'no-cache');
|
|
|
|
res.set('Content-Type', 'image/webp');
|
|
res.status(200).send(background);
|
|
}
|
|
|
|
export default {
|
|
getCloudronName,
|
|
setCloudronName,
|
|
getCloudronAvatar,
|
|
setCloudronAvatar,
|
|
getCloudronBackground,
|
|
setCloudronBackground,
|
|
unsetCloudronBackground,
|
|
getFooter,
|
|
setFooter,
|
|
};
|