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
use std::collections::HashMap;

/// Parse the htpasswd string and create a HashMap of user/password pairs.
///
/// # Examples
///
/// ```
/// let input = "
/// johndoe:$apr1$hdqQY4oe$6PtEz0XH6ORg.GPKCTpG31
/// janedoe
/// # comment
/// janedoe:$apr1$D7qCR.yD$vfKO/2urv89Okpxl8VGpb/
/// ";
/// let mut output = HashMap::new();
/// output.insert("johndoe", "$apr1$hdqQY4oe$6PtEz0XH6ORg.GPKCTpG31");
/// output.insert("janedoe", "$apr1$D7qCR.yD$vfKO/2urv89Okpxl8VGpb/");
/// assert_eq!(output, parse(input));
/// ```
pub fn parse(text: &str) -> HashMap<&str, &str> {
    let mut map = HashMap::new();
    for line in text.trim().lines() {
        let parts: Vec<&str> = line.trim().split(":").collect();
        if parts.len() != 2 {
            continue;
        }
        if parts[0].starts_with("#") {
            continue;
        }
        map.insert(parts[0].trim(), parts[1].trim());
    }
    return map;
}

#[cfg(test)]
mod tests {
    use super::parse;
    use std::collections::HashMap;

    #[test]
    fn it_parse() {
        let input = "
        johndoe:$apr1$hdqQY4oe$6PtEz0XH6ORg.GPKCTpG31
        janedoe
        # comment
        janedoe:$apr1$D7qCR.yD$vfKO/2urv89Okpxl8VGpb/
        ";
        let mut output = HashMap::new();
        output.insert("johndoe", "$apr1$hdqQY4oe$6PtEz0XH6ORg.GPKCTpG31");
        output.insert("janedoe", "$apr1$D7qCR.yD$vfKO/2urv89Okpxl8VGpb/");
        assert_eq!(output, parse(input));
    }
}