aboutsummaryrefslogtreecommitdiffstats
path: root/askama_shared
diff options
context:
space:
mode:
authorLibravatar João Oliveira <hello@jxs.pt>2020-03-30 18:57:41 +0100
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2020-03-31 13:15:15 +0200
commit2ec671f243e20f58ac52c0ce935d9734c1069c8f (patch)
treeb8a2cc1212d5f24ae06b5e9c74ee1e71f3a8c083 /askama_shared
parent68964fa8d15d6d503ad010e94a6d7a54037ecb40 (diff)
downloadaskama-2ec671f243e20f58ac52c0ce935d9734c1069c8f.tar.gz
askama-2ec671f243e20f58ac52c0ce935d9734c1069c8f.tar.bz2
askama-2ec671f243e20f58ac52c0ce935d9734c1069c8f.zip
fix urlencode bug, do not encode a fixed size of character exceptions
Diffstat (limited to 'askama_shared')
-rw-r--r--askama_shared/src/filters/mod.rs41
1 files changed, 35 insertions, 6 deletions
diff --git a/askama_shared/src/filters/mod.rs b/askama_shared/src/filters/mod.rs
index d5a7c88..8306ba3 100644
--- a/askama_shared/src/filters/mod.rs
+++ b/askama_shared/src/filters/mod.rs
@@ -25,10 +25,35 @@ use humansize::{file_size_opts, FileSize};
#[cfg(feature = "num_traits")]
use num_traits::{cast::NumCast, Signed};
#[cfg(feature = "percent-encoding")]
-use percent_encoding::{utf8_percent_encode, NON_ALPHANUMERIC};
+use percent_encoding::{utf8_percent_encode, AsciiSet, NON_ALPHANUMERIC};
use super::Result;
+#[cfg(feature = "percent-encoding")]
+// urlencode char encoding set, escape all characters except the following:
+// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURI#Description
+const ENCODE_SET: &AsciiSet = &NON_ALPHANUMERIC
+ .remove(b';')
+ .remove(b',')
+ .remove(b'/')
+ .remove(b'?')
+ .remove(b':')
+ .remove(b'@')
+ .remove(b'&')
+ .remove(b'=')
+ .remove(b'+')
+ .remove(b'$')
+ .remove(b'-')
+ .remove(b'_')
+ .remove(b'.')
+ .remove(b'!')
+ .remove(b'~')
+ .remove(b'*')
+ .remove(b'\'')
+ .remove(b'(')
+ .remove(b')')
+ .remove(b'#');
+
// This is used by the code generator to decide whether a named filter is part of
// Askama or should refer to a local `filters` module. It should contain all the
// filters shipped with Askama, even the optional ones (since optional inclusion
@@ -109,7 +134,7 @@ pub fn filesizeformat(b: usize) -> Result<String> {
/// Returns the the UTF-8 encoded String of the given input.
pub fn urlencode(s: &dyn fmt::Display) -> Result<String> {
let s = s.to_string();
- Ok(utf8_percent_encode(&s, NON_ALPHANUMERIC).to_string())
+ Ok(utf8_percent_encode(&s, ENCODE_SET).to_string())
}
/// Formats arguments according to the specified format
@@ -321,10 +346,14 @@ mod tests {
#[cfg(feature = "percent-encoding")]
#[test]
fn test_urlencoding() {
- assert_eq!(
- urlencode(&"/path/to/dir with spaces").unwrap(),
- "%2Fpath%2Fto%2Fdir%20with%20spaces"
- );
+ let set1 = ";,/?:@&=+$#";
+ let set2 = "-_.!~*'()";
+ let set3 = "ABC abc 123";
+ assert_eq!(urlencode(&set1).unwrap(), ";,/?:@&=+$#");
+
+ assert_eq!(urlencode(&set2).unwrap(), "-_.!~*'()");
+
+ assert_eq!(urlencode(&set3).unwrap(), "ABC%20abc%20123");
}
#[test]