blob: 5a4e0fbf9453858a34b98f8240e137aecc9a8a0f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
"""Various utilities for working with the Discord API."""
import logging
import httpx
from backend.constants import (
OAUTH2_CLIENT_ID, OAUTH2_CLIENT_SECRET
)
API_BASE_URL = "https://discord.com/api/v8"
logger = logging.getLogger(__name__)
async def fetch_bearer_token(code: str, redirect: str, *, refresh: bool) -> dict:
logger.debug(f"Fetching bearer token with code: {code}")
async with httpx.AsyncClient() as client:
data = {
"client_id": OAUTH2_CLIENT_ID,
"client_secret": OAUTH2_CLIENT_SECRET,
"redirect_uri": f"{redirect}/callback"
}
if refresh:
data["grant_type"] = "refresh_token"
data["refresh_token"] = code
else:
data["grant_type"] = "authorization_code"
data["code"] = code
r = await client.post(f"{API_BASE_URL}/oauth2/token", headers={
"Content-Type": "application/x-www-form-urlencoded"
}, data=data)
r.raise_for_status()
return r.json()
async def fetch_user_details(bearer_token: str) -> dict:
async with httpx.AsyncClient() as client:
r = await client.get(f"{API_BASE_URL}/users/@me", headers={
"Authorization": f"Bearer {bearer_token}"
})
r.raise_for_status()
return r.json()
|