From ba66e73a20536af1d2558966cd0e7ae661e191d6 Mon Sep 17 00:00:00 2001 From: Random Guy JCI <22722393+RandomGuyJCI@users.noreply.github.com> Date: Wed, 9 Oct 2024 16:25:31 +0800 Subject: [PATCH] attempt fix for ratelimiting error in reactx --- orchard/bot/lib/comm/interactor.py | 23 +++-------------------- 1 file changed, 3 insertions(+), 20 deletions(-) diff --git a/orchard/bot/lib/comm/interactor.py b/orchard/bot/lib/comm/interactor.py index 7e557e5..0cd5536 100644 --- a/orchard/bot/lib/comm/interactor.py +++ b/orchard/bot/lib/comm/interactor.py @@ -7,6 +7,8 @@ from orchard.bot.lib.constants import APPLICATION_ID, BOT_TOKEN from orchard.utils.constants import DISCORD_API_URL +from orchard.utils.client import Client + from orchard.bot.lib.comm import pager from typing import Callable, List, Awaitable @@ -17,19 +19,6 @@ logger = logging.getLogger(__name__) -def could_raise(func: Callable[[], Awaitable[httpx.Response]]): - """ - Decorator. Apply to an async function that returns a Response, and it will call raise_for_status first. - """ - - async def inner(*args, **kwargs): - resp = await func(*args, **kwargs) - resp.raise_for_status() - return resp - - return inner - - class Interactor: """ A class that contains methods for handling a slash command interaction. @@ -41,7 +30,7 @@ class Interactor: def __init__(self, token): self._token = token - self.client = httpx.AsyncClient() + self.client = Client() # list of crosscode uuids which this interactor owns self.crosscode_uuids = [] @@ -67,14 +56,12 @@ async def __aexit__(self, exc_type, exc_value, traceback): await self.client.aclose() return True # don't propogate any error - @could_raise async def get(self, id): """ Wrapper around discord API get message (from this webhook) """ return await self.client.get(f"{base_url}/{self._token}/messages/{id}") - @could_raise async def edit(self, mb: MessageBuilder, id): """ Wrapper around discord API edit message. @@ -85,7 +72,6 @@ async def edit(self, mb: MessageBuilder, id): f"{base_url}/{self._token}/messages/{id}", json=mb.payload() ) - @could_raise async def post(self, mb: MessageBuilder): """ Wrapper around discord API post message. @@ -94,21 +80,18 @@ async def post(self, mb: MessageBuilder): """ return await self.client.post(f"{base_url}/{self._token}", json=mb.payload()) - @could_raise async def delete(self, id): """ Wrapper around discord API delete message. """ return await self.client.delete(f"{base_url}/{self._token}/messages/{id}") - @could_raise async def react(self, channel_id, message_id, emoji): return await self.client.put( f"{DISCORD_API_URL}/channels/{channel_id}/messages/{message_id}/reactions/{emoji}/@me", headers={"Authorization": f"Bot {BOT_TOKEN}"}, ) - @could_raise async def get_reactions(self, channel_id, message_id, emoji): return await self.client.get( f"{DISCORD_API_URL}/channels/{channel_id}/messages/{message_id}/reactions/{urllib.parse.quote(emoji)}",