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
use crate::prelude::*;
use rive_models::{
    channel::Channel,
    payload::{SetDefaultPermissionPayload, SetRolePermissionPayload},
};

impl Client {
    /// Sets permissions for the specified role in this channel.
    ///
    /// Channel must be a [Channel::TextChannel] or [Channel::VoiceChannel].
    pub async fn set_role_channel_permissions(
        &self,
        channel_id: impl Into<String>,
        role_id: impl Into<String>,
        payload: SetRolePermissionPayload,
    ) -> Result<Channel> {
        Ok(self
            .client
            .put(ep!(
                self,
                "/channels/{}/permissions/{}",
                channel_id.into(),
                role_id.into()
            ))
            .auth(&self.authentication)
            .json(&payload)
            .send()
            .await?
            .process_error()
            .await?
            .json()
            .await?)
    }

    /// Sets permissions for the specified role in this channel.
    ///
    /// Channel must be a [Channel::Group], [Channel::TextChannel] or [Channel::VoiceChannel].
    pub async fn set_default_channel_permissions(
        &self,
        channel_id: impl Into<String>,
        payload: SetDefaultPermissionPayload,
    ) -> Result<Channel> {
        Ok(self
            .client
            .put(ep!(
                self,
                "/channels/{}/permissions/default",
                channel_id.into(),
            ))
            .auth(&self.authentication)
            .json(&payload)
            .send()
            .await?
            .process_error()
            .await?
            .json()
            .await?)
    }
}