nova-cord/cord/accounts.py

59 lines
1.6 KiB
Python
Raw Normal View History

2023-08-01 02:39:20 +02:00
"""Account system functionality."""
import os
import json
import requests
import embedder
from dotenv import load_dotenv
load_dotenv()
async def request_user_by_discord_id(discord_id):
return requests.get(
url=f'https://api.nova-oss.com/users?discord_id={discord_id}',
timeout=3,
headers={
'Content-Type': 'application/json',
'Authorization': os.getenv('CORE_API_KEY')
}
)
async def get_account(interaction):
try:
2023-08-02 17:00:18 +02:00
user_response = await request_user_by_discord_id(interaction.user.id)
2023-08-01 02:39:20 +02:00
except Exception as exc:
2023-08-02 17:00:18 +02:00
await embedder.error(interaction, """Sorry, there was an error while checking if you have an account.
2023-08-01 02:39:20 +02:00
Please report this issue to the staff!""", ephemeral=True)
raise exc
2023-08-02 17:00:18 +02:00
if user_response.status_code == 404:
await embedder.error(interaction, """You don't have an account yet!""", ephemeral=True)
raise ValueError('Account not found.')
2023-08-01 02:39:20 +02:00
2023-08-02 17:00:18 +02:00
return user_response.json()
async def get_info(interaction):
account = await get_account(interaction)
await embedder.info(interaction, f"""### Your account
2023-08-01 02:39:20 +02:00
This is all we have stored about your API account in our database.
Feel free to request a removal of your account by contacting the staff.
||```json
2023-08-02 17:00:18 +02:00
{json.dumps(account, indent=4)}
2023-08-01 02:39:20 +02:00
```||
(Click to reveal)
Learn more about how to use our API at **https://nova-oss.com**.
""", ephemeral=True)
2023-08-02 17:00:18 +02:00
async def get_credits(interaction):
account = await get_account(interaction)
await embedder.info(interaction, f"""### Your credits
**Amount:** `{account["credits"]}`
""", ephemeral=True)