56 lines
2.0 KiB
Python
56 lines
2.0 KiB
Python
import requests
|
|
|
|
from allauth.socialaccount import app_settings
|
|
from allauth.socialaccount.providers.github.provider import GitHubProvider
|
|
from allauth.socialaccount.providers.oauth2.views import (
|
|
OAuth2Adapter,
|
|
OAuth2CallbackView,
|
|
OAuth2LoginView,
|
|
)
|
|
|
|
|
|
class GitHubOAuth2Adapter(OAuth2Adapter):
|
|
provider_id = GitHubProvider.id
|
|
settings = app_settings.PROVIDERS.get(provider_id, {})
|
|
|
|
if "GITHUB_URL" in settings:
|
|
web_url = settings.get("GITHUB_URL").rstrip("/")
|
|
api_url = "{0}/api/v3".format(web_url)
|
|
else:
|
|
web_url = "https://github.com"
|
|
api_url = "https://api.github.com"
|
|
|
|
access_token_url = "{0}/login/oauth/access_token".format(web_url)
|
|
authorize_url = "{0}/login/oauth/authorize".format(web_url)
|
|
profile_url = "{0}/user".format(api_url)
|
|
emails_url = "{0}/user/emails".format(api_url)
|
|
|
|
def complete_login(self, request, app, token, **kwargs):
|
|
headers = {"Authorization": "token {}".format(token.token)}
|
|
resp = requests.get(self.profile_url, headers=headers)
|
|
resp.raise_for_status()
|
|
extra_data = resp.json()
|
|
if app_settings.QUERY_EMAIL and not extra_data.get("email"):
|
|
extra_data["email"] = self.get_email(headers)
|
|
return self.get_provider().sociallogin_from_response(request, extra_data)
|
|
|
|
def get_email(self, headers):
|
|
email = None
|
|
resp = requests.get(self.emails_url, headers=headers)
|
|
resp.raise_for_status()
|
|
emails = resp.json()
|
|
if resp.status_code == 200 and emails:
|
|
email = emails[0]
|
|
primary_emails = [
|
|
e for e in emails if not isinstance(e, dict) or e.get("primary")
|
|
]
|
|
if primary_emails:
|
|
email = primary_emails[0]
|
|
if isinstance(email, dict):
|
|
email = email.get("email", "")
|
|
return email
|
|
|
|
|
|
oauth2_login = OAuth2LoginView.adapter_view(GitHubOAuth2Adapter)
|
|
oauth2_callback = OAuth2CallbackView.adapter_view(GitHubOAuth2Adapter)
|