mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
5ff883bc69
This was an oversight of https://github.com/Unleash/unleash/pull/3402
55 lines
1.8 KiB
TypeScript
55 lines
1.8 KiB
TypeScript
import { ADMIN } from '../../types/permissions';
|
|
import { EmailService, TemplateFormat } from '../../services/email-service';
|
|
import { IUnleashConfig } from '../../types/option';
|
|
import { IUnleashServices } from '../../types/services';
|
|
import { Request, Response } from 'express';
|
|
import Controller from '../controller';
|
|
import { Logger } from '../../logger';
|
|
import sanitize from 'sanitize-filename';
|
|
|
|
export default class EmailController extends Controller {
|
|
private emailService: EmailService;
|
|
|
|
private logger: Logger;
|
|
|
|
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);
|
|
}
|
|
|
|
async getHtmlPreview(req: Request, res: Response): Promise<void> {
|
|
const { template } = req.params;
|
|
const ctx = req.query;
|
|
const data = await this.emailService.compileTemplate(
|
|
sanitize(template),
|
|
TemplateFormat.HTML,
|
|
ctx,
|
|
);
|
|
res.setHeader('Content-Type', 'text/html');
|
|
res.status(200);
|
|
res.send(data);
|
|
res.end();
|
|
}
|
|
|
|
async getTextPreview(req: Request, res: Response): Promise<void> {
|
|
const { template } = req.params;
|
|
const ctx = req.query;
|
|
const data = await this.emailService.compileTemplate(
|
|
sanitize(template),
|
|
TemplateFormat.PLAIN,
|
|
ctx,
|
|
);
|
|
res.setHeader('Content-Type', 'text/plain');
|
|
res.status(200);
|
|
res.send(data);
|
|
res.end();
|
|
}
|
|
}
|
|
module.exports = EmailController;
|