1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/src/lib/routes/admin-api/email.ts

60 lines
2.0 KiB
TypeScript
Raw Normal View History

import { ADMIN } from '../../permissions';
import { TemplateFormat } from '../../services/email-service';
import { handleErrors } from './util';
import { IUnleashConfig } from '../../types/option';
import { IUnleashServices } from '../../types/services';
const Controller = require('../controller');
export default class EmailController extends Controller {
constructor(
config: IUnleashConfig,
{ emailService }: Pick<IUnleashServices, 'emailService'>,
) {
super(config);
this.emailService = emailService;
this.logger = config.getLogger('routes/admin-api/email');
this.get('/preview/html/:template', this.getHtmlPreview, ADMIN);
this.get('/preview/text/:template', this.getTextPreview, ADMIN);
}
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
async getHtmlPreview(req, res): Promise<void> {
try {
const { template } = req.params;
const ctx = req.query;
const data = await this.emailService.compileTemplate(
template,
TemplateFormat.HTML,
ctx,
);
res.setHeader('Content-Type', 'text/html');
res.status(200);
res.send(data);
res.end();
} catch (e) {
handleErrors(res, this.logger, e);
}
}
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
async getTextPreview(req, res) {
try {
const { template } = req.params;
const ctx = req.query;
const data = await this.emailService.compileTemplate(
template,
TemplateFormat.PLAIN,
ctx,
);
res.setHeader('Content-Type', 'text/plain');
res.status(200);
res.send(data);
res.end();
} catch (e) {
handleErrors(res, this.logger, e);
}
}
}
module.exports = EmailController;