neutralts/utils.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705
use serde_json::Value;
use crate::constants::*;
/// Merges two JSON schemas represented as `serde_json::Value`.
///
/// This function performs a recursive merge between two JSON objects.
/// If an object has common keys, the values are merged recursively.
/// If the value is not an object, it is directly overwritten.
///
/// # Arguments
///
/// * `a` - A mutable reference to the first JSON object (`serde_json::Value::Object`).
/// * `b` - A reference to the second JSON object (`serde_json::Value::Object`) that will be merged with the first.
///
/// # Example
///
/// ```text
/// use serde_json::{json, Value};
///
/// let mut schema1 = json!({
/// "name": "John",
/// "age": 30,
/// });
///
/// let schema2 = json!({
/// "age": 31,
/// "city": "New York"
/// });
///
/// merge_schema(&mut schema1, &schema2);
/// assert_eq!(schema1, json!({
/// "name": "John",
/// "age": 31,
/// "city": "New York"
/// }));
/// ```
pub fn merge_schema(a: &mut Value, b: &Value) {
match (a, b) {
(Value::Object(a_map), Value::Object(b_map)) => {
for (k, v) in b_map {
if let Some(va) = a_map.get_mut(k) {
merge_schema(va, v);
} else {
a_map.insert(k.clone(), v.clone());
}
}
}
(a, b) => *a = b.clone(),
}
}
/// Extract same level blocks positions.
///
/// ```text
///
/// .-----> .-----> {:code:
/// | | {:code: ... :}
/// | | {:code: ... :}
/// | | {:code: ... :}
/// Level block --> | ·-----> :}
/// | -----> {:code: ... :}
/// | .-----> {:code:
/// | | {:code: ... :}
/// ·-----> ·-----> :}
///
/// # Arguments
///
/// * `raw_source` - A string slice containing the template source text.
///
/// # Returns
///
/// * `Ok(Vec<(usize, usize)>)`: A vector of tuples representing the start and end positions of each extracted block.
/// * `Err(usize)`: An error position if there are unmatched closing tags or other issues
/// ```
pub fn extract_blocks(raw_source: &str) -> Result<Vec<(usize, usize)>, usize> {
let mut blocks = Vec::new();
let bytes = raw_source.as_bytes();
let mut curr_pos: usize = 0;
let mut open_pos: usize;
let mut nested = 0;
let mut nested_comment = 0;
let len_open = BIF_OPEN_B.len();
let len_close = BIF_CLOSE_B.len();
let len_src = bytes.len();
while let Some(pos) = find_bytes(bytes, BIF_OPEN_B, curr_pos) {
curr_pos = pos + len_open;
open_pos = pos;
// It is important to extract the comments first because they may have bif commented,
// we avoid that they are detected as valid and other errors.
if bytes[curr_pos] == BIF_COMMENT_B {
while let Some(pos) = find_bytes(bytes, BIF_DELIM_B, curr_pos) {
curr_pos = pos;
if curr_pos >= len_src {
break;
}
if bytes[curr_pos - 1] == BIF_OPEN0 && bytes[curr_pos + 1] == BIF_COMMENT_B {
nested_comment += 1;
curr_pos += 1;
continue;
}
if nested_comment > 0 && bytes[curr_pos + 1] == BIF_CLOSE1 && bytes[curr_pos - 1] == BIF_COMMENT_B {
nested_comment -= 1;
curr_pos += 1;
continue;
}
if bytes[curr_pos + 1] == BIF_CLOSE1 && bytes[curr_pos - 1] == BIF_COMMENT_B {
curr_pos += len_close;
blocks.push((open_pos, curr_pos));
break;
} else {
curr_pos += 1;
}
}
continue;
}
while let Some(pos) = find_bytes(bytes, BIF_DELIM_B, curr_pos) {
curr_pos = pos;
if curr_pos >= len_src {
break;
}
if bytes[curr_pos - 1] == BIF_OPEN0 {
nested += 1;
curr_pos += 1;
continue;
}
if nested > 0 && bytes[curr_pos + 1] == BIF_CLOSE1 {
nested -= 1;
curr_pos += 1;
continue;
}
if bytes[curr_pos + 1] == BIF_CLOSE1 {
curr_pos += len_close;
blocks.push((open_pos, curr_pos));
break;
} else {
curr_pos += 1;
}
}
}
// Search BIF_CLOSE in the blocks that are not bif, given that we start looking
// for BIF_OPEN all these keys are found, if anything is left is BIF_CLOSE
let mut prev_end = 0;
for (start, end) in &blocks {
if let Some(error_pos) = find_bytes(&bytes[prev_end..*start], BIF_CLOSE_B, 0) {
return Err(error_pos + prev_end);
}
prev_end = *end;
}
let rest = if curr_pos == 0 { 0 } else { curr_pos - 1 };
if let Some(error_pos) = find_bytes(bytes, BIF_CLOSE_B, rest) {
return Err(error_pos);
}
Ok(blocks)
}
fn find_bytes(bytes: &[u8], substring: &[u8], start_pos: usize) -> Option<usize> {
let bytes_len = bytes.len();
let subs_len = substring.len();
if start_pos >= bytes_len || substring.is_empty() || start_pos + subs_len > bytes_len {
return None;
}
(start_pos..=bytes_len.saturating_sub(subs_len)).find(|&i| &bytes[i..i + subs_len] == substring)
}
/// Removes a prefix and suffix from a string slice.
///
/// # Arguments
///
/// * `str`: The input string slice.
/// * `prefix`: The prefix to remove.
/// * `suffix`: The suffix to remove.
///
/// # Returns
///
/// * A new string slice with the prefix and suffix removed, or the original string if not found.
pub fn strip_prefix_suffix<'a>(str: &'a str, prefix: &'a str, suffix: &'a str) -> &'a str {
let start = match str.strip_prefix(prefix) {
Some(striped) => striped,
None => return str,
};
let end = match start.strip_suffix(suffix) {
Some(striped) => striped,
None => return str,
};
end
}
/// Retrieves a value from a JSON schema using a specified key.
///
/// # Arguments
///
/// * `schema`: A reference to the JSON schema as a `Value`.
/// * `key`: The key used to retrieve the value from the schema.
///
/// # Returns
///
/// * A `String` containing the retrieved value, or an empty string if the key is not found.
pub fn get_from_key(schema: &Value, key: &str) -> String {
let tmp: String = format!("{}{}", "/", key);
let k = tmp.replace(BIF_ARRAY, "/");
let mut result = "";
let num: String;
if let Some(v) = schema.pointer(&k) {
match v {
Value::Null => result = "",
Value::Bool(_b) => result = "",
Value::Number(n) => {
num = n.to_string();
result = num.as_str();
}
Value::String(s) => result = s,
_ => result = "",
}
}
result.to_string()
}
/// Checks if the value associated with a key in the schema is considered empty.
///
/// # Arguments
///
/// * `schema`: A reference to the JSON schema as a `Value`.
/// * `key`: The key used to check the value in the schema.
///
/// # Returns
///
/// * `true` if the value is considered empty, otherwise `false`.
pub fn is_empty_key(schema: &Value, key: &str) -> bool {
let tmp: String = format!("{}{}", "/", key);
let k = tmp.replace(BIF_ARRAY, "/");
if let Some(value) = schema.pointer(&k) {
match value {
Value::Object(map) => map.is_empty(),
Value::Array(arr) => arr.is_empty(),
Value::String(s) => s.is_empty(),
Value::Null => true,
Value::Number(_) => false,
Value::Bool(_) => false,
}
} else {
true
}
}
/// Checks if the value associated with a key in the schema is considered a boolean true.
///
/// # Arguments
///
/// * `schema`: A reference to the JSON schema as a `Value`.
/// * `key`: The key used to check the value in the schema.
///
/// # Returns
///
/// * `true` if the value is considered a boolean true, otherwise `false`.
pub fn is_bool_key(schema: &Value, key: &str) -> bool {
let tmp: String = format!("{}{}", "/", key);
let k = tmp.replace(BIF_ARRAY, "/");
if let Some(value) = schema.pointer(&k) {
match value {
Value::Object(obj) => !obj.is_empty(),
Value::Array(arr) => !arr.is_empty(),
Value::String(s) if s.is_empty() || s == "false" => false,
Value::String(s) => s.parse::<f64>().ok().map_or(true, |n| n > 0.0),
Value::Null => false,
Value::Number(n) => n.as_f64().map_or(false, |f| f > 0.0),
Value::Bool(b) => *b,
}
} else {
false
}
}
/// Checks if the value associated with a key in the schema is considered an array.
///
/// # Arguments
///
/// * `schema`: A reference to the JSON schema as a `Value`.
/// * `key`: The key used to check the value in the schema.
///
/// # Returns
///
/// * `true` if the value is an array, otherwise `false`.
pub fn is_array_key(schema: &Value, key: &str) -> bool {
let tmp: String = format!("{}{}", "/", key);
let k = tmp.replace(BIF_ARRAY, "/");
if let Some(value) = schema.pointer(&k) {
match value {
Value::Object(_) => true,
Value::Array(_) => true,
_ => false,
}
} else {
false
}
}
/// Checks if the value associated with a key in the schema is considered defined.
///
/// # Arguments
///
/// * `schema`: A reference to the JSON schema as a `Value`.
/// * `key`: The key used to check the value in the schema.
///
/// # Returns
///
/// * `true` if the value is defined and not null, otherwise `false`.
pub fn is_defined_key(schema: &Value, key: &str) -> bool {
let tmp: String = format!("{}{}", "/", key);
let k = tmp.replace(BIF_ARRAY, "/");
match schema.pointer(&k) {
Some(value) => !value.is_null(),
None => false,
}
}
/// Finds the position of the first occurrence of BIF_CODE_B in the source string,
/// but only when it is not inside any nested brackets.
///
/// ```text
/// .------------------------------> params
/// | .----------------------> this
/// | |
/// | | .----> code
/// | | |
/// v v v
/// ------------ -- ------------------------------
/// {:!snippet; snippet_name >> <div>... {:* ... *:} ...</div> :}
pub fn get_code_position(src: &str) -> Option<usize> {
let mut level = 0;
src.as_bytes()
.windows(2)
.enumerate()
.find(|&(_, window)| match window {
x if x == BIF_OPEN_B => {
level += 1;
false
}
x if x == BIF_CLOSE_B => {
level -= 1;
false
}
x if x == BIF_CODE_B && level == 0 => true,
_ => false,
})
.map(|(i, _)| i)
}
/// Removes comments from the template source.
pub fn remove_comments(raw_source: &str) -> String {
let mut result = String::new();
let mut blocks = Vec::new();
let bytes = raw_source.as_bytes();
let mut curr_pos: usize = 0;
let mut open_pos: usize;
let mut nested_comment = 0;
let len_open = BIF_OPEN_B.len();
let len_close = BIF_CLOSE_B.len();
let len_src = bytes.len();
while let Some(pos) = find_bytes(bytes, BIF_COMMENT_OPEN_B, curr_pos) {
curr_pos = pos + len_open;
open_pos = pos;
while let Some(pos) = find_bytes(bytes, BIF_DELIM_B, curr_pos) {
curr_pos = pos;
if curr_pos >= len_src {
break;
}
if bytes[curr_pos - 1] == BIF_OPEN0 && bytes[curr_pos + 1] == BIF_COMMENT_B {
nested_comment += 1;
curr_pos += 1;
continue;
}
if nested_comment > 0 && bytes[curr_pos + 1] == BIF_CLOSE1 && bytes[curr_pos - 1] == BIF_COMMENT_B {
nested_comment -= 1;
curr_pos += 1;
continue;
}
if bytes[curr_pos + 1] == BIF_CLOSE1 && bytes[curr_pos - 1] == BIF_COMMENT_B {
curr_pos += len_close;
blocks.push((open_pos, curr_pos));
break;
} else {
curr_pos += 1;
}
}
}
let mut prev_end = 0;
for (start, end) in &blocks {
result.push_str(&raw_source[prev_end..*start]);
prev_end = *end;
}
result.push_str(&raw_source[curr_pos..]);
result
}
/// Performs a wildcard matching between a text and a pattern.
///
/// Used in bif "allow" and "declare"
///
/// # Arguments
///
/// * `text`: The text to match against the pattern.
/// * `pattern`: The pattern containing wildcards ('.', '?', '*', '~').
///
/// # Returns
///
/// * `true` if the text matches the pattern, otherwise `false`.
pub fn wildcard_match(text: &str, pattern: &str) -> bool {
let text_chars: Vec<char> = text.chars().collect();
let pattern_chars: Vec<char> = pattern.chars().collect();
fn match_recursive(text: &[char], pattern: &[char]) -> bool {
if pattern.is_empty() {
return text.is_empty();
}
let first_char = *pattern.first().unwrap();
let rest_pattern = &pattern[1..];
match first_char {
'\\' => {
if rest_pattern.is_empty() || text.is_empty() {
return false;
}
let escaped_char = rest_pattern.first().unwrap();
match_recursive(&text[1..], &rest_pattern[1..]) && *text.first().unwrap() == *escaped_char
}
'.' => {
match_recursive(text, rest_pattern) || (!text.is_empty() && match_recursive(&text[1..], rest_pattern))
}
'?' => {
!text.is_empty() && match_recursive(&text[1..], rest_pattern)
}
'*' => {
match_recursive(text, rest_pattern) || (!text.is_empty() && match_recursive(&text[1..], pattern))
}
'~' => {
text.is_empty()
},
_ => {
if text.is_empty() || first_char != *text.first().unwrap() {
false
} else {
match_recursive(&text[1..], rest_pattern)
}
}
}
}
match_recursive(&text_chars, &pattern_chars)
}
/// Finds the position of a tag in the text.
///
/// It is used in the bif "moveto".
///
/// # Arguments
///
/// * `text`: The text to search for the tag.
/// * `tag`: The tag to find.
///
/// # Returns
///
/// * `Some(usize)`: The position of the end of the tag, or None if the tag is not found.
pub fn find_tag_position(text: &str, tag: &str) -> Option<usize> {
if let Some(start_pos) = text.find(tag) {
if !tag.starts_with("</") {
if let Some(end_tag_pos) = text[start_pos..].find('>') {
return Some(start_pos + end_tag_pos + 1);
}
} else {
return Some(start_pos);
}
}
None
}
/// Escapes special characters in a given input string.
///
/// This function replaces specific ASCII characters with their corresponding HTML entities.
/// It is designed to handle both general HTML escaping and optional escaping of curly braces (`{` and `}`).
///
/// # Arguments
///
/// * `input` - The input string to escape.
/// * `escape_braces` - A boolean flag indicating whether to escape curly braces (`{` and `}`).
/// - If `true`, curly braces are escaped as `{` and `}`.
/// - If `false`, curly braces are left unchanged.
///
/// # Escaped Characters
///
/// The following characters are always escaped:
/// - `&` → `&`
/// - `<` → `<`
/// - `>` → `>`
/// - `"` → `"`
/// - `'` → `'`
/// - `/` → `/`
///
/// If `escape_braces` is `true`, the following characters are also escaped:
/// - `{` → `{`
/// - `}` → `}`
///
/// # Examples
///
/// Basic usage without escaping curly braces:
/// ```text
/// let input = r#"Hello, <world> & "friends"! {example}"#;
/// let escaped = escape_chars(input, false);
/// assert_eq!(escaped, r#"Hello, <world> & "friends"! {example}"#);
/// ```
///
/// Escaping curly braces:
/// ```text
/// let input = r#"Hello, <world> & "friends"! {example}"#;
/// let escaped = escape_chars(input, true);
/// assert_eq!(escaped, r#"Hello, <world> & "friends"! {example}"#);
/// ```
pub fn escape_chars(input: &str, escape_braces: bool) -> String {
let mut result = String::with_capacity(input.len() * 2);
for c in input.chars() {
if c.is_ascii() {
match c {
'&' => result.push_str("&"),
'<' => result.push_str("<"),
'>' => result.push_str(">"),
'"' => result.push_str("""),
'\'' => result.push_str("'"),
'/' => result.push_str("/"),
'{' if escape_braces => result.push_str("{"),
'}' if escape_braces => result.push_str("}"),
_ => result.push(c),
}
} else {
result.push(c);
}
}
result
}
/// Unescapes HTML entities in a given input string.
///
/// This function is designed specifically to reverse the escaping performed by `escape_chars`.
/// It is not intended to be a general-purpose HTML decoder. It replaces the following HTML
/// entities with their corresponding characters:
/// - `&` → `&`
/// - `<` → `<`
/// - `>` → `>`
/// - `"` → `"`
/// - `'` → `'`
/// - `/` → `/`
///
/// If `escape_braces` is `true`, it also replaces:
/// - `{` → `{`
/// - `}` → `}`
///
/// If an unrecognized entity is encountered, it is left unchanged in the output.
///
/// # Arguments
///
/// * `input` - The input string containing HTML entities to unescape.
/// * `escape_braces` - A boolean flag indicating whether to unescape curly braces (`{` and `}`).
/// - If `true`, `{` and `}` are unescaped to `{` and `}`.
/// - If `false`, `{` and `}` are left unchanged.
///
/// # Examples
///
/// Basic usage:
/// ```text
/// let input = "<script>alert("Hello & 'World'");</script>";
/// let unescaped = unescape_chars(input, false);
/// assert_eq!(unescaped, r#"<script>alert("Hello & 'World'");</script>"#);
/// ```
///
/// Unescaping curly braces:
/// ```text
/// let input = "{example}";
/// let unescaped = unescape_chars(input, true);
/// assert_eq!(unescaped, "{example}");
/// ```
///
/// Unrecognized entities are preserved:
/// ```text
/// let input = "This is an &unknown; entity.";
/// let unescaped = unescape_chars(input, false);
/// assert_eq!(unescaped, "This is an &unknown; entity.");
/// ```
pub fn unescape_chars(input: &str, escape_braces: bool) -> String {
if !input.contains('&') {
return input.to_string();
}
let mut result = String::with_capacity(input.len());
let mut chars = input.chars().peekable();
while let Some(c) = chars.next() {
if c == '&' {
let mut entity = String::new();
let mut has_semicolon = false;
while let Some(&next_char) = chars.peek() {
if next_char == ';' {
chars.next();
has_semicolon = true;
break;
}
entity.push(chars.next().unwrap());
}
match (entity.as_str(), has_semicolon) {
("amp", true) => result.push('&'),
("lt", true) => result.push('<'),
("gt", true) => result.push('>'),
("quot", true) => result.push('"'),
("#x27", true) => result.push('\''),
("#x2F", true) => result.push('/'),
("#123", true) if escape_braces => result.push('{'),
("#125", true) if escape_braces => result.push('}'),
_ => {
result.push('&');
result.push_str(&entity);
if has_semicolon {
result.push(';');
}
}
}
} else {
result.push(c);
}
}
result
}
/// Recursively filter a Value with the function escape_chars
///
/// # Arguments
/// * `value` - A mutable reference to a JSON `Value`. It can be a string (`String`),
/// an object (`Object`), or an array (`Array`).
///
pub fn filter_value(value: &mut Value) {
match value {
Value::String(s) => *s = escape_chars(&unescape_chars(&s, true), true),
Value::Object(obj) => for v in obj.values_mut() {
filter_value(v) ;
},
Value::Array(arr) => for item in arr.iter_mut() {
filter_value(item);
},
_ => {}
}
}
/// Recursively filters the keys (names) of a Value with the function escape_chars
///
/// # Arguments
/// * `value` - A mutable reference to a JSON `Value`. It can be a string (`String`),
/// an object (`Object`), or an array (`Array`).
///
pub fn filter_value_keys(value: &mut Value) {
match value {
Value::Object(obj) => {
let mut new_obj = serde_json::Map::new();
for (key, val) in obj.iter_mut() {
let new_key = escape_chars(&unescape_chars(key, true), true);
filter_value_keys(val);
new_obj.insert(new_key, val.clone());
}
*obj = new_obj;
}
Value::Array(arr) => {
for item in arr.iter_mut() {
filter_value_keys(item);
}
}
_ => {}
}
}