forked from stove/dataset
35 lines
980 B
Python
35 lines
980 B
Python
# -*- coding: utf-8 -*-
|
|
from allauth.socialaccount.providers.base import ProviderAccount
|
|
from allauth.socialaccount.providers.oauth2.provider import OAuth2Provider
|
|
|
|
|
|
class LemonLDAPAccount(ProviderAccount):
|
|
def get_avatar_url(self):
|
|
return self.account.extra_data.get("picture")
|
|
|
|
def to_str(self):
|
|
dflt = super(LemonLDAPAccount, self).to_str()
|
|
return self.account.extra_data.get("name", dflt)
|
|
|
|
|
|
class LemonLDAPProvider(OAuth2Provider):
|
|
id = "lemonldap"
|
|
name = "LemonLDAP::NG"
|
|
account_class = LemonLDAPAccount
|
|
|
|
def get_default_scope(self):
|
|
return ["openid", "profile", "email"]
|
|
|
|
def extract_uid(self, data):
|
|
return str(data["id"])
|
|
|
|
def extract_common_fields(self, data):
|
|
return dict(
|
|
email=data.get("email"),
|
|
username=data.get("preferred_username"),
|
|
name=data.get("name"),
|
|
picture=data.get("picture"),
|
|
)
|
|
|
|
|
|
provider_classes = [LemonLDAPProvider]
|