etherpad-lite/src/node/eejs/index.ts

126 lines
3.2 KiB
TypeScript
Raw Normal View History

2024-04-17 21:29:15 +02:00
"use strict";
/*
* Copyright (c) 2011 RedHog (Egil Möller) <egil.moller@freecode.no>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS-IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/* Basic usage:
*
2021-01-19 15:26:45 -05:00
* require("./index").require("./path/to/template.ejs")
*/
2024-04-17 21:29:15 +02:00
const ejs = require("ejs");
const fs = require("fs");
const hooks = require("../../static/js/pluginfw/hooks.js");
const path = require("path");
const resolve = require("resolve");
const settings = require("../utils/Settings");
import { pluginInstallPath } from "../../static/js/pluginfw/installer";
2020-11-23 13:24:19 -05:00
const templateCache = new Map();
2012-03-13 17:31:40 +01:00
exports.info = {
2024-04-17 21:29:15 +02:00
__output_stack: [],
block_stack: [],
file_stack: [],
args: [],
2012-03-13 17:31:40 +01:00
};
2024-04-17 21:29:15 +02:00
const getCurrentFile = () =>
exports.info.file_stack[exports.info.file_stack.length - 1];
2024-02-22 11:36:43 +01:00
exports._init = (b: any, recursive: boolean) => {
2024-04-17 21:29:15 +02:00
exports.info.__output_stack.push(exports.info.__output);
exports.info.__output = b;
2020-11-23 13:24:19 -05:00
};
2024-04-17 21:29:15 +02:00
exports._exit = (b: any, recursive: boolean) => {
exports.info.__output = exports.info.__output_stack.pop();
2020-11-23 13:24:19 -05:00
};
2012-03-13 17:42:15 +01:00
2024-04-17 21:29:15 +02:00
exports.begin_block = (name: string) => {
exports.info.block_stack.push(name);
exports.info.__output_stack.push(exports.info.__output.get());
exports.info.__output.set("");
2020-11-23 13:24:19 -05:00
};
exports.end_block = () => {
2024-04-17 21:29:15 +02:00
const name = exports.info.block_stack.pop();
const renderContext = exports.info.args[exports.info.args.length - 1];
const content = exports.info.__output.get();
exports.info.__output.set(exports.info.__output_stack.pop());
const args = { content, renderContext };
hooks.callAll(`eejsBlock_${name}`, args);
exports.info.__output.set(exports.info.__output.get().concat(args.content));
2020-11-23 13:24:19 -05:00
};
2024-04-17 21:29:15 +02:00
exports.require = (
name: string,
args: {
e?: Function;
require?: Function;
},
mod: {
filename: string;
paths: string[];
},
) => {
if (args == null) args = {};
let basedir = __dirname;
let paths: string[] = [];
if (exports.info.file_stack.length) {
basedir = path.dirname(getCurrentFile().path);
}
if (mod) {
basedir = path.dirname(mod.filename);
paths = mod.paths;
}
/**
* Add the plugin install path to the paths array
*/
if (!paths.includes(pluginInstallPath)) {
paths.push(pluginInstallPath);
}
const ejspath = resolve.sync(name, {
paths,
basedir,
extensions: [".html", ".ejs"],
});
args.e = exports;
args.require = require;
const cache = settings.maxAge !== 0;
const template =
(cache && templateCache.get(ejspath)) ||
ejs.compile(
"<% e._init({get: () => __output, set: (s) => { __output = s; }}); %>" +
`${fs.readFileSync(ejspath).toString()}<% e._exit(); %>`,
{ filename: ejspath },
);
if (cache) templateCache.set(ejspath, template);
exports.info.args.push(args);
exports.info.file_stack.push({ path: ejspath });
const res = template(args);
exports.info.file_stack.pop();
exports.info.args.pop();
return res;
2020-11-23 13:24:19 -05:00
};