use std::cmp::Ordering;
use std::str::FromStr;
use num_order::NumOrd;
use serde_json::Value as Json;
use crate::json::value::JsonTruthy;
handlebars_helper!(eq: |x: Json, y: Json| x == y);
handlebars_helper!(ne: |x: Json, y: Json| x != y);
handlebars_helper!(gt: |x: Json, y: Json| compare_json(x, y) == Some(Ordering::Greater));
handlebars_helper!(gte: |x: Json, y: Json| compare_json(x, y).is_some_and(|ord| ord != Ordering::Less));
handlebars_helper!(lt: |x: Json, y: Json| compare_json(x, y) == Some(Ordering::Less));
handlebars_helper!(lte: |x: Json, y: Json| compare_json(x, y).is_some_and(|ord| ord != Ordering::Greater));
handlebars_helper!(not: |x: Json| !x.is_truthy(false));
handlebars_helper!(len: |x: Json| {
match x {
Json::Array(a) => a.len(),
Json::Object(m) => m.len(),
Json::String(s) => s.len(),
_ => 0
}
});
fn compare_json(x: &Json, y: &Json) -> Option<Ordering> {
fn cmp_num_str(a_num: &serde_json::Number, b_str: &str) -> Option<Ordering> {
let b_num = serde_json::Number::from_str(b_str).ok()?;
cmp_nums(a_num, &b_num)
}
fn cmp_nums(a_num: &serde_json::Number, b_num: &serde_json::Number) -> Option<Ordering> {
if a_num.is_u64() {
let a = a_num.as_u64()?;
if b_num.is_u64() {
NumOrd::num_partial_cmp(&a, &b_num.as_u64()?)
} else if b_num.is_i64() {
NumOrd::num_partial_cmp(&a, &b_num.as_i64()?)
} else {
NumOrd::num_partial_cmp(&a, &b_num.as_f64()?)
}
} else if a_num.is_i64() {
let a = a_num.as_i64()?;
if b_num.is_u64() {
NumOrd::num_partial_cmp(&a, &b_num.as_u64()?)
} else if b_num.is_i64() {
NumOrd::num_partial_cmp(&a, &b_num.as_i64()?)
} else {
NumOrd::num_partial_cmp(&a, &b_num.as_f64()?)
}
} else {
let a = a_num.as_f64()?;
if b_num.is_u64() {
NumOrd::num_partial_cmp(&a, &b_num.as_u64()?)
} else if b_num.is_i64() {
NumOrd::num_partial_cmp(&a, &b_num.as_i64()?)
} else {
NumOrd::num_partial_cmp(&a, &b_num.as_f64()?)
}
}
}
match (x, y) {
(Json::Number(a), Json::Number(b)) => cmp_nums(a, b),
(Json::String(a), Json::String(b)) => Some(a.cmp(b)),
(Json::Bool(a), Json::Bool(b)) => Some(a.cmp(b)),
(Json::Number(a), Json::String(b)) => cmp_num_str(a, b),
(Json::String(a), Json::Number(b)) => cmp_num_str(b, a).map(Ordering::reverse),
_ => None,
}
}
#[allow(non_camel_case_types)]
pub struct and;
impl crate::HelperDef for and {
fn call_inner<'reg: 'rc, 'rc>(
&self,
h: &crate::Helper<'rc>,
_r: &'reg crate::Handlebars<'reg>,
_: &'rc crate::Context,
_: &mut crate::RenderContext<'reg, 'rc>,
) -> std::result::Result<crate::ScopedJson<'rc>, crate::RenderError> {
let all_true = h.params().iter().all(|p| p.value().is_truthy(false));
Ok(crate::ScopedJson::Derived(crate::JsonValue::from(all_true)))
}
}
#[allow(non_camel_case_types)]
pub struct or;
impl crate::HelperDef for or {
fn call_inner<'reg: 'rc, 'rc>(
&self,
h: &crate::Helper<'rc>,
_r: &'reg crate::Handlebars<'reg>,
_: &'rc crate::Context,
_: &mut crate::RenderContext<'reg, 'rc>,
) -> std::result::Result<crate::ScopedJson<'rc>, crate::RenderError> {
let any_true = h.params().iter().any(|p| p.value().is_truthy(false));
Ok(crate::ScopedJson::Derived(crate::JsonValue::from(any_true)))
}
}
#[cfg(test)]
mod test_conditions {
fn test_condition(condition: &str, expected: bool) {
let handlebars = crate::Handlebars::new();
let result = handlebars
.render_template(
&format!("{{{{#if {condition}}}}}lorem{{{{else}}}}ipsum{{{{/if}}}}"),
&json!({}),
)
.unwrap();
assert_eq!(&result, if expected { "lorem" } else { "ipsum" });
}
#[test]
fn test_and_or() {
test_condition("(or (gt 3 5) (gt 5 3))", true);
test_condition("(and null 4)", false);
test_condition("(or null 4)", true);
test_condition("(and null 4 5 6)", false);
test_condition("(or null 4 5 6)", true);
test_condition("(and 1 2 3 4)", true);
test_condition("(or 1 2 3 4)", true);
test_condition("(and 1 2 3 4 0)", false);
test_condition("(or 1 2 3 4 0)", true);
test_condition("(or null 2 3 4 0)", true);
test_condition("(or [] [])", false);
test_condition("(or [1] [])", true);
test_condition("(or [1] [2])", true);
test_condition("(or [1] [2] [3])", true);
test_condition("(or [1] [2] [3] [4])", true);
test_condition("(or [1] [2] [3] [4] [])", true);
}
#[test]
fn test_cmp() {
test_condition("(gt 5 3)", true);
test_condition("(gt 3 5)", false);
test_condition("(not [])", true);
}
#[test]
fn test_eq() {
test_condition("(eq 5 5)", true);
test_condition("(eq 5 6)", false);
test_condition(r#"(eq "foo" "foo")"#, true);
test_condition(r#"(eq "foo" "Foo")"#, false);
test_condition(r"(eq [5] [5])", true);
test_condition(r"(eq [5] [4])", false);
test_condition(r#"(eq 5 "5")"#, false);
test_condition(r"(eq 5 [5])", false);
}
#[test]
fn test_ne() {
test_condition("(ne 5 6)", true);
test_condition("(ne 5 5)", false);
test_condition(r#"(ne "foo" "foo")"#, false);
test_condition(r#"(ne "foo" "Foo")"#, true);
}
#[test]
fn nested_conditions() {
let handlebars = crate::Handlebars::new();
let result = handlebars
.render_template("{{#if (gt 5 3)}}lorem{{else}}ipsum{{/if}}", &json!({}))
.unwrap();
assert_eq!(&result, "lorem");
let result = handlebars
.render_template(
"{{#if (not (gt 5 3))}}lorem{{else}}ipsum{{/if}}",
&json!({}),
)
.unwrap();
assert_eq!(&result, "ipsum");
}
#[test]
fn test_len() {
let handlebars = crate::Handlebars::new();
let result = handlebars
.render_template("{{len value}}", &json!({"value": [1,2,3]}))
.unwrap();
assert_eq!(&result, "3");
let result = handlebars
.render_template("{{len value}}", &json!({"value": {"a" :1, "b": 2}}))
.unwrap();
assert_eq!(&result, "2");
let result = handlebars
.render_template("{{len value}}", &json!({"value": "tomcat"}))
.unwrap();
assert_eq!(&result, "6");
let result = handlebars
.render_template("{{len value}}", &json!({"value": 3}))
.unwrap();
assert_eq!(&result, "0");
}
#[test]
fn test_comparisons() {
test_condition("(gt 5 3)", true);
test_condition("(gt 3 5)", false);
test_condition("(gte 5 5)", true);
test_condition("(lt 3 5)", true);
test_condition("(lte 5 5)", true);
test_condition("(lt 9007199254740992 9007199254740993)", true);
test_condition("(gt 5.5 3.3)", true);
test_condition("(gt 3.3 5.5)", false);
test_condition("(gte 5.5 5.5)", true);
test_condition("(lt 3.3 5.5)", true);
test_condition("(lte 5.5 5.5)", true);
test_condition(r#"(gt "b" "a")"#, true);
test_condition(r#"(lt "a" "b")"#, true);
test_condition(r#"(gte "a" "a")"#, true);
test_condition(r#"(gt 53 "35")"#, true);
test_condition(r#"(lt 53 "35")"#, false);
test_condition(r#"(lt "35" 53)"#, true);
test_condition(r#"(gte "53" 53)"#, true);
test_condition(r#"(lt -1 0)"#, true);
test_condition(r#"(lt "-1" 0)"#, true);
test_condition(r#"(lt "-1.00" 0)"#, true);
test_condition(r#"(gt "1.00" 0)"#, true);
test_condition(r#"(gt 0 -1)"#, true);
test_condition(r#"(gt 0 "-1")"#, true);
test_condition(r#"(gt 0 "-1.00")"#, true);
test_condition(r#"(lt 0 "1.00")"#, true);
test_condition(r#"(gt 18446744073709551615 -1)"#, true);
test_condition("(gt true false)", true);
test_condition("(lt false true)", true);
}
}