2020-07-11 11:46:16 +02:00
|
|
|
import nunjucks, {Environment} from "nunjucks";
|
2020-04-23 11:18:23 +02:00
|
|
|
import config from "config";
|
2020-09-25 22:03:22 +02:00
|
|
|
import {Express, NextFunction, Request, Response, Router} from "express";
|
2020-04-23 11:18:23 +02:00
|
|
|
import ApplicationComponent from "../ApplicationComponent";
|
2020-10-02 12:13:34 +02:00
|
|
|
import Controller, {RouteParams} from "../Controller";
|
2020-07-15 10:24:01 +02:00
|
|
|
import * as querystring from "querystring";
|
2020-10-02 12:13:34 +02:00
|
|
|
import {ParsedUrlQueryInput} from "querystring";
|
2020-07-26 11:37:36 +02:00
|
|
|
import * as util from "util";
|
2020-09-24 22:33:37 +02:00
|
|
|
import * as path from "path";
|
2020-09-25 22:03:22 +02:00
|
|
|
import * as fs from "fs";
|
2020-11-02 17:48:52 +01:00
|
|
|
import {log} from "../Logger";
|
2020-09-25 22:03:22 +02:00
|
|
|
import Middleware from "../Middleware";
|
2020-04-23 11:18:23 +02:00
|
|
|
|
2020-09-25 22:03:22 +02:00
|
|
|
export default class NunjucksComponent extends ApplicationComponent {
|
2020-09-24 22:33:37 +02:00
|
|
|
private readonly viewsPath: string[];
|
2020-11-03 10:29:36 +01:00
|
|
|
private environment?: Environment;
|
2020-07-08 10:49:29 +02:00
|
|
|
|
2020-09-24 22:33:37 +02:00
|
|
|
public constructor(viewsPath: string[] = ['views']) {
|
2020-07-08 10:49:29 +02:00
|
|
|
super();
|
|
|
|
this.viewsPath = viewsPath;
|
|
|
|
}
|
|
|
|
|
2020-07-11 11:46:16 +02:00
|
|
|
public async start(app: Express): Promise<void> {
|
2020-07-08 11:09:27 +02:00
|
|
|
let coreVersion = 'unknown';
|
2020-09-25 22:03:22 +02:00
|
|
|
const file = fs.existsSync(path.join(__dirname, '../../package.json')) ?
|
|
|
|
path.join(__dirname, '../../package.json') :
|
|
|
|
path.join(__dirname, '../package.json');
|
|
|
|
|
2020-07-08 11:09:27 +02:00
|
|
|
try {
|
2020-09-25 22:03:22 +02:00
|
|
|
coreVersion = JSON.parse(fs.readFileSync(file).toString()).version;
|
2020-07-08 11:09:27 +02:00
|
|
|
} catch (e) {
|
2020-11-02 17:48:52 +01:00
|
|
|
log.warn('Couldn\'t determine coreVersion.', e);
|
2020-07-08 11:09:27 +02:00
|
|
|
}
|
|
|
|
|
2020-11-03 17:46:04 +01:00
|
|
|
const opts = {
|
2020-04-23 11:18:23 +02:00
|
|
|
autoescape: true,
|
|
|
|
noCache: !config.get('view.cache'),
|
|
|
|
throwOnUndefined: true,
|
2020-11-03 17:46:04 +01:00
|
|
|
};
|
|
|
|
this.environment = new nunjucks.Environment([
|
|
|
|
...this.viewsPath.map(path => new nunjucks.FileSystemLoader(path, opts)),
|
|
|
|
new nunjucks.FileSystemLoader(path.join(__dirname, '../../../views'), opts),
|
|
|
|
new nunjucks.FileSystemLoader(path.join(__dirname, '../views'), opts),
|
|
|
|
], opts)
|
2020-10-02 12:13:34 +02:00
|
|
|
.addGlobal('route', (
|
|
|
|
route: string,
|
|
|
|
params: RouteParams = [],
|
|
|
|
query: ParsedUrlQueryInput = {},
|
|
|
|
absolute: boolean = false,
|
|
|
|
): string => {
|
|
|
|
return Controller.route(route, params, query, absolute);
|
|
|
|
})
|
2020-09-25 22:03:22 +02:00
|
|
|
.addGlobal('app_version', this.getApp().getVersion())
|
2020-07-08 11:09:27 +02:00
|
|
|
.addGlobal('core_version', coreVersion)
|
2020-07-15 10:24:01 +02:00
|
|
|
.addGlobal('querystring', querystring)
|
2020-09-23 16:11:51 +02:00
|
|
|
.addGlobal('app', config.get('app'))
|
|
|
|
|
2020-07-26 11:37:36 +02:00
|
|
|
.addFilter('dump', (val) => {
|
|
|
|
return util.inspect(val);
|
|
|
|
})
|
2020-04-23 11:18:23 +02:00
|
|
|
.addFilter('hex', (v: number) => {
|
|
|
|
return v.toString(16);
|
|
|
|
});
|
2020-11-03 10:29:36 +01:00
|
|
|
this.environment.express(app);
|
2020-04-23 11:18:23 +02:00
|
|
|
app.set('view engine', 'njk');
|
2020-07-11 11:46:16 +02:00
|
|
|
}
|
2020-04-23 11:18:23 +02:00
|
|
|
|
2020-09-25 23:42:15 +02:00
|
|
|
public async init(_router: Router): Promise<void> {
|
2020-09-25 22:03:22 +02:00
|
|
|
this.use(NunjucksMiddleware);
|
2020-04-23 11:18:23 +02:00
|
|
|
}
|
2020-09-23 16:11:51 +02:00
|
|
|
|
2020-11-03 10:29:36 +01:00
|
|
|
public getEnvironment(): Environment {
|
|
|
|
if (!this.environment) throw new Error('Environment not initialized.');
|
|
|
|
return this.environment;
|
2020-09-23 16:11:51 +02:00
|
|
|
}
|
2020-09-25 22:03:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export class NunjucksMiddleware extends Middleware {
|
|
|
|
private env?: Environment;
|
|
|
|
|
|
|
|
protected async handle(req: Request, res: Response, next: NextFunction): Promise<void> {
|
2020-11-03 10:29:36 +01:00
|
|
|
this.env = this.app.as(NunjucksComponent).getEnvironment();
|
2020-09-25 22:03:22 +02:00
|
|
|
res.locals.url = req.url;
|
|
|
|
res.locals.params = req.params;
|
|
|
|
res.locals.query = req.query;
|
|
|
|
res.locals.body = req.body;
|
|
|
|
|
|
|
|
next();
|
|
|
|
}
|
|
|
|
|
|
|
|
public getEnvironment(): Environment {
|
|
|
|
if (!this.env) throw new Error('Environment not initialized.');
|
|
|
|
return this.env;
|
|
|
|
}
|
|
|
|
}
|