diff --git a/.gitignore b/.gitignore index b6d3025..23d634f 100644 --- a/.gitignore +++ b/.gitignore @@ -20,5 +20,8 @@ node_modules/ # JetBrains IDE .idea/ +# Visual Studio IDE +/.vs + # macOS .DS_Store diff --git a/disco/api/client.py b/disco/api/client.py index f87f82b..289583c 100644 --- a/disco/api/client.py +++ b/disco/api/client.py @@ -229,6 +229,9 @@ class APIClient(LoggingClass): self.http(route, obj) + def channels_messages_reactions_delete_all(self, channel, message): + self.http(Routes.CHANNEL_MESSAGES_REACTIONS_DELETE_ALL, dict(channel=channel, message=message)) + def channels_permissions_modify(self, channel, permission, allow, deny, typ, reason=None): self.http(Routes.CHANNELS_PERMISSIONS_MODIFY, dict(channel=channel, permission=permission), json={ 'allow': allow, diff --git a/disco/api/http.py b/disco/api/http.py index a7e8951..03d2aed 100644 --- a/disco/api/http.py +++ b/disco/api/http.py @@ -48,6 +48,7 @@ class Routes(object): CHANNELS_MESSAGES_DELETE_BULK = (HTTPMethod.POST, CHANNELS + '/messages/bulk_delete') CHANNELS_MESSAGES_REACTIONS_GET = (HTTPMethod.GET, CHANNELS + '/messages/{message}/reactions/{emoji}') CHANNELS_MESSAGES_REACTIONS_CREATE = (HTTPMethod.PUT, CHANNELS + '/messages/{message}/reactions/{emoji}/@me') + CHANNELS_MESSAGES_REACTIONS_DELETE_ALL = (HTTPMethod.DELETE, CHANNELS + '/messages/{message}/reactions') CHANNELS_MESSAGES_REACTIONS_DELETE_ME = (HTTPMethod.DELETE, CHANNELS + '/messages/{message}/reactions/{emoji}/@me') CHANNELS_MESSAGES_REACTIONS_DELETE_USER = (HTTPMethod.DELETE, CHANNELS + '/messages/{message}/reactions/{emoji}/{user}') diff --git a/disco/types/message.py b/disco/types/message.py index 69a960d..01b020c 100644 --- a/disco/types/message.py +++ b/disco/types/message.py @@ -509,6 +509,15 @@ class Message(SlottedModel): emoji, user) + def delete_all_reactions(self): + """ + Deletes all the reactions from a message. + """ + self.client.api.channels_messages_reactions_delete_all( + self.channel_id, + self.id, + ) + def is_mentioned(self, entity): """ Returns