add email auth endpoint

This commit is contained in:
knst-kotov
2021-08-25 16:39:24 +03:00
parent 805db9814a
commit b36678a4ca
3 changed files with 23 additions and 7 deletions

View File

@@ -1,4 +1,6 @@
import requests
from starlette.responses import PlainTextResponse
from starlette.exceptions import HTTPException
from auth.authenticate import EmailAuthenticate
@@ -7,13 +9,13 @@ from settings import MAILGUN_API_KEY, MAILGUN_DOMAIN
MAILGUN_API_URL = "https://api.mailgun.net/v3/%s/messages" % (MAILGUN_DOMAIN)
MAILGUN_FROM = "postmaster <postmaster@%s>" % (MAILGUN_DOMAIN)
AUTH_URL = "https://localhost:8080/auth"
AUTH_URL = "https://localhost:8080/email_authorize"
async def send_auth_email(user):
token = await EmailAuthenticate.get_email_token(user)
to = "%s <%s>" % (user.username, user.email)
text = "%s&token=%s" % (AUTH_URL, token)
text = "%s?token=%s" % (AUTH_URL, token)
response = requests.post(
MAILGUN_API_URL,
auth = ("api", MAILGUN_API_KEY),
@@ -25,3 +27,10 @@ async def send_auth_email(user):
}
)
response.raise_for_status()
async def email_authorize(request):
token = request.query_params.get('token')
if not token:
raise HTTPException(500, "invalid url")
auth_token, user = await EmailAuthenticate.authenticate(token)
return PlainTextResponse(auth_token)