2020-06-11 00:54:34 +02:00
|
|
|
import logging
|
|
|
|
import re
|
2022-07-27 23:33:49 +02:00
|
|
|
from email.headerregistry import Address
|
2024-07-12 02:30:23 +02:00
|
|
|
from typing import Any
|
2020-06-11 00:54:34 +02:00
|
|
|
|
|
|
|
import DNS
|
2012-08-28 18:44:51 +02:00
|
|
|
from django import forms
|
2016-11-05 04:13:40 +01:00
|
|
|
from django.conf import settings
|
2020-05-28 11:22:45 +02:00
|
|
|
from django.contrib.auth import authenticate, password_validation
|
2020-06-11 00:54:34 +02:00
|
|
|
from django.contrib.auth.forms import AuthenticationForm, PasswordResetForm, SetPasswordForm
|
|
|
|
from django.contrib.auth.tokens import PasswordResetTokenGenerator, default_token_generator
|
2016-11-05 04:13:40 +01:00
|
|
|
from django.core.exceptions import ValidationError
|
2016-12-20 10:41:46 +01:00
|
|
|
from django.core.validators import validate_email
|
2017-10-04 07:30:17 +02:00
|
|
|
from django.http import HttpRequest
|
2021-04-16 00:57:30 +02:00
|
|
|
from django.utils.translation import gettext as _
|
2024-09-23 20:24:45 +02:00
|
|
|
from django.utils.translation import gettext_lazy
|
2022-11-16 06:28:44 +01:00
|
|
|
from markupsafe import Markup
|
2020-06-11 00:54:34 +02:00
|
|
|
from two_factor.forms import AuthenticationTokenForm as TwoFactorAuthenticationTokenForm
|
|
|
|
from two_factor.utils import totp_digits
|
2023-10-12 19:43:45 +02:00
|
|
|
from typing_extensions import override
|
2016-11-05 04:13:40 +01:00
|
|
|
|
2022-04-14 23:49:26 +02:00
|
|
|
from zerver.actions.user_settings import do_change_password
|
2024-09-23 20:24:45 +02:00
|
|
|
from zerver.actions.users import do_send_password_reset_email
|
2022-04-14 23:56:00 +02:00
|
|
|
from zerver.lib.email_validation import (
|
|
|
|
email_allowed_for_realm,
|
|
|
|
email_reserved_for_system_bots_error,
|
2024-02-27 16:16:50 +01:00
|
|
|
validate_is_not_disposable,
|
2022-04-14 23:56:00 +02:00
|
|
|
)
|
2022-11-17 09:30:48 +01:00
|
|
|
from zerver.lib.exceptions import JsonableError, RateLimitedError
|
2023-09-12 21:58:58 +02:00
|
|
|
from zerver.lib.i18n import get_language_list
|
2024-02-27 16:16:50 +01:00
|
|
|
from zerver.lib.name_restrictions import is_reserved_subdomain
|
2022-08-05 17:40:03 +02:00
|
|
|
from zerver.lib.rate_limiter import RateLimitedObject, rate_limit_request_by_ip
|
2019-02-02 23:53:55 +01:00
|
|
|
from zerver.lib.subdomains import get_subdomain, is_root_domain_available
|
2017-02-08 05:04:14 +01:00
|
|
|
from zerver.lib.users import check_full_name
|
2023-12-15 02:14:24 +01:00
|
|
|
from zerver.models import Realm, UserProfile
|
2024-03-26 06:14:16 +01:00
|
|
|
from zerver.models.realm_audit_logs import RealmAuditLog
|
2023-12-15 02:14:24 +01:00
|
|
|
from zerver.models.realms import (
|
2020-06-11 00:54:34 +02:00
|
|
|
DisposableEmailError,
|
|
|
|
DomainNotAllowedForRealmError,
|
|
|
|
EmailContainsPlusError,
|
|
|
|
get_realm,
|
|
|
|
)
|
2023-12-15 01:16:00 +01:00
|
|
|
from zerver.models.users import get_user_by_delivery_email, is_cross_realm_bot_email
|
2020-06-11 00:54:34 +02:00
|
|
|
from zproject.backends import check_password_strength, email_auth_enabled, email_belongs_to_ldap
|
2012-09-26 20:08:39 +02:00
|
|
|
|
2022-03-11 21:11:56 +01:00
|
|
|
# We don't mark this error for translation, because it's displayed
|
|
|
|
# only to MIT users.
|
2023-03-21 07:10:20 +01:00
|
|
|
MIT_VALIDATION_ERROR = Markup(
|
2023-01-03 02:16:53 +01:00
|
|
|
"That user does not exist at MIT or is a"
|
|
|
|
' <a href="https://ist.mit.edu/email-lists">mailing list</a>.'
|
|
|
|
" If you want to sign up an alias for Zulip,"
|
|
|
|
' <a href="mailto:support@zulip.com">contact us</a>.'
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2022-03-11 21:11:56 +01:00
|
|
|
|
2024-10-24 21:47:47 +02:00
|
|
|
INVALID_ACCOUNT_CREDENTIALS_ERROR = gettext_lazy("Incorrect email or password.")
|
2022-03-11 21:11:56 +01:00
|
|
|
DEACTIVATED_ACCOUNT_ERROR = gettext_lazy(
|
2023-01-03 02:16:53 +01:00
|
|
|
"Your account {username} has been deactivated."
|
|
|
|
" Please contact your organization administrator to reactivate it."
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2022-03-11 21:11:56 +01:00
|
|
|
PASSWORD_TOO_WEAK_ERROR = gettext_lazy("The password is too weak.")
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2016-06-03 01:02:58 +02:00
|
|
|
|
2018-05-11 01:39:17 +02:00
|
|
|
def email_is_not_mit_mailing_list(email: str) -> None:
|
2016-07-27 02:39:14 +02:00
|
|
|
"""Prevent MIT mailing lists from signing up for Zulip"""
|
2022-07-27 23:33:49 +02:00
|
|
|
address = Address(addr_spec=email)
|
|
|
|
if address.domain == "mit.edu":
|
2013-08-12 00:47:28 +02:00
|
|
|
# Check whether the user exists and can get mail.
|
|
|
|
try:
|
2022-07-27 23:33:49 +02:00
|
|
|
DNS.dnslookup(f"{address.username}.pobox.ns.athena.mit.edu", DNS.Type.TXT)
|
2015-11-01 17:08:33 +01:00
|
|
|
except DNS.Base.ServerError as e:
|
2013-08-12 00:47:28 +02:00
|
|
|
if e.rcode == DNS.Status.NXDOMAIN:
|
2022-11-16 06:28:44 +01:00
|
|
|
# This error is Markup only because 1. it needs to render HTML
|
2022-03-07 20:45:45 +01:00
|
|
|
# 2. It's not formatted with any user input.
|
2023-03-21 07:10:20 +01:00
|
|
|
raise ValidationError(MIT_VALIDATION_ERROR)
|
2013-08-12 00:47:28 +02:00
|
|
|
else:
|
2017-11-18 02:25:44 +01:00
|
|
|
raise AssertionError("Unexpected DNS error")
|
2013-08-12 00:47:28 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2023-09-25 20:39:58 +02:00
|
|
|
class OverridableValidationError(ValidationError):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
def check_subdomain_available(subdomain: str, allow_reserved_subdomain: bool = False) -> None:
|
2017-10-04 02:43:55 +02:00
|
|
|
error_strings = {
|
2021-02-12 08:20:45 +01:00
|
|
|
"too short": _("Subdomain needs to have length 3 or greater."),
|
|
|
|
"extremal dash": _("Subdomain cannot start or end with a '-'."),
|
|
|
|
"bad character": _("Subdomain can only have lowercase letters, numbers, and '-'s."),
|
2023-09-25 20:39:58 +02:00
|
|
|
"unavailable": _("Subdomain already in use. Please choose a different one."),
|
|
|
|
"reserved": _("Subdomain reserved. Please choose a different one."),
|
2021-02-12 08:19:30 +01:00
|
|
|
}
|
2017-10-04 02:43:55 +02:00
|
|
|
|
2017-10-19 08:30:40 +02:00
|
|
|
if subdomain == Realm.SUBDOMAIN_FOR_ROOT_DOMAIN:
|
|
|
|
if is_root_domain_available():
|
|
|
|
return
|
2021-02-12 08:20:45 +01:00
|
|
|
raise ValidationError(error_strings["unavailable"])
|
|
|
|
if subdomain[0] == "-" or subdomain[-1] == "-":
|
|
|
|
raise ValidationError(error_strings["extremal dash"])
|
2024-04-26 20:30:22 +02:00
|
|
|
if not re.match(r"^[a-z0-9-]*$", subdomain):
|
2021-02-12 08:20:45 +01:00
|
|
|
raise ValidationError(error_strings["bad character"])
|
2018-01-25 19:30:40 +01:00
|
|
|
if len(subdomain) < 3:
|
2021-02-12 08:20:45 +01:00
|
|
|
raise ValidationError(error_strings["too short"])
|
2020-12-19 18:44:53 +01:00
|
|
|
if Realm.objects.filter(string_id=subdomain).exists():
|
2021-02-12 08:20:45 +01:00
|
|
|
raise ValidationError(error_strings["unavailable"])
|
2020-12-19 18:44:53 +01:00
|
|
|
if is_reserved_subdomain(subdomain) and not allow_reserved_subdomain:
|
2023-09-25 20:39:58 +02:00
|
|
|
raise OverridableValidationError(
|
|
|
|
error_strings["reserved"],
|
|
|
|
"Pass --allow-reserved-subdomain to override",
|
|
|
|
)
|
2017-10-04 02:43:55 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2023-03-20 09:03:27 +01:00
|
|
|
def email_not_system_bot(email: str) -> None:
|
|
|
|
if is_cross_realm_bot_email(email):
|
|
|
|
msg = email_reserved_for_system_bots_error(email)
|
|
|
|
code = msg
|
|
|
|
raise ValidationError(
|
|
|
|
msg,
|
|
|
|
code=code,
|
|
|
|
params=dict(deactivated=False),
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def email_is_not_disposable(email: str) -> None:
|
|
|
|
try:
|
2024-02-27 16:16:50 +01:00
|
|
|
validate_is_not_disposable(email)
|
|
|
|
except DisposableEmailError:
|
2023-03-20 09:03:27 +01:00
|
|
|
raise ValidationError(_("Please use your real email address."))
|
|
|
|
|
|
|
|
|
|
|
|
class RealmDetailsForm(forms.Form):
|
|
|
|
realm_subdomain = forms.CharField(max_length=Realm.MAX_REALM_SUBDOMAIN_LENGTH, required=False)
|
|
|
|
realm_type = forms.TypedChoiceField(
|
|
|
|
coerce=int, choices=[(t["id"], t["name"]) for t in Realm.ORG_TYPES.values()]
|
|
|
|
)
|
2023-09-12 21:58:58 +02:00
|
|
|
realm_default_language = forms.ChoiceField(choices=[])
|
2023-03-20 09:03:27 +01:00
|
|
|
realm_name = forms.CharField(max_length=Realm.MAX_REALM_NAME_LENGTH)
|
|
|
|
|
|
|
|
def __init__(self, *args: Any, **kwargs: Any) -> None:
|
2024-03-26 06:14:16 +01:00
|
|
|
# Since the superclass doesn't accept random extra kwargs, we
|
|
|
|
# remove it from the kwargs dict before initializing.
|
2023-03-20 09:03:27 +01:00
|
|
|
self.realm_creation = kwargs["realm_creation"]
|
|
|
|
del kwargs["realm_creation"]
|
|
|
|
|
|
|
|
super().__init__(*args, **kwargs)
|
2023-09-12 21:58:58 +02:00
|
|
|
self.fields["realm_default_language"] = forms.ChoiceField(
|
|
|
|
choices=[(lang["code"], lang["name"]) for lang in get_language_list()],
|
|
|
|
)
|
2023-03-20 09:03:27 +01:00
|
|
|
|
|
|
|
def clean_realm_subdomain(self) -> str:
|
|
|
|
if not self.realm_creation:
|
|
|
|
# This field is only used if realm_creation
|
|
|
|
return ""
|
|
|
|
|
|
|
|
subdomain = self.cleaned_data["realm_subdomain"]
|
|
|
|
if "realm_in_root_domain" in self.data:
|
|
|
|
subdomain = Realm.SUBDOMAIN_FOR_ROOT_DOMAIN
|
|
|
|
|
|
|
|
check_subdomain_available(subdomain)
|
|
|
|
return subdomain
|
|
|
|
|
|
|
|
|
|
|
|
class RegistrationForm(RealmDetailsForm):
|
2017-03-23 00:15:06 +01:00
|
|
|
MAX_PASSWORD_LENGTH = 100
|
2017-06-16 14:40:41 +02:00
|
|
|
full_name = forms.CharField(max_length=UserProfile.MAX_NAME_LENGTH)
|
2014-03-28 00:45:03 +01:00
|
|
|
# The required-ness of the password field gets overridden if it isn't
|
|
|
|
# actually required for a realm
|
2017-08-07 10:12:37 +02:00
|
|
|
password = forms.CharField(widget=forms.PasswordInput, max_length=MAX_PASSWORD_LENGTH)
|
2021-08-13 20:37:15 +02:00
|
|
|
is_demo_organization = forms.BooleanField(required=False)
|
2021-08-16 21:03:33 +02:00
|
|
|
enable_marketing_emails = forms.BooleanField(required=False)
|
2023-02-13 17:40:16 +01:00
|
|
|
email_address_visibility = forms.TypedChoiceField(
|
|
|
|
required=False,
|
|
|
|
coerce=int,
|
|
|
|
empty_value=None,
|
2023-09-25 07:54:17 +02:00
|
|
|
choices=list(UserProfile.EMAIL_ADDRESS_VISIBILITY_ID_TO_NAME_MAP.items()),
|
2023-02-13 17:40:16 +01:00
|
|
|
)
|
2016-09-16 19:05:14 +02:00
|
|
|
|
2017-11-27 07:33:05 +01:00
|
|
|
def __init__(self, *args: Any, **kwargs: Any) -> None:
|
2024-03-11 20:02:05 +01:00
|
|
|
# Since the superclass doesn't except random extra kwargs, we
|
|
|
|
# remove it from the kwargs dict before initializing.
|
|
|
|
self.realm_creation = kwargs["realm_creation"]
|
|
|
|
self.realm = kwargs.pop("realm", None)
|
|
|
|
|
2017-10-27 08:28:23 +02:00
|
|
|
super().__init__(*args, **kwargs)
|
2021-11-03 21:36:54 +01:00
|
|
|
if settings.TERMS_OF_SERVICE_VERSION is not None:
|
2021-02-12 08:20:45 +01:00
|
|
|
self.fields["terms"] = forms.BooleanField(required=True)
|
|
|
|
self.fields["realm_name"] = forms.CharField(
|
2021-02-12 08:19:30 +01:00
|
|
|
max_length=Realm.MAX_REALM_NAME_LENGTH, required=self.realm_creation
|
|
|
|
)
|
2023-03-20 09:03:27 +01:00
|
|
|
self.fields["realm_type"] = forms.TypedChoiceField(
|
|
|
|
coerce=int,
|
|
|
|
choices=[(t["id"], t["name"]) for t in Realm.ORG_TYPES.values()],
|
|
|
|
required=self.realm_creation,
|
|
|
|
)
|
2023-09-12 21:58:58 +02:00
|
|
|
self.fields["realm_default_language"] = forms.ChoiceField(
|
|
|
|
choices=[(lang["code"], lang["name"]) for lang in get_language_list()],
|
|
|
|
required=self.realm_creation,
|
|
|
|
)
|
2024-03-26 06:14:16 +01:00
|
|
|
self.fields["how_realm_creator_found_zulip"] = forms.ChoiceField(
|
|
|
|
choices=RealmAuditLog.HOW_REALM_CREATOR_FOUND_ZULIP_OPTIONS.items(),
|
|
|
|
required=self.realm_creation,
|
|
|
|
)
|
|
|
|
self.fields["how_realm_creator_found_zulip_other_text"] = forms.CharField(
|
|
|
|
max_length=100, required=False
|
|
|
|
)
|
|
|
|
self.fields["how_realm_creator_found_zulip_where_ad"] = forms.CharField(
|
|
|
|
max_length=100, required=False
|
|
|
|
)
|
|
|
|
self.fields["how_realm_creator_found_zulip_which_organization"] = forms.CharField(
|
|
|
|
max_length=100, required=False
|
|
|
|
)
|
2024-09-27 07:47:59 +02:00
|
|
|
self.fields["how_realm_creator_found_zulip_review_site"] = forms.CharField(
|
|
|
|
max_length=100, required=False
|
|
|
|
)
|
2012-09-28 22:47:05 +02:00
|
|
|
|
2018-05-11 01:39:17 +02:00
|
|
|
def clean_full_name(self) -> str:
|
2017-02-08 05:04:14 +01:00
|
|
|
try:
|
2024-03-11 20:02:05 +01:00
|
|
|
return check_full_name(
|
|
|
|
full_name_raw=self.cleaned_data["full_name"], user_profile=None, realm=self.realm
|
|
|
|
)
|
2017-02-08 05:04:14 +01:00
|
|
|
except JsonableError as e:
|
2017-07-20 00:22:36 +02:00
|
|
|
raise ValidationError(e.msg)
|
2017-02-08 05:04:14 +01:00
|
|
|
|
auth: Use zxcvbn to ensure password strength on server side.
For a long time, we've been only doing the zxcvbn password strength
checks on the browser, which is helpful, but means users could through
hackery (or a bug in the frontend validation code) manage to set a
too-weak password. We fix this by running our password strength
validation on the backend as well, using python-zxcvbn.
In theory, a bug in python-zxcvbn could result in it producing a
different opinion than the frontend version; if so, it'd be a pretty
bad bug in the library, and hopefully we'd hear about it from users,
report upstream, and get it fixed that way. Alternatively, we can
switch to shelling out to node like we do for KaTeX.
Fixes #6880.
2019-11-18 08:11:03 +01:00
|
|
|
def clean_password(self) -> str:
|
2021-02-12 08:20:45 +01:00
|
|
|
password = self.cleaned_data["password"]
|
|
|
|
if self.fields["password"].required and not check_password_strength(password):
|
auth: Use zxcvbn to ensure password strength on server side.
For a long time, we've been only doing the zxcvbn password strength
checks on the browser, which is helpful, but means users could through
hackery (or a bug in the frontend validation code) manage to set a
too-weak password. We fix this by running our password strength
validation on the backend as well, using python-zxcvbn.
In theory, a bug in python-zxcvbn could result in it producing a
different opinion than the frontend version; if so, it'd be a pretty
bad bug in the library, and hopefully we'd hear about it from users,
report upstream, and get it fixed that way. Alternatively, we can
switch to shelling out to node like we do for KaTeX.
Fixes #6880.
2019-11-18 08:11:03 +01:00
|
|
|
# The frontend code tries to stop the user from submitting the form with a weak password,
|
|
|
|
# but if the user bypasses that protection, this error code path will run.
|
2022-08-08 19:53:11 +02:00
|
|
|
raise ValidationError(str(PASSWORD_TOO_WEAK_ERROR))
|
auth: Use zxcvbn to ensure password strength on server side.
For a long time, we've been only doing the zxcvbn password strength
checks on the browser, which is helpful, but means users could through
hackery (or a bug in the frontend validation code) manage to set a
too-weak password. We fix this by running our password strength
validation on the backend as well, using python-zxcvbn.
In theory, a bug in python-zxcvbn could result in it producing a
different opinion than the frontend version; if so, it'd be a pretty
bad bug in the library, and hopefully we'd hear about it from users,
report upstream, and get it fixed that way. Alternatively, we can
switch to shelling out to node like we do for KaTeX.
Fixes #6880.
2019-11-18 08:11:03 +01:00
|
|
|
|
|
|
|
return password
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2013-01-08 23:26:40 +01:00
|
|
|
class ToSForm(forms.Form):
|
2023-04-24 16:51:02 +02:00
|
|
|
terms = forms.BooleanField(required=False)
|
2024-09-11 11:00:22 +02:00
|
|
|
enable_marketing_emails = forms.BooleanField(required=False)
|
2023-04-24 16:51:02 +02:00
|
|
|
email_address_visibility = forms.TypedChoiceField(
|
|
|
|
required=False,
|
|
|
|
coerce=int,
|
|
|
|
empty_value=None,
|
2023-09-25 07:54:17 +02:00
|
|
|
choices=list(UserProfile.EMAIL_ADDRESS_VISIBILITY_ID_TO_NAME_MAP.items()),
|
2023-04-24 16:51:02 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
def __init__(self, *args: Any, **kwargs: Any) -> None:
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
if settings.TERMS_OF_SERVICE_VERSION is not None:
|
|
|
|
self.fields["terms"] = forms.BooleanField(required=True)
|
2013-01-08 23:26:40 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2012-09-28 22:47:05 +02:00
|
|
|
class HomepageForm(forms.Form):
|
2017-08-25 07:12:26 +02:00
|
|
|
email = forms.EmailField()
|
2012-12-13 21:08:07 +01:00
|
|
|
|
2017-11-27 07:33:05 +01:00
|
|
|
def __init__(self, *args: Any, **kwargs: Any) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
self.realm = kwargs.pop("realm", None)
|
|
|
|
self.from_multiuse_invite = kwargs.pop("from_multiuse_invite", False)
|
2022-08-14 19:42:55 +02:00
|
|
|
self.invited_as = kwargs.pop("invited_as", None)
|
2017-10-27 08:28:23 +02:00
|
|
|
super().__init__(*args, **kwargs)
|
2013-08-07 17:59:45 +02:00
|
|
|
|
2017-11-27 07:33:05 +01:00
|
|
|
def clean_email(self) -> str:
|
2016-07-27 02:39:14 +02:00
|
|
|
"""Returns the email if and only if the user's email address is
|
|
|
|
allowed to join the realm they are trying to join."""
|
2021-02-12 08:20:45 +01:00
|
|
|
email = self.cleaned_data["email"]
|
2016-11-06 00:49:35 +01:00
|
|
|
|
|
|
|
# Otherwise, the user is trying to join a specific realm.
|
2016-12-24 02:34:36 +01:00
|
|
|
realm = self.realm
|
2017-08-10 22:34:17 +02:00
|
|
|
from_multiuse_invite = self.from_multiuse_invite
|
2016-11-06 00:55:39 +01:00
|
|
|
|
2016-11-06 01:44:52 +01:00
|
|
|
if realm is None:
|
2021-02-12 08:19:30 +01:00
|
|
|
raise ValidationError(
|
|
|
|
_("The organization you are trying to join using {email} does not exist.").format(
|
|
|
|
email=email
|
|
|
|
)
|
|
|
|
)
|
2016-11-06 01:44:52 +01:00
|
|
|
|
2017-08-10 22:34:17 +02:00
|
|
|
if not from_multiuse_invite and realm.invite_required:
|
2021-02-12 08:19:30 +01:00
|
|
|
raise ValidationError(
|
|
|
|
_(
|
|
|
|
"Please request an invite for {email} "
|
|
|
|
"from the organization "
|
|
|
|
"administrator."
|
|
|
|
).format(email=email)
|
|
|
|
)
|
2016-11-06 00:49:35 +01:00
|
|
|
|
2018-03-14 12:54:05 +01:00
|
|
|
try:
|
|
|
|
email_allowed_for_realm(email, realm)
|
|
|
|
except DomainNotAllowedForRealmError:
|
2016-11-06 01:41:38 +01:00
|
|
|
raise ValidationError(
|
2021-02-12 08:19:30 +01:00
|
|
|
_(
|
|
|
|
"Your email address, {email}, is not in one of the domains "
|
|
|
|
"that are allowed to register for accounts in this organization."
|
2023-07-18 00:51:14 +02:00
|
|
|
).format(email=email)
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2018-03-14 13:25:26 +01:00
|
|
|
except DisposableEmailError:
|
2018-03-15 22:43:40 +01:00
|
|
|
raise ValidationError(_("Please use your real email address."))
|
2018-06-20 13:08:07 +02:00
|
|
|
except EmailContainsPlusError:
|
2021-02-12 08:19:30 +01:00
|
|
|
raise ValidationError(
|
|
|
|
_("Email addresses containing + are not allowed in this organization.")
|
|
|
|
)
|
2016-11-06 01:41:38 +01:00
|
|
|
|
2016-11-06 00:29:55 +01:00
|
|
|
if realm.is_zephyr_mirror_realm:
|
|
|
|
email_is_not_mit_mailing_list(email)
|
2016-07-27 02:39:14 +02:00
|
|
|
|
2021-05-28 15:57:08 +02:00
|
|
|
if settings.BILLING_ENABLED:
|
2024-09-24 23:27:28 +02:00
|
|
|
from corporate.lib.registration import (
|
|
|
|
check_spare_licenses_available_for_registering_new_user,
|
|
|
|
)
|
|
|
|
from corporate.lib.stripe import LicenseLimitError
|
|
|
|
|
2022-08-14 19:42:55 +02:00
|
|
|
role = self.invited_as if self.invited_as is not None else UserProfile.ROLE_MEMBER
|
2021-05-28 15:57:08 +02:00
|
|
|
try:
|
2022-08-14 19:42:55 +02:00
|
|
|
check_spare_licenses_available_for_registering_new_user(realm, email, role=role)
|
2021-05-28 15:57:08 +02:00
|
|
|
except LicenseLimitError:
|
|
|
|
raise ValidationError(
|
|
|
|
_(
|
|
|
|
"New members cannot join this organization because all Zulip licenses are in use. Please contact the person who "
|
|
|
|
"invited you and ask them to increase the number of licenses, then try again."
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2016-11-06 00:29:55 +01:00
|
|
|
return email
|
2013-08-07 17:59:45 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2023-03-01 10:47:38 +01:00
|
|
|
class RealmCreationForm(RealmDetailsForm):
|
2016-12-24 03:24:15 +01:00
|
|
|
# This form determines whether users can create a new realm.
|
2021-02-12 08:19:30 +01:00
|
|
|
email = forms.EmailField(validators=[email_not_system_bot, email_is_not_disposable])
|
|
|
|
|
2023-03-01 10:47:38 +01:00
|
|
|
def __init__(self, *args: Any, **kwargs: Any) -> None:
|
|
|
|
kwargs["realm_creation"] = True
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
|
2016-06-03 01:02:58 +02:00
|
|
|
|
2012-12-13 21:08:07 +01:00
|
|
|
class LoggingSetPasswordForm(SetPasswordForm):
|
2020-05-28 11:22:45 +02:00
|
|
|
new_password1 = forms.CharField(
|
|
|
|
label=_("New password"),
|
2021-02-12 08:20:45 +01:00
|
|
|
widget=forms.PasswordInput(attrs={"autocomplete": "new-password"}),
|
2020-05-28 11:22:45 +02:00
|
|
|
strip=False,
|
|
|
|
help_text=password_validation.password_validators_help_text_html(),
|
|
|
|
max_length=RegistrationForm.MAX_PASSWORD_LENGTH,
|
|
|
|
)
|
|
|
|
new_password2 = forms.CharField(
|
|
|
|
label=_("New password confirmation"),
|
|
|
|
strip=False,
|
2021-02-12 08:20:45 +01:00
|
|
|
widget=forms.PasswordInput(attrs={"autocomplete": "new-password"}),
|
2020-05-28 11:22:45 +02:00
|
|
|
max_length=RegistrationForm.MAX_PASSWORD_LENGTH,
|
|
|
|
)
|
|
|
|
|
auth: Use zxcvbn to ensure password strength on server side.
For a long time, we've been only doing the zxcvbn password strength
checks on the browser, which is helpful, but means users could through
hackery (or a bug in the frontend validation code) manage to set a
too-weak password. We fix this by running our password strength
validation on the backend as well, using python-zxcvbn.
In theory, a bug in python-zxcvbn could result in it producing a
different opinion than the frontend version; if so, it'd be a pretty
bad bug in the library, and hopefully we'd hear about it from users,
report upstream, and get it fixed that way. Alternatively, we can
switch to shelling out to node like we do for KaTeX.
Fixes #6880.
2019-11-18 08:11:03 +01:00
|
|
|
def clean_new_password1(self) -> str:
|
2021-02-12 08:20:45 +01:00
|
|
|
new_password = self.cleaned_data["new_password1"]
|
auth: Use zxcvbn to ensure password strength on server side.
For a long time, we've been only doing the zxcvbn password strength
checks on the browser, which is helpful, but means users could through
hackery (or a bug in the frontend validation code) manage to set a
too-weak password. We fix this by running our password strength
validation on the backend as well, using python-zxcvbn.
In theory, a bug in python-zxcvbn could result in it producing a
different opinion than the frontend version; if so, it'd be a pretty
bad bug in the library, and hopefully we'd hear about it from users,
report upstream, and get it fixed that way. Alternatively, we can
switch to shelling out to node like we do for KaTeX.
Fixes #6880.
2019-11-18 08:11:03 +01:00
|
|
|
if not check_password_strength(new_password):
|
|
|
|
# The frontend code tries to stop the user from submitting the form with a weak password,
|
|
|
|
# but if the user bypasses that protection, this error code path will run.
|
2022-08-08 19:53:11 +02:00
|
|
|
raise ValidationError(str(PASSWORD_TOO_WEAK_ERROR))
|
auth: Use zxcvbn to ensure password strength on server side.
For a long time, we've been only doing the zxcvbn password strength
checks on the browser, which is helpful, but means users could through
hackery (or a bug in the frontend validation code) manage to set a
too-weak password. We fix this by running our password strength
validation on the backend as well, using python-zxcvbn.
In theory, a bug in python-zxcvbn could result in it producing a
different opinion than the frontend version; if so, it'd be a pretty
bad bug in the library, and hopefully we'd hear about it from users,
report upstream, and get it fixed that way. Alternatively, we can
switch to shelling out to node like we do for KaTeX.
Fixes #6880.
2019-11-18 08:11:03 +01:00
|
|
|
|
|
|
|
return new_password
|
|
|
|
|
2023-10-12 19:43:45 +02:00
|
|
|
@override
|
2021-02-12 08:19:30 +01:00
|
|
|
def save(self, commit: bool = True) -> UserProfile:
|
2022-05-31 03:17:38 +02:00
|
|
|
assert isinstance(self.user, UserProfile)
|
2021-02-12 08:20:45 +01:00
|
|
|
do_change_password(self.user, self.cleaned_data["new_password1"], commit=commit)
|
2012-12-13 21:08:07 +01:00
|
|
|
return self.user
|
2013-05-03 00:26:53 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2016-04-28 23:07:41 +02:00
|
|
|
class ZulipPasswordResetForm(PasswordResetForm):
|
2023-10-12 19:43:45 +02:00
|
|
|
@override
|
2021-02-12 08:19:30 +01:00
|
|
|
def save(
|
|
|
|
self,
|
2024-07-12 02:30:23 +02:00
|
|
|
domain_override: str | None = None,
|
2021-02-12 08:20:45 +01:00
|
|
|
subject_template_name: str = "registration/password_reset_subject.txt",
|
|
|
|
email_template_name: str = "registration/password_reset_email.html",
|
2021-02-12 08:19:30 +01:00
|
|
|
use_https: bool = False,
|
|
|
|
token_generator: PasswordResetTokenGenerator = default_token_generator,
|
2024-07-12 02:30:23 +02:00
|
|
|
from_email: str | None = None,
|
|
|
|
request: HttpRequest | None = None,
|
|
|
|
html_email_template_name: str | None = None,
|
|
|
|
extra_email_context: dict[str, Any] | None = None,
|
2021-02-12 08:19:30 +01:00
|
|
|
) -> None:
|
2017-10-04 07:30:17 +02:00
|
|
|
"""
|
2017-08-11 07:55:51 +02:00
|
|
|
If the email address has an account in the target realm,
|
|
|
|
generates a one-use only link for resetting password and sends
|
|
|
|
to the user.
|
2017-10-04 07:30:17 +02:00
|
|
|
|
2017-08-11 07:55:51 +02:00
|
|
|
We send a different email if an associated account does not exist in the
|
|
|
|
database, or an account does exist, but not in the realm.
|
2017-10-24 20:33:06 +02:00
|
|
|
|
2017-11-20 19:40:33 +01:00
|
|
|
Note: We ignore protocol and the various email template arguments (those
|
|
|
|
are an artifact of using Django's password reset framework).
|
2017-04-24 12:19:54 +02:00
|
|
|
"""
|
2017-10-04 07:30:17 +02:00
|
|
|
email = self.cleaned_data["email"]
|
2022-06-13 21:46:53 +02:00
|
|
|
# The form is only used in zerver.views.auth.password_rest, we know that
|
|
|
|
# the request must not be None
|
|
|
|
assert request is not None
|
2017-08-11 07:55:51 +02:00
|
|
|
|
2017-11-25 03:21:53 +01:00
|
|
|
realm = get_realm(get_subdomain(request))
|
2017-08-11 07:55:51 +02:00
|
|
|
|
|
|
|
if not email_auth_enabled(realm):
|
2021-02-12 08:19:30 +01:00
|
|
|
logging.info(
|
|
|
|
"Password reset attempted for %s even though password auth is disabled.", email
|
|
|
|
)
|
2017-08-11 07:55:51 +02:00
|
|
|
return
|
2018-05-29 07:09:48 +02:00
|
|
|
if email_belongs_to_ldap(realm, email):
|
|
|
|
# TODO: Ideally, we'd provide a user-facing error here
|
|
|
|
# about the fact that they aren't allowed to have a
|
|
|
|
# password in the Zulip server and should change it in LDAP.
|
|
|
|
logging.info("Password reset not allowed for user in LDAP domain")
|
|
|
|
return
|
2018-05-21 05:02:27 +02:00
|
|
|
if realm.deactivated:
|
|
|
|
logging.info("Realm is deactivated")
|
|
|
|
return
|
2017-08-11 07:55:51 +02:00
|
|
|
|
2019-12-30 21:13:02 +01:00
|
|
|
if settings.RATE_LIMITING:
|
|
|
|
try:
|
|
|
|
rate_limit_password_reset_form_by_email(email)
|
2021-11-05 02:19:49 +01:00
|
|
|
rate_limit_request_by_ip(request, domain="sends_email_by_ip")
|
2022-11-17 09:30:48 +01:00
|
|
|
except RateLimitedError:
|
2021-11-05 02:19:49 +01:00
|
|
|
logging.info(
|
|
|
|
"Too many password reset attempts for email %s from %s",
|
|
|
|
email,
|
|
|
|
request.META["REMOTE_ADDR"],
|
|
|
|
)
|
2021-11-05 02:21:26 +01:00
|
|
|
# The view will handle the RateLimit exception and render an appropriate page
|
|
|
|
raise
|
2019-12-30 21:13:02 +01:00
|
|
|
|
2017-08-11 07:55:51 +02:00
|
|
|
try:
|
2018-12-07 00:05:57 +01:00
|
|
|
user = get_user_by_delivery_email(email, realm)
|
2017-08-11 07:55:51 +02:00
|
|
|
except UserProfile.DoesNotExist:
|
2023-01-18 05:25:49 +01:00
|
|
|
user = None
|
2017-08-11 07:55:51 +02:00
|
|
|
|
2024-09-23 20:24:45 +02:00
|
|
|
do_send_password_reset_email(
|
|
|
|
email, realm, user, token_generator=token_generator, request=request
|
|
|
|
)
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2017-04-24 12:19:54 +02:00
|
|
|
|
2019-12-30 21:13:02 +01:00
|
|
|
class RateLimitedPasswordResetByEmail(RateLimitedObject):
|
|
|
|
def __init__(self, email: str) -> None:
|
|
|
|
self.email = email
|
2020-03-05 13:38:20 +01:00
|
|
|
super().__init__()
|
2019-12-30 21:13:02 +01:00
|
|
|
|
2023-10-12 19:43:45 +02:00
|
|
|
@override
|
2020-03-06 10:49:04 +01:00
|
|
|
def key(self) -> str:
|
2020-06-09 00:25:09 +02:00
|
|
|
return f"{type(self).__name__}:{self.email}"
|
2019-12-30 21:13:02 +01:00
|
|
|
|
2023-10-12 19:43:45 +02:00
|
|
|
@override
|
2024-07-12 02:30:17 +02:00
|
|
|
def rules(self) -> list[tuple[int, int]]:
|
2021-02-12 08:20:45 +01:00
|
|
|
return settings.RATE_LIMITING_RULES["password_reset_form_by_email"]
|
2019-12-30 21:13:02 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2019-12-30 21:13:02 +01:00
|
|
|
def rate_limit_password_reset_form_by_email(email: str) -> None:
|
2021-11-05 02:17:02 +01:00
|
|
|
ratelimited, secs_to_freedom = RateLimitedPasswordResetByEmail(email).rate_limit()
|
2019-12-30 21:13:02 +01:00
|
|
|
if ratelimited:
|
2022-11-17 09:30:48 +01:00
|
|
|
raise RateLimitedError(secs_to_freedom)
|
2019-12-30 21:13:02 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2013-12-09 22:26:10 +01:00
|
|
|
class CreateUserForm(forms.Form):
|
2013-05-03 00:26:53 +02:00
|
|
|
full_name = forms.CharField(max_length=100)
|
|
|
|
email = forms.EmailField()
|
2014-01-07 19:51:18 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2014-01-07 19:51:18 +01:00
|
|
|
class OurAuthenticationForm(AuthenticationForm):
|
2021-09-09 20:06:43 +02:00
|
|
|
logger = logging.getLogger("zulip.auth.OurAuthenticationForm")
|
|
|
|
|
2023-10-12 19:43:45 +02:00
|
|
|
@override
|
2024-07-12 02:30:17 +02:00
|
|
|
def clean(self) -> dict[str, Any]:
|
2021-02-12 08:20:45 +01:00
|
|
|
username = self.cleaned_data.get("username")
|
|
|
|
password = self.cleaned_data.get("password")
|
2017-10-23 20:42:37 +02:00
|
|
|
|
|
|
|
if username is not None and password:
|
2022-07-12 20:10:52 +02:00
|
|
|
assert self.request is not None
|
2017-10-23 20:42:37 +02:00
|
|
|
subdomain = get_subdomain(self.request)
|
2020-08-07 02:09:59 +02:00
|
|
|
realm = get_realm(subdomain)
|
2019-05-05 01:04:48 +02:00
|
|
|
|
2024-07-12 02:30:17 +02:00
|
|
|
return_data: dict[str, Any] = {}
|
2019-12-30 02:21:51 +01:00
|
|
|
try:
|
2021-02-12 08:19:30 +01:00
|
|
|
self.user_cache = authenticate(
|
|
|
|
request=self.request,
|
|
|
|
username=username,
|
|
|
|
password=password,
|
|
|
|
realm=realm,
|
|
|
|
return_data=return_data,
|
|
|
|
)
|
2022-11-17 09:30:48 +01:00
|
|
|
except RateLimitedError as e:
|
2020-11-27 16:33:01 +01:00
|
|
|
assert e.secs_to_freedom is not None
|
|
|
|
secs_to_freedom = int(e.secs_to_freedom)
|
2022-03-11 21:11:56 +01:00
|
|
|
error_message = _(
|
2023-01-03 02:16:53 +01:00
|
|
|
"You're making too many attempts to sign in."
|
2023-07-17 22:40:33 +02:00
|
|
|
" Try again in {seconds} seconds or contact your organization administrator"
|
2023-01-03 02:16:53 +01:00
|
|
|
" for help."
|
2022-03-11 21:11:56 +01:00
|
|
|
)
|
2023-07-17 22:40:33 +02:00
|
|
|
raise ValidationError(error_message.format(seconds=secs_to_freedom))
|
2017-11-18 02:03:36 +01:00
|
|
|
|
2017-11-18 02:23:03 +01:00
|
|
|
if return_data.get("inactive_realm"):
|
|
|
|
raise AssertionError("Programming error: inactive realm in authentication form")
|
2017-11-18 02:03:36 +01:00
|
|
|
|
2021-05-07 15:10:35 +02:00
|
|
|
if return_data.get("password_reset_needed"):
|
2022-03-11 21:11:56 +01:00
|
|
|
raise ValidationError(
|
|
|
|
_(
|
|
|
|
"Your password has been disabled because it is too weak. "
|
|
|
|
"Reset your password to create a new one."
|
|
|
|
)
|
|
|
|
)
|
2021-05-07 15:10:35 +02:00
|
|
|
|
2017-11-18 02:03:36 +01:00
|
|
|
if return_data.get("inactive_user") and not return_data.get("is_mirror_dummy"):
|
|
|
|
# We exclude mirror dummy accounts here. They should be treated as the
|
|
|
|
# user never having had an account, so we let them fall through to the
|
|
|
|
# normal invalid_login case below.
|
2021-08-23 15:14:05 +02:00
|
|
|
error_message = DEACTIVATED_ACCOUNT_ERROR.format(username=username)
|
2022-03-07 20:45:45 +01:00
|
|
|
raise ValidationError(error_message)
|
2017-11-18 02:03:36 +01:00
|
|
|
|
|
|
|
if return_data.get("invalid_subdomain"):
|
2021-09-09 20:06:43 +02:00
|
|
|
self.logger.info(
|
2021-09-09 19:53:41 +02:00
|
|
|
"User attempted password login to wrong subdomain %s. Matching accounts: %s",
|
|
|
|
subdomain,
|
|
|
|
return_data.get("matching_user_ids_in_different_realms"),
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2021-09-09 20:09:06 +02:00
|
|
|
# We don't want to leak information by revealing there are matching accounts
|
|
|
|
# on different subdomain - so we just fall through to the default error.
|
|
|
|
assert self.user_cache is None
|
2017-11-18 02:03:36 +01:00
|
|
|
|
2017-10-23 20:42:37 +02:00
|
|
|
if self.user_cache is None:
|
|
|
|
raise forms.ValidationError(
|
2024-10-23 14:02:26 +02:00
|
|
|
INVALID_ACCOUNT_CREDENTIALS_ERROR,
|
2017-10-23 20:42:37 +02:00
|
|
|
)
|
2017-11-18 02:03:36 +01:00
|
|
|
|
|
|
|
self.confirm_login_allowed(self.user_cache)
|
2017-10-23 20:42:37 +02:00
|
|
|
|
|
|
|
return self.cleaned_data
|
|
|
|
|
2023-10-12 19:43:45 +02:00
|
|
|
@override
|
2018-05-11 01:39:17 +02:00
|
|
|
def add_prefix(self, field_name: str) -> str:
|
2017-07-12 09:43:39 +02:00
|
|
|
"""Disable prefix, since Zulip doesn't use this Django forms feature
|
|
|
|
(and django-two-factor does use it), and we'd like both to be
|
|
|
|
happy with this form.
|
|
|
|
"""
|
|
|
|
return field_name
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2017-12-20 07:57:26 +01:00
|
|
|
class AuthenticationTokenForm(TwoFactorAuthenticationTokenForm):
|
|
|
|
"""
|
|
|
|
We add this form to update the widget of otp_token. The default
|
|
|
|
widget is an input element whose type is a number, which doesn't
|
|
|
|
stylistically match our theme.
|
|
|
|
"""
|
2021-02-12 08:19:30 +01:00
|
|
|
|
|
|
|
otp_token = forms.IntegerField(
|
2021-02-12 08:20:45 +01:00
|
|
|
label=_("Token"), min_value=1, max_value=int("9" * totp_digits()), widget=forms.TextInput
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
|
|
|
|
2017-12-20 07:57:26 +01:00
|
|
|
|
2016-12-20 10:41:46 +01:00
|
|
|
class MultiEmailField(forms.Field):
|
2023-10-12 19:43:45 +02:00
|
|
|
@override
|
2024-07-12 02:30:23 +02:00
|
|
|
def to_python(self, emails: str | None) -> list[str]:
|
2016-12-20 10:41:46 +01:00
|
|
|
"""Normalize data to a list of strings."""
|
|
|
|
if not emails:
|
|
|
|
return []
|
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
return [email.strip() for email in emails.split(",")]
|
2016-12-20 10:41:46 +01:00
|
|
|
|
2023-10-12 19:43:45 +02:00
|
|
|
@override
|
2024-07-12 02:30:17 +02:00
|
|
|
def validate(self, emails: list[str]) -> None:
|
2016-12-20 10:41:46 +01:00
|
|
|
"""Check if value consists only of valid emails."""
|
2017-10-27 08:28:23 +02:00
|
|
|
super().validate(emails)
|
2016-12-20 10:41:46 +01:00
|
|
|
for email in emails:
|
|
|
|
validate_email(email)
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2016-12-20 10:41:46 +01:00
|
|
|
class FindMyTeamForm(forms.Form):
|
2023-03-30 02:40:42 +02:00
|
|
|
emails = MultiEmailField(
|
|
|
|
help_text=_("Tip: You can enter multiple email addresses with commas between them.")
|
|
|
|
)
|
2016-12-20 10:41:46 +01:00
|
|
|
|
2024-07-12 02:30:17 +02:00
|
|
|
def clean_emails(self) -> list[str]:
|
2021-02-12 08:20:45 +01:00
|
|
|
emails = self.cleaned_data["emails"]
|
2016-12-20 10:41:46 +01:00
|
|
|
if len(emails) > 10:
|
2017-03-29 07:52:51 +02:00
|
|
|
raise forms.ValidationError(_("Please enter at most 10 emails."))
|
2016-12-20 10:41:46 +01:00
|
|
|
|
|
|
|
return emails
|
2018-08-25 14:06:17 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2018-08-25 14:06:17 +02:00
|
|
|
class RealmRedirectForm(forms.Form):
|
|
|
|
subdomain = forms.CharField(max_length=Realm.MAX_REALM_SUBDOMAIN_LENGTH, required=True)
|
|
|
|
|
|
|
|
def clean_subdomain(self) -> str:
|
2021-02-12 08:20:45 +01:00
|
|
|
subdomain = self.cleaned_data["subdomain"]
|
2019-05-04 04:47:44 +02:00
|
|
|
try:
|
|
|
|
get_realm(subdomain)
|
|
|
|
except Realm.DoesNotExist:
|
2018-08-25 14:06:17 +02:00
|
|
|
raise ValidationError(_("We couldn't find that Zulip organization."))
|
|
|
|
return subdomain
|