42 lines
1.1 KiB
Python
42 lines
1.1 KiB
Python
from allauth.account.models import EmailAddress
|
|
from allauth.socialaccount.providers.base import ProviderAccount
|
|
from allauth.socialaccount.providers.oauth2.provider import OAuth2Provider
|
|
|
|
|
|
class ZoomAccount(ProviderAccount):
|
|
def get_profile_url(self):
|
|
return self.account.extra_data.get("vanity_url")
|
|
|
|
def get_avatar_url(self):
|
|
return self.account.extra_data.get("pic_url")
|
|
|
|
def to_str(self):
|
|
dflt = super(ZoomAccount, self).to_str()
|
|
return self.account.extra_data.get("name", dflt)
|
|
|
|
|
|
class ZoomProvider(OAuth2Provider):
|
|
id = "zoom"
|
|
name = "Zoom"
|
|
account_class = ZoomAccount
|
|
|
|
def extract_uid(self, data):
|
|
return data["id"]
|
|
|
|
def extract_common_fields(self, data):
|
|
return dict(
|
|
email=data["email"],
|
|
first_name=data["first_name"],
|
|
last_name=data["last_name"],
|
|
)
|
|
|
|
def extract_email_addresses(self, data):
|
|
ret = []
|
|
email = data.get("email")
|
|
if email and data.get("verified"):
|
|
ret.append(EmailAddress(email=email, verified=True, primary=True))
|
|
return ret
|
|
|
|
|
|
provider_classes = [ZoomProvider]
|