From a2382b48e82659c3353770816899cc22cde877d0 Mon Sep 17 00:00:00 2001 From: Andrei Date: Wed, 26 Jul 2017 12:44:32 -0700 Subject: [PATCH] [channel] implement channel categories --- disco/api/client.py | 3 +++ disco/types/channel.py | 20 +++++++++++++++++++- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/disco/api/client.py b/disco/api/client.py index 37c7413..efeacb8 100644 --- a/disco/api/client.py +++ b/disco/api/client.py @@ -291,11 +291,14 @@ class APIClient(LoggingClass): bitrate=None, user_limit=None, permission_overwrites=[], + parent_id=None, reason=None): + payload = { 'name': name, 'channel_type': channel_type, 'permission_overwrites': [i.to_dict() for i in permission_overwrites], + 'parent_id': parent_id, } if channel_type == 'text': diff --git a/disco/types/channel.py b/disco/types/channel.py index 1a1dcb1..bd51c1a 100644 --- a/disco/types/channel.py +++ b/disco/types/channel.py @@ -19,6 +19,7 @@ ChannelType = Enum( DM=1, GUILD_VOICE=2, GROUP_DM=3, + GUILD_CATEGORY=4, ) PermissionOverwriteType = Enum( @@ -175,7 +176,7 @@ class Channel(SlottedModel, Permissible): """ Whether this channel belongs to a guild. """ - return self.type in (ChannelType.GUILD_TEXT, ChannelType.GUILD_VOICE) + return self.type in (ChannelType.GUILD_TEXT, ChannelType.GUILD_VOICE, ChannelType.GUILD_CATEGORY) @property def is_dm(self): @@ -214,6 +215,13 @@ class Channel(SlottedModel, Permissible): """ return self.client.state.guilds.get(self.guild_id) + @cached_property + def parent(self): + """ + Parent this channel belongs to (or None if not applicable). + """ + return self.guild.channels.get(self.parent_id) + def messages_iter(self, **kwargs): """ Creates a new `MessageIterator` for the channel with the given keyword @@ -422,6 +430,16 @@ class Channel(SlottedModel, Permissible): assert (self.is_voice) return self.client.api.channels_modify(self.id, user_limit=user_limit, reason=reason) + def set_parent(self, parent, reason=None): + """ + Sets the channels parent. + """ + assert (self.is_guild) + return self.client.api.channels_modify( + self.id, + parent_id=to_snowflake(parent) if parent else parent, + reason=reason) + class MessageIterator(object): """