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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
use rive_models::payload::RemoveReactionToMessagePayload;

use crate::prelude::*;

impl Client {
    /// React to a given message.
    pub async fn add_reaction_to_message(
        &self,
        channel_id: impl Into<String>,
        message_id: impl Into<String>,
        emoji: impl Into<String>,
    ) -> Result<()> {
        self.client
            .put(ep!(
                self,
                "/channels/{}/messages/{}/reactions/{}",
                channel_id.into(),
                message_id.into(),
                emoji.into()
            ))
            .auth(&self.authentication)
            .send()
            .await?
            .process_error()
            .await?;
        Ok(())
    }

    /// Remove your own, someone else's or all of a given reaction.
    ///
    /// Requires [Permission::ManageMessages] if changing others' reactions.
    pub async fn remove_reaction_to_message(
        &self,
        channel_id: impl Into<String>,
        message_id: impl Into<String>,
        emoji: impl Into<String>,
        payload: RemoveReactionToMessagePayload,
    ) -> Result<()> {
        self.client
            .delete(ep!(
                self,
                "/channels/{}/messages/{}/reactions/{}",
                channel_id.into(),
                message_id.into(),
                emoji.into()
            ))
            .query(&payload)
            .auth(&self.authentication)
            .send()
            .await?
            .process_error()
            .await?;
        Ok(())
    }

    /// Remove your own, someone else's or all of a given reaction.
    ///
    /// Requires [Permission::ManageMessages].
    pub async fn remove_all_reactions_from_message(
        &self,
        channel_id: impl Into<String>,
        message_id: impl Into<String>,
    ) -> Result<()> {
        self.client
            .delete(ep!(
                self,
                "/channels/{}/messages/{}/reactions",
                channel_id.into(),
                message_id.into(),
            ))
            .auth(&self.authentication)
            .send()
            .await?
            .process_error()
            .await?;
        Ok(())
    }
}