This commit is contained in:
Iliyan Angelov
2025-09-14 23:24:25 +03:00
commit c67067a2a4
71311 changed files with 6800714 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
from allauth.account.models import EmailAddress
from allauth.socialaccount import providers
from allauth.socialaccount.providers.base import ProviderAccount
from allauth.socialaccount.providers.oauth2.provider import OAuth2Provider
class FigmaAccount(ProviderAccount):
def to_str(self):
return self.account.extra_data.get("handle", "")
def get_avatar_url(self):
return self.account.extra_data.get("img_url", "")
class FigmaProvider(OAuth2Provider):
id = "figma"
name = "Figma"
account_class = FigmaAccount
def extract_uid(self, data):
return str(data["id"])
def extract_common_fields(self, data):
return {
"email": data.get("email"),
"name": data.get("handle"),
}
def extract_email_addresses(self, data):
email = EmailAddress(
email=data.get("email"),
primary=True,
verified=False,
)
return [email]
providers.registry.register(FigmaProvider)

View File

@@ -0,0 +1,21 @@
from allauth.socialaccount.tests import OAuth2TestsMixin
from allauth.tests import MockedResponse, TestCase
from .provider import FigmaProvider
class FigmaTests(OAuth2TestsMixin, TestCase):
provider_id = FigmaProvider.id
def get_mocked_response(self):
return MockedResponse(
200,
"""
{
"id": "2600",
"email": "johndoe@example.com",
"handle": "John Doe",
"img_url": "https://www.example.com/image.png"
}
""",
)

View File

@@ -0,0 +1,6 @@
from allauth.socialaccount.providers.oauth2.urls import default_urlpatterns
from .provider import FigmaProvider
urlpatterns = default_urlpatterns(FigmaProvider)

View File

@@ -0,0 +1,30 @@
import requests
from allauth.socialaccount.providers.oauth2.views import (
OAuth2Adapter,
OAuth2CallbackView,
OAuth2LoginView,
)
from .provider import FigmaProvider
class FigmaOAuth2Adapter(OAuth2Adapter):
provider_id = FigmaProvider.id
authorize_url = "https://www.figma.com/oauth"
access_token_url = "https://www.figma.com/api/oauth/token"
userinfo_url = "https://api.figma.com/v1/me"
def complete_login(self, request, app, token, **kwargs):
resp = requests.get(
self.userinfo_url,
headers={"Authorization": "Bearer {0}".format(token.token)},
)
resp.raise_for_status()
extra_data = resp.json()
return self.get_provider().sociallogin_from_response(request, extra_data)
oauth2_login = OAuth2LoginView.adapter_view(FigmaOAuth2Adapter)
oauth2_callback = OAuth2CallbackView.adapter_view(FigmaOAuth2Adapter)