summaryrefslogtreecommitdiffstats
path: root/internals/src/bind/mime.rs
blob: c2ac73f1654a5033b62c7377217430b87f798a48 (plain)
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
use std::borrow::Cow;

use grammar::is_token_char;
use percent_encoding::{percent_encode, EncodeSet};
use soft_ascii_string::{SoftAsciiStr, SoftAsciiString};

#[derive(Debug, Eq, PartialEq, Clone, Copy, Hash)]
struct MimeParamEncodingSet;
impl EncodeSet for MimeParamEncodingSet {
    fn contains(&self, byte: u8) -> bool {
        //if it is in the encoding set we need to encode it
        //which we need to to if it is _not_ a token char
        !is_token_char(byte as char)
    }
}

/// percent encodes a byte sequence so that it can be used
/// in a RFC 2231 conform encoded mime header parameter
pub fn percent_encode_param_value<'a, R>(input: &'a R) -> Cow<'a, SoftAsciiStr>
where
    R: ?Sized + AsRef<[u8]>,
{
    let cow: Cow<'a, str> = percent_encode(input.as_ref(), MimeParamEncodingSet).into();
    match cow {
        Cow::Owned(o) =>
        //SAFE: MimeParamEncodingSet makes all non-us-ascii bytes encoded AND
        // percent_encoding::percent_encode always only produces ascii anyway
        {
            Cow::Owned(SoftAsciiString::from_unchecked(o))
        }
        Cow::Borrowed(b) => Cow::Borrowed(SoftAsciiStr::from_unchecked(b)),
    }
}

#[cfg(test)]
mod test {
    use super::*;
    use std::borrow::Cow;

    #[test]
    fn encode_simple() {
        let input = "this is tüxt";
        let res = percent_encode_param_value(input);
        assert_eq!("this%20is%20t%C3%BCxt", res.as_str());
    }

    #[test]
    fn no_encode_no_alloc() {
        let input = "full_valid";
        let res = percent_encode_param_value(input);
        assert_eq!(res, Cow::Borrowed(input));
    }
}