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
54
55
56
57
58
59
60
//! Jingle thumbnails (XEP-0264)

// Copyright (c) 2023 XMPP-RS contributors.=
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, you can obtain one at http://mozilla.org/MPL/2.0/.

use xso::{AsXml, FromXml};

use crate::ns;

/// A Jingle thumbnail.
#[derive(FromXml, AsXml, PartialEq, Debug, Clone)]
#[xml(namespace = ns::JINGLE_THUMBNAILS, name = "thumbnail")]
pub struct Thumbnail {
    /// The URI of the thumbnail.
    #[xml(attribute)]
    pub uri: String,

    /// The media type of the thumbnail.
    #[xml(attribute = "media-type")]
    pub media_type: String,

    /// The width of the thumbnail.
    #[xml(attribute)]
    pub width: u32,

    /// The height of the thumbnail.
    #[xml(attribute)]
    pub height: u32,
}

#[cfg(test)]
mod tests {
    use crate::jingle_thumnails::Thumbnail;
    use minidom::Element;

    #[test]
    fn test_simple_parse() {
        // Extracted from https://xmpp.org/extensions/xep-0264.html#example-1
        let test_xml = "<thumbnail xmlns='urn:xmpp:thumbs:1'
        uri='cid:sha1+ffd7c8d28e9c5e82afea41f97108c6b4@bob.xmpp.org'
        media-type='image/png'
        width='128'
        height='96'/>";

        let elem: Element = test_xml.parse().unwrap();

        let thumbnail = Thumbnail::try_from(elem).unwrap();

        assert_eq!(
            thumbnail.uri,
            "cid:sha1+ffd7c8d28e9c5e82afea41f97108c6b4@bob.xmpp.org"
        );
        assert_eq!(thumbnail.media_type, "image/png");
        assert_eq!(thumbnail.width, 128);
        assert_eq!(thumbnail.height, 96);
    }
}