This commit is contained in:
Iliyan Angelov
2025-09-14 23:24:25 +03:00
commit c67067a2a4
71311 changed files with 6800714 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
from allauth.account.models import EmailAddress
from allauth.socialaccount.providers.base import ProviderAccount
from allauth.socialaccount.providers.oauth2.provider import OAuth2Provider
class ZohoAccount(ProviderAccount):
def to_str(self):
dflt = super(ZohoAccount, self).to_str()
return self.account.extra_data.get("Display_Name", dflt)
class ZohoProvider(OAuth2Provider):
id = "zoho"
name = "Zoho"
account_class = ZohoAccount
def get_default_scope(self):
return ["aaaserver.profile.READ"]
def extract_uid(self, data):
return str(data["ZUID"])
def extract_common_fields(self, data):
return dict(
email=data["Email"],
username=data["Display_Name"],
first_name=data["First_Name"],
last_name=data["Last_Name"],
)
def extract_email_addresses(self, data):
ret = []
email = data.get("Email")
if email:
ret.append(
EmailAddress(
email=email,
verified=False,
primary=True,
)
)
return ret
provider_classes = [ZohoProvider]

View File

@@ -0,0 +1,17 @@
from allauth.socialaccount.tests import OAuth2TestsMixin
from allauth.tests import MockedResponse, TestCase
from .provider import ZohoProvider
class ZohoTests(OAuth2TestsMixin, TestCase):
provider_id = ZohoProvider.id
def get_mocked_response(self):
return MockedResponse(
200,
"""
{"First_Name":"John","Email":"jdoe@example.com",
"Last_Name":"Doe","Display_Name":"JDoee","ZUID":1234567}
""",
)

View File

@@ -0,0 +1,6 @@
from allauth.socialaccount.providers.oauth2.urls import default_urlpatterns
from .provider import ZohoProvider
urlpatterns = default_urlpatterns(ZohoProvider)

View File

@@ -0,0 +1,29 @@
import requests
from allauth.socialaccount.providers.oauth2.views import (
OAuth2Adapter,
OAuth2CallbackView,
OAuth2LoginView,
)
from .provider import ZohoProvider
class ZohoOAuth2Adapter(OAuth2Adapter):
provider_id = ZohoProvider.id
access_token_url = "https://accounts.zoho.com/oauth/v2/token"
authorize_url = "https://accounts.zoho.com/oauth/v2/auth"
profile_url = "https://accounts.zoho.com/oauth/user/info"
def complete_login(self, request, app, token, **kwargs):
resp = requests.get(
self.profile_url,
headers={"Authorization": "Bearer {}".format(token.token)},
)
resp.raise_for_status()
extra_data = resp.json()
return self.get_provider().sociallogin_from_response(request, extra_data)
oauth2_login = OAuth2LoginView.adapter_view(ZohoOAuth2Adapter)
oauth2_callback = OAuth2CallbackView.adapter_view(ZohoOAuth2Adapter)