1
use std::collections::HashMap;
2

            
3
use crate::commands::{
4
    Command, GenericResponseValue, Request, RequestParserResult, ResponseAttributes,
5
    ResponseParserError,
6
};
7

            
8
pub struct StickerNamesTypes;
9

            
10
pub type StickerNamesTypesResponse = HashMap<String, Vec<String>>;
11

            
12
impl Command for StickerNamesTypes {
13
    type Response = StickerNamesTypesResponse;
14
    const COMMAND: &'static str = "stickernamestypes";
15

            
16
    fn parse_request(mut parts: std::str::SplitWhitespace<'_>) -> RequestParserResult<'_> {
17
        let sticker_type = parts.next().map(|s| s.to_string());
18

            
19
        debug_assert!(parts.next().is_none());
20

            
21
        Ok((Request::StickerNamesTypes(sticker_type), ""))
22
    }
23

            
24
    fn parse_response(
25
        parts: ResponseAttributes<'_>,
26
    ) -> Result<Self::Response, ResponseParserError> {
27
        let parts: Vec<_> = parts.into();
28
        let mut result = HashMap::new();
29

            
30
        for name_type_pair in parts.chunks_exact(2) {
31
            // TODO: don't depend on order, just make sure we have both
32
            let (name_key, name_value) = name_type_pair[0];
33
            let (type_key, type_value) = name_type_pair[1];
34
            debug_assert!(name_key == "name");
35
            debug_assert!(type_key == "type");
36

            
37
            let name = match name_value {
38
                GenericResponseValue::Text(s) => s.to_string(),
39
                GenericResponseValue::Binary(_) => {
40
                    return Err(ResponseParserError::UnexpectedPropertyType(
41
                        "name", "Binary",
42
                    ))
43
                }
44
            };
45

            
46
            let sticker_type = match type_value {
47
                GenericResponseValue::Text(s) => s.to_string(),
48
                GenericResponseValue::Binary(_) => {
49
                    return Err(ResponseParserError::UnexpectedPropertyType(
50
                        "type", "Binary",
51
                    ))
52
                }
53
            };
54

            
55
            result
56
                .entry(name)
57
                .or_insert_with(Vec::new)
58
                .push(sticker_type);
59
        }
60

            
61
        Ok(result)
62
    }
63
}