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
//! Types representing a forward.

use super::Id;
use crate::types::{Chat, User};

/// Represents a forward source.
#[derive(Debug, PartialEq, Clone)]
// todo: #[non_exhaustive]
pub enum From {
    /// The forward is from a user.
    User(User),
    /// The forward is from a user who decided to hide their profile.
    HiddenUser(String),
    /// The forward is from a channel.
    // todo: #[non_exhaustive]
    Channel {
        /// Information about the channel.
        chat: Box<Chat>,
        /// The ID of the original message.
        message_id: Id,
        /// The author's signature.
        signature: Option<String>,
    },
}

/// Represents forward information.
#[derive(Debug, PartialEq, Clone)]
// todo: #[non_exhaustive]
pub struct Forward {
    /// The author of the original message.
    pub from: From,
    /// The timestamp of the original message.
    pub date: i64,
}

impl From {
    /// Checks if `self` is `User`.
    pub fn is_user(&self) -> bool {
        match self {
            From::User(..) => true,
            _ => false,
        }
    }

    /// Checks if `self` is `Hidden`.
    pub fn is_hidden_user(&self) -> bool {
        match self {
            From::HiddenUser(..) => true,
            _ => false,
        }
    }

    /// Checks if `self` is `Channel`.
    pub fn is_channel(&self) -> bool {
        match self {
            From::Channel { .. } => true,
            _ => false,
        }
    }
}