Prevent users from registering with blocked emails

This commit is contained in:
Mouse Reeve 2021-09-08 15:49:18 -07:00
parent cc61d44cef
commit 5441b5b7f3

View file

@ -42,6 +42,12 @@ class Register(View):
email = form.data["email"] email = form.data["email"]
password = form.data["password"] password = form.data["password"]
# make sure the email isn't blocked as spam
email_domain = email.split("@")[-1]
if models.EmailBlocklist.objects.filter(domain=email_domain).exists():
# treat this like a successful registration, but don't do anything
return redirect("confirm-email")
# check localname and email uniqueness # check localname and email uniqueness
if models.User.objects.filter(localname=localname).first(): if models.User.objects.filter(localname=localname).first():
form.errors["localname"] = ["User with this username already exists"] form.errors["localname"] = ["User with this username already exists"]