24 lines
650 B
Python
24 lines
650 B
Python
from allauth.socialaccount.providers.base import ProviderAccount
|
|
from allauth.socialaccount.providers.oauth2.provider import OAuth2Provider
|
|
|
|
|
|
class JupyterHubAccount(ProviderAccount):
|
|
def to_str(self):
|
|
dflt = super(JupyterHubAccount, self).to_str()
|
|
return self.account.extra_data.get("name", dflt)
|
|
|
|
|
|
class JupyterHubProvider(OAuth2Provider):
|
|
id = "jupyterhub"
|
|
name = "JupyterHub"
|
|
account_class = JupyterHubAccount
|
|
|
|
def extract_uid(self, data):
|
|
return str(data.get("name"))
|
|
|
|
def extract_common_fields(self, data):
|
|
return dict(name=data.get("name", ""))
|
|
|
|
|
|
provider_classes = [JupyterHubProvider]
|