diff options
author | mjk134 <57556877+mjk134@users.noreply.github.com> | 2022-07-11 20:03:24 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-11 20:03:24 +0000 |
commit | de4b806a7e5b823680acae4627607198cf1f59a6 (patch) | |
tree | e1db0047b5db098eafd930a39091645232edce8a /discord/utils/rest.py | |
parent | b271f3b37c9a28ba9254f2a24c98cfcd65cb3c24 (diff) | |
parent | 6576d95f3601613fc03232b106f1cdeda1d99e06 (diff) | |
download | discobra-de4b806a7e5b823680acae4627607198cf1f59a6.tar.gz |
Merge branch 'master' of https://github.com/mounderfod/discobra
Diffstat (limited to 'discord/utils/rest.py')
-rw-r--r-- | discord/utils/rest.py | 37 |
1 files changed, 33 insertions, 4 deletions
diff --git a/discord/utils/rest.py b/discord/utils/rest.py index 919d54d..652de5d 100644 --- a/discord/utils/rest.py +++ b/discord/utils/rest.py @@ -2,12 +2,24 @@ import aiohttp from discord.utils.exceptions import APIException + class RESTClient: + """ + Utility class to make it easier to make HTTP requests to Discord's API. This should not be used manually, + as it only works with Discord's API and the library should cover anything that can be requested from it. Any + requests to other APIs should use `aiohttp`. + """ def __init__(self, token: str, session: aiohttp.ClientSession): self.token = token self.session = session async def get(self, url: str): + """ + Makes a GET request to Discord's API. + + **Parameters:** + - url: The part of the request URL that goes after `https://discord.com/api/v10` + """ async with self.session.get(url='https://discord.com/api/v10' + url) as r: data = await r.json() match r.status: @@ -16,18 +28,30 @@ class RESTClient: case other: raise APIException(data['message']) - async def post(self, url: str, data): + """ + Makes a POST request to Discord's API. + + **Parameters:** + - url: The part of the request URL that goes after `https://discord.com/api/v10` + - data: The data to post. + """ async with self.session.post(url='https://discord.com/api/v10' + url, data=data) as r: data = await r.json() match r.status: - case 200 | 204: + case 200 | 204 | 201: return data case other: raise APIException(data['message']) - async def patch(self, url, data): + """ + Makes a PATCH request to Discord's API. + + **Parameters:** + - url: The part of the request URL that goes after `https://discord.com/api/v10` + - data: The data to patch. + """ async with self.session.patch(url='https://discord.com/api/v10' + url, data=data) as res: data = await res.json() match res.status: @@ -36,8 +60,13 @@ class RESTClient: case other: raise APIException(data['message']) - async def delete(self, url): + """ + Makes a POST request to Discord's API. + + **Parameters:** + - url: The part of the request URL that goes after `https://discord.com/api/v10` + """ async with self.session.delete(url='https://discord.com/api/v10' + url) as r: data = await r.json() match r.status: |