/
germanubis
/
tera
Обзор
Документация
Войти
/
germanubis
/
tera
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/utils.rs
85 строк
3 KB
Vincent Prouillet
Allow whitespace handling to be used with comments tag
28 фев 2021, 11:59
28 фев 2021, 11:59
b229e1e
Код
Авторство
О чём код?
use crate::errors::Error; /// Escape HTML following [OWASP](https://www.owasp.org/index.php/XSS_(Cross_Site_Scripting)_Prevention_Cheat_Sheet) /// /// Escape the following characters with HTML entity encoding to prevent switching /// into any execution context, such as script, style, or event handlers. Using /// hex entities is recommended in the spec. In addition to the 5 characters /// significant in XML (&, <, >, ", '), the forward slash is included as it helps /// to end an HTML entity. /// /// ```text /// & --> & /// < --> < /// > --> > /// " --> " /// ' --> ' ' is not recommended /// / --> / forward slash is included as it helps end an HTML entity /// ``` #[inline] pub fn escape_html(input: &str) -> String { let mut output = String::with_capacity(input.len() * 2); for c in input.chars() { match c { '&' => output.push_str("&"), '<' => output.push_str("<"), '>' => output.push_str(">"), '"' => output.push_str("""), '\'' => output.push_str("'"), '/' => output.push_str("/"), _ => output.push(c), } } // Not using shrink_to_fit() on purpose output } pub(crate) fn render_to_string<C, F, E>(context: C, render: F) -> Result<String, Error> where C: FnOnce() -> String, F: FnOnce(&mut Vec<u8>) -> Result<(), E>, Error: From<E>, { let mut buffer = Vec::new(); render(&mut buffer).map_err(Error::from)?; buffer_to_string(context, buffer) } pub(crate) fn buffer_to_string<F>(context: F, buffer: Vec<u8>) -> Result<String, Error> where F: FnOnce() -> String, { String::from_utf8(buffer).map_err(|error| Error::utf8_conversion_error(error, context())) } #[cfg(test)] mod tests { use super::escape_html; use super::render_to_string; #[test] fn test_escape_html() { let tests = vec![ (r"", ""), (r"a&b", "a&b"), (r"<a", "<a"), (r">a", ">a"), (r#"""#, """), (r#"'"#, "'"), (r#"大阪"#, "大阪"), ]; for (input, expected) in tests { assert_eq!(escape_html(input), expected); } let empty = String::new(); assert_eq!(escape_html(&empty), empty); } #[test] fn test_render_to_string() { use std::io::Write; let string = render_to_string(|| panic!(), |w| write!(w, "test")).unwrap(); assert_eq!(string, "test".to_owned()); } }