diff --git a/disco/api/client.py b/disco/api/client.py index 68c551d..9f5b043 100644 --- a/disco/api/client.py +++ b/disco/api/client.py @@ -196,8 +196,27 @@ class APIClient(LoggingClass): r = self.http(Routes.GUILDS_CHANNELS_LIST, dict(guild=guild)) return Channel.create_hash(self.client, 'id', r.json(), guild_id=guild) - def guilds_channels_create(self, guild, **kwargs): - r = self.http(Routes.GUILDS_CHANNELS_CREATE, dict(guild=guild), json=kwargs) + def guilds_channels_create(self, guild, name, channel_type, bitrate=None, user_limit=None, permission_overwrites=[]): + payload = { + 'name': name, + 'channel_type': channel_type, + 'permission_overwrites': [i.to_dict() for i in permission_overwrites], + } + + if channel_type == 'text': + pass + elif channel_type == 'voice': + if bitrate is not None: + payload['bitrate'] = bitrate + + if user_limit is not None: + payload['user_limit'] = user_limit + else: + # TODO: better error here? + raise Exception('Invalid channel type: {}'.format(channel_type)) + + + r = self.http(Routes.GUILDS_CHANNELS_CREATE, dict(guild=guild), json=payload) return Channel.create(self.client, r.json(), guild_id=guild) def guilds_channels_modify(self, guild, channel, position): diff --git a/disco/types/guild.py b/disco/types/guild.py index a9075bb..95baa3f 100644 --- a/disco/types/guild.py +++ b/disco/types/guild.py @@ -405,3 +405,7 @@ class Guild(SlottedModel, Permissible): def create_ban(self, user, delete_message_days=0): self.client.api.guilds_bans_create(self.id, to_snowflake(user), delete_message_days) + + def create_channel(self, *args, **kwargs): + return self.client.api.guilds_channels_create(self.id, *args, **kwargs) +