2021-01-18 18:40:19 +01:00
|
|
|
const handlebars = require("handlebars")
|
|
|
|
const { registerAll } = require("./helpers/index")
|
2021-01-21 18:56:00 +01:00
|
|
|
const processors = require("./processors")
|
2021-06-28 18:42:39 +02:00
|
|
|
const { removeHandlebarsStatements } = require("./utilities")
|
2021-01-29 15:35:37 +01:00
|
|
|
const manifest = require("../manifest.json")
|
2021-10-11 15:53:55 +02:00
|
|
|
const JS = require("./helpers/javascript")
|
2021-01-18 18:40:19 +01:00
|
|
|
|
|
|
|
const hbsInstance = handlebars.create()
|
|
|
|
registerAll(hbsInstance)
|
|
|
|
|
|
|
|
/**
|
2021-01-20 14:32:15 +01:00
|
|
|
* utility function to check if the object is valid
|
2021-01-18 18:40:19 +01:00
|
|
|
*/
|
2021-01-20 14:32:15 +01:00
|
|
|
function testObject(object) {
|
2021-01-18 18:40:19 +01:00
|
|
|
// JSON stringify will fail if there are any cycles, stops infinite recursion
|
|
|
|
try {
|
|
|
|
JSON.stringify(object)
|
|
|
|
} catch (err) {
|
|
|
|
throw "Unable to process inputs to JSON, cannot recurse"
|
|
|
|
}
|
2021-01-20 14:32:15 +01:00
|
|
|
}
|
|
|
|
|
2021-01-30 03:54:52 +01:00
|
|
|
/**
|
|
|
|
* Given an input object this will recurse through all props to try and update any handlebars statements within.
|
|
|
|
* @param {object|array} object The input structure which is to be recursed, it is important to note that
|
|
|
|
* if the structure contains any cycles then this will fail.
|
|
|
|
* @param {object} context The context that handlebars should fill data from.
|
|
|
|
* @returns {Promise<object|array>} The structure input, as fully updated as possible.
|
|
|
|
*/
|
|
|
|
module.exports.processObject = async (object, context) => {
|
|
|
|
testObject(object)
|
2021-06-01 15:59:42 +02:00
|
|
|
for (let key of Object.keys(object || {})) {
|
2021-01-30 03:54:52 +01:00
|
|
|
if (object[key] != null) {
|
2021-01-21 14:46:45 +01:00
|
|
|
let val = object[key]
|
|
|
|
if (typeof val === "string") {
|
2021-01-30 03:54:52 +01:00
|
|
|
object[key] = await module.exports.processString(object[key], context)
|
2021-01-21 14:46:45 +01:00
|
|
|
} else if (typeof val === "object") {
|
2021-01-30 03:54:52 +01:00
|
|
|
object[key] = await module.exports.processObject(object[key], context)
|
2021-01-21 14:46:45 +01:00
|
|
|
}
|
2021-01-18 18:40:19 +01:00
|
|
|
}
|
2021-01-30 03:54:52 +01:00
|
|
|
}
|
|
|
|
return object
|
|
|
|
}
|
2021-01-18 18:40:19 +01:00
|
|
|
|
2021-01-30 03:54:52 +01:00
|
|
|
/**
|
|
|
|
* This will process a single handlebars containing string. If the string passed in has no valid handlebars statements
|
|
|
|
* then nothing will occur.
|
|
|
|
* @param {string} string The template string which is the filled from the context object.
|
|
|
|
* @param {object} context An object of information which will be used to enrich the string.
|
|
|
|
* @returns {Promise<string>} The enriched string, all templates should have been replaced if they can be.
|
|
|
|
*/
|
|
|
|
module.exports.processString = async (string, context) => {
|
|
|
|
// TODO: carry out any async calls before carrying out async call
|
|
|
|
return module.exports.processStringSync(string, context)
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Given an input object this will recurse through all props to try and update any handlebars statements within. This is
|
|
|
|
* a pure sync call and therefore does not have the full functionality of the async call.
|
|
|
|
* @param {object|array} object The input structure which is to be recursed, it is important to note that
|
|
|
|
* if the structure contains any cycles then this will fail.
|
|
|
|
* @param {object} context The context that handlebars should fill data from.
|
|
|
|
* @returns {object|array} The structure input, as fully updated as possible.
|
|
|
|
*/
|
|
|
|
module.exports.processObjectSync = (object, context) => {
|
|
|
|
testObject(object)
|
2021-06-01 15:59:42 +02:00
|
|
|
for (let key of Object.keys(object || {})) {
|
2021-01-30 03:54:52 +01:00
|
|
|
let val = object[key]
|
|
|
|
if (typeof val === "string") {
|
|
|
|
object[key] = module.exports.processStringSync(object[key], context)
|
|
|
|
} else if (typeof val === "object") {
|
|
|
|
object[key] = module.exports.processObjectSync(object[key], context)
|
2021-01-20 14:32:15 +01:00
|
|
|
}
|
2021-01-30 03:54:52 +01:00
|
|
|
}
|
|
|
|
return object
|
|
|
|
}
|
2021-01-18 18:40:19 +01:00
|
|
|
|
2021-01-30 03:54:52 +01:00
|
|
|
/**
|
|
|
|
* This will process a single handlebars containing string. If the string passed in has no valid handlebars statements
|
|
|
|
* then nothing will occur. This is a pure sync call and therefore does not have the full functionality of the async call.
|
|
|
|
* @param {string} string The template string which is the filled from the context object.
|
|
|
|
* @param {object} context An object of information which will be used to enrich the string.
|
|
|
|
* @returns {string} The enriched string, all templates should have been replaced if they can be.
|
|
|
|
*/
|
|
|
|
module.exports.processStringSync = (string, context) => {
|
2021-02-03 13:38:06 +01:00
|
|
|
if (!exports.isValid(string)) {
|
|
|
|
return string
|
|
|
|
}
|
2021-02-03 14:04:19 +01:00
|
|
|
// take a copy of input incase error
|
|
|
|
const input = string
|
2021-01-30 03:54:52 +01:00
|
|
|
if (typeof string !== "string") {
|
|
|
|
throw "Cannot process non-string types."
|
|
|
|
}
|
2021-02-03 14:04:19 +01:00
|
|
|
try {
|
|
|
|
string = processors.preprocess(string)
|
|
|
|
// this does not throw an error when template can't be fulfilled, have to try correct beforehand
|
|
|
|
const template = hbsInstance.compile(string, {
|
|
|
|
strict: false,
|
|
|
|
})
|
2021-06-25 16:04:54 +02:00
|
|
|
return processors.postprocess(template({
|
|
|
|
now: new Date().toISOString(),
|
|
|
|
...context,
|
|
|
|
}))
|
2021-02-03 14:04:19 +01:00
|
|
|
} catch (err) {
|
|
|
|
return removeHandlebarsStatements(input)
|
|
|
|
}
|
2021-01-30 03:54:52 +01:00
|
|
|
}
|
2021-01-22 18:57:38 +01:00
|
|
|
|
2021-01-30 03:54:52 +01:00
|
|
|
/**
|
|
|
|
* Simple utility function which makes sure that a templating property has been wrapped in literal specifiers correctly.
|
|
|
|
* @param {string} property The property which is to be wrapped.
|
|
|
|
* @returns {string} The wrapped property ready to be added to a templating string.
|
|
|
|
*/
|
|
|
|
module.exports.makePropSafe = property => {
|
|
|
|
return `[${property}]`.replace("[[", "[").replace("]]", "]")
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks whether or not a template string contains totally valid syntax (simply tries running it)
|
|
|
|
* @param string The string to test for valid syntax - this may contain no templates and will be considered valid.
|
|
|
|
* @returns {boolean} Whether or not the input string is valid.
|
|
|
|
*/
|
|
|
|
module.exports.isValid = string => {
|
2021-02-03 14:56:01 +01:00
|
|
|
const validCases = [
|
|
|
|
"string",
|
|
|
|
"number",
|
|
|
|
"object",
|
|
|
|
"array",
|
|
|
|
"cannot read property",
|
2021-08-06 16:32:55 +02:00
|
|
|
"undefined",
|
2021-02-03 14:56:01 +01:00
|
|
|
]
|
2021-02-03 13:10:39 +01:00
|
|
|
// this is a portion of a specific string always output by handlebars in the case of a syntax error
|
2021-02-03 13:38:06 +01:00
|
|
|
const invalidCases = [`expecting '`]
|
2021-01-30 03:54:52 +01:00
|
|
|
// don't really need a real context to check if its valid
|
|
|
|
const context = {}
|
|
|
|
try {
|
|
|
|
hbsInstance.compile(processors.preprocess(string, false))(context)
|
|
|
|
return true
|
|
|
|
} catch (err) {
|
2021-02-03 13:10:39 +01:00
|
|
|
const msg = err && err.message ? err.message : err
|
|
|
|
if (!msg) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
const invalidCase = invalidCases.some(invalidCase =>
|
|
|
|
msg.toLowerCase().includes(invalidCase)
|
|
|
|
)
|
|
|
|
const validCase = validCases.some(validCase =>
|
|
|
|
msg.toLowerCase().includes(validCase)
|
2021-02-02 21:29:10 +01:00
|
|
|
)
|
2021-01-30 03:54:52 +01:00
|
|
|
// special case for maths functions - don't have inputs yet
|
2021-02-03 13:10:39 +01:00
|
|
|
return validCase && !invalidCase
|
2021-01-30 03:54:52 +01:00
|
|
|
}
|
|
|
|
}
|
2021-01-29 15:35:37 +01:00
|
|
|
|
2021-01-30 03:54:52 +01:00
|
|
|
/**
|
|
|
|
* We have generated a static manifest file from the helpers that this string templating package makes use of.
|
|
|
|
* This manifest provides information about each of the helpers and how it can be used.
|
|
|
|
* @returns The manifest JSON which has been generated from the helpers.
|
|
|
|
*/
|
|
|
|
module.exports.getManifest = () => {
|
|
|
|
return manifest
|
2021-01-29 15:35:37 +01:00
|
|
|
}
|
2021-10-11 15:53:55 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Export utilities for working with JS bindings
|
|
|
|
*/
|
|
|
|
module.exports.isJSBinding = JS.isJSBinding
|
|
|
|
module.exports.decodeJSBinding = JS.decodeJSBinding
|
|
|
|
module.exports.encodeJSBinding = JS.encodeJSBinding
|