assay-lua 0.11.2

General-purpose enhanced Lua runtime. Batteries-included scripting, automation, and web services.
Documentation
use super::json::lua_value_to_json;
use mlua::{Lua, Value};

pub fn register_template(lua: &Lua) -> mlua::Result<()> {
    let tmpl_table = lua.create_table()?;

    let render_string_fn = lua.create_function(|_, (template_str, vars): (String, Value)| {
        let json_vars = match &vars {
            Value::Table(_) => lua_value_to_json(&vars)?,
            Value::Nil => serde_json::Value::Object(serde_json::Map::new()),
            _ => {
                return Err(mlua::Error::runtime(
                    "template.render_string: second argument must be a table or nil",
                ));
            }
        };
        let mini_vars = minijinja::value::Value::from_serialize(&json_vars);
        let env = minijinja::Environment::new();
        let tmpl = env
            .template_from_str(&template_str)
            .map_err(|e| mlua::Error::runtime(format!("template.render_string: {e}")))?;
        tmpl.render(mini_vars)
            .map_err(|e| mlua::Error::runtime(format!("template.render_string: {e}")))
    })?;
    tmpl_table.set("render_string", render_string_fn)?;

    let render_fn = lua.create_function(|_, (file_path, vars): (String, Value)| {
        let content = std::fs::read_to_string(&file_path).map_err(|e| {
            mlua::Error::runtime(format!(
                "template.render: failed to read {file_path:?}: {e}"
            ))
        })?;
        let json_vars = match &vars {
            Value::Table(_) => lua_value_to_json(&vars)?,
            Value::Nil => serde_json::Value::Object(serde_json::Map::new()),
            _ => {
                return Err(mlua::Error::runtime(
                    "template.render: second argument must be a table or nil",
                ));
            }
        };
        let mini_vars = minijinja::value::Value::from_serialize(&json_vars);
        let env = minijinja::Environment::new();
        let tmpl = env
            .template_from_str(&content)
            .map_err(|e| mlua::Error::runtime(format!("template.render: {e}")))?;
        tmpl.render(mini_vars)
            .map_err(|e| mlua::Error::runtime(format!("template.render: {e}")))
    })?;
    tmpl_table.set("render", render_fn)?;

    lua.globals().set("template", tmpl_table)?;
    Ok(())
}