This commit is contained in:
Olivier Dalang 2022-04-03 16:06:30 +09:00 committed by GitHub
commit 757f7579d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,6 +8,7 @@ try:
get_username_max_length) get_username_max_length)
from allauth.account.adapter import get_adapter from allauth.account.adapter import get_adapter
from allauth.account.utils import setup_user_email from allauth.account.utils import setup_user_email
from allauth.socialaccount.adapter import get_adapter as get_social_adapter
from allauth.socialaccount.helpers import complete_social_login from allauth.socialaccount.helpers import complete_social_login
from allauth.socialaccount.models import SocialAccount from allauth.socialaccount.models import SocialAccount
from allauth.socialaccount.providers.base import AuthProcess from allauth.socialaccount.providers.base import AuthProcess
@ -139,6 +140,12 @@ class SocialLoginSerializer(serializers.Serializer):
_("User is already registered with this e-mail address.") _("User is already registered with this e-mail address.")
) )
# If signup is disabled, we cannot login a new user
if not get_social_adapter(request).is_open_for_signup(request, login):
raise serializers.ValidationError(
_("User is not registered but registration is closed.")
)
login.lookup() login.lookup()
login.save(request, connect=True) login.save(request, connect=True)