1
use std::collections::HashMap;
2

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

            
8
pub struct StickerList;
9

            
10
pub type StickerListResponse = HashMap<String, String>;
11

            
12
impl Command for StickerList {
13
    type Response = StickerListResponse;
14
    const COMMAND: &'static str = "sticker list";
15

            
16
    fn parse_request(mut parts: std::str::SplitWhitespace<'_>) -> RequestParserResult<'_> {
17
        let sticker_type = parts.next().ok_or(RequestParserError::UnexpectedEOF)?;
18
        let sticker_type = sticker_type
19
            .parse()
20
            .map_err(|_| RequestParserError::SyntaxError(1, sticker_type.to_owned()))?;
21

            
22
        let uri = parts.next().ok_or(RequestParserError::UnexpectedEOF)?;
23
        let uri = uri
24
            .parse()
25
            .map_err(|_| RequestParserError::SyntaxError(1, uri.to_owned()))?;
26

            
27
        debug_assert!(parts.next().is_none());
28

            
29
        Ok((Request::StickerList(sticker_type, uri), ""))
30
    }
31

            
32
    fn parse_response(
33
        parts: ResponseAttributes<'_>,
34
    ) -> Result<Self::Response, ResponseParserError> {
35
        let parts: Vec<_> = parts.into();
36
        debug_assert!(parts.iter().all(|(k, _)| *k == "sticker"));
37

            
38
        let result = parts
39
            .iter()
40
            .map(|(_, v)| match v {
41
                GenericResponseValue::Text(value) => Ok(value),
42
                GenericResponseValue::Binary(_) => Err(
43
                    ResponseParserError::UnexpectedPropertyType("sticker", "Binary"),
44
                ),
45
            })
46
            .collect::<Result<Vec<_>, ResponseParserError>>()?;
47

            
48
        result
49
            .into_iter()
50
            .map(|v| {
51
                // TODO: This assumes the first = is the only one.
52
                //       See: https://github.com/MusicPlayerDaemon/MPD/issues/2166
53
                let mut split = v.split('=');
54
                let key = split.next().ok_or(ResponseParserError::SyntaxError(0, v))?;
55
                let value = split.next().ok_or(ResponseParserError::SyntaxError(1, v))?;
56
                Ok((key.to_string(), value.to_string()))
57
            })
58
            .collect::<Result<HashMap<_, _>, ResponseParserError>>()
59
    }
60
}