34 lines
978 B
Python
34 lines
978 B
Python
from allauth.socialaccount.providers.base import ProviderAccount
|
|
from allauth.socialaccount.providers.oauth2.provider import OAuth2Provider
|
|
|
|
|
|
class AmazonAccount(ProviderAccount):
|
|
def to_str(self):
|
|
return self.account.extra_data.get("name", super(AmazonAccount, self).to_str())
|
|
|
|
|
|
class AmazonProvider(OAuth2Provider):
|
|
id = "amazon"
|
|
name = "Amazon"
|
|
account_class = AmazonAccount
|
|
|
|
def get_default_scope(self):
|
|
return ["profile"]
|
|
|
|
def extract_uid(self, data):
|
|
return str(data["user_id"])
|
|
|
|
def extract_common_fields(self, data):
|
|
# Hackish way of splitting the fullname.
|
|
# Assumes no middlenames.
|
|
name = data.get("name", "")
|
|
first_name, last_name = name, ""
|
|
if name and " " in name:
|
|
first_name, last_name = name.split(" ", 1)
|
|
return dict(
|
|
email=data.get("email", ""), last_name=last_name, first_name=first_name
|
|
)
|
|
|
|
|
|
provider_classes = [AmazonProvider]
|