shaker-bot/faucet.py

25 lines
849 B
Python
Raw Normal View History

2023-11-08 16:29:54 +11:00
import os
from dotenv import load_dotenv
import discord
from discord import app_commands
import json
from email_validator import validate_email, EmailNotValidError
import requests
async def send_domain(user, email):
try:
emailinfo = validate_email(email, check_deliverability=False)
email = emailinfo.normalized
except EmailNotValidError as e:
await user.send("Your email is invalid")
return
response = requests.post("https://faucet.woodburn.au/api?email=" + email+"&name="+user.name + "&key=" + os.getenv('FAUCET_KEY'))
response = response.json()
if response['success']:
await user.send("Congratulations! We've sent you a domain to your email")
else:
await user.send("Sorry, something went wrong. Please try again later")
await user.send(response['error'])