27 lines
718 B
Python
27 lines
718 B
Python
from allauth.socialaccount.providers.base import ProviderAccount
|
|
from allauth.socialaccount.providers.oauth2.provider import OAuth2Provider
|
|
|
|
|
|
class StripeAccount(ProviderAccount):
|
|
def to_str(self):
|
|
default = super(StripeAccount, self).to_str()
|
|
return self.account.extra_data.get("business_name", default)
|
|
|
|
|
|
class StripeProvider(OAuth2Provider):
|
|
id = "stripe"
|
|
name = "Stripe"
|
|
account_class = StripeAccount
|
|
|
|
def extract_uid(self, data):
|
|
return data["id"]
|
|
|
|
def extract_common_fields(self, data):
|
|
return dict(name=data.get("display_name"), email=data.get("email"))
|
|
|
|
def get_default_scope(self):
|
|
return ["read_only"]
|
|
|
|
|
|
provider_classes = [StripeProvider]
|