2023-05-15 08:51:32 +08:00
|
|
|
import urllib.parse
|
|
|
|
from dataclasses import dataclass
|
|
|
|
|
|
|
|
import requests
|
|
|
|
|
|
|
|
|
|
|
|
@dataclass
|
|
|
|
class OAuthUserInfo:
|
|
|
|
id: str
|
|
|
|
name: str
|
|
|
|
email: str
|
|
|
|
|
|
|
|
|
|
|
|
class OAuth:
|
|
|
|
def __init__(self, client_id: str, client_secret: str, redirect_uri: str):
|
|
|
|
self.client_id = client_id
|
|
|
|
self.client_secret = client_secret
|
|
|
|
self.redirect_uri = redirect_uri
|
|
|
|
|
|
|
|
def get_authorization_url(self):
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
def get_access_token(self, code: str):
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
def get_raw_user_info(self, token: str):
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
def get_user_info(self, token: str) -> OAuthUserInfo:
|
|
|
|
raw_info = self.get_raw_user_info(token)
|
|
|
|
return self._transform_user_info(raw_info)
|
|
|
|
|
|
|
|
def _transform_user_info(self, raw_info: dict) -> OAuthUserInfo:
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
|
|
|
|
class GitHubOAuth(OAuth):
|
2024-08-15 17:53:12 +08:00
|
|
|
_AUTH_URL = "https://github.com/login/oauth/authorize"
|
|
|
|
_TOKEN_URL = "https://github.com/login/oauth/access_token"
|
|
|
|
_USER_INFO_URL = "https://api.github.com/user"
|
|
|
|
_EMAIL_INFO_URL = "https://api.github.com/user/emails"
|
2023-05-15 08:51:32 +08:00
|
|
|
|
|
|
|
def get_authorization_url(self):
|
|
|
|
params = {
|
2024-08-15 17:53:12 +08:00
|
|
|
"client_id": self.client_id,
|
|
|
|
"redirect_uri": self.redirect_uri,
|
|
|
|
"scope": "user:email", # Request only basic user information
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
return f"{self._AUTH_URL}?{urllib.parse.urlencode(params)}"
|
|
|
|
|
|
|
|
def get_access_token(self, code: str):
|
|
|
|
data = {
|
2024-08-15 17:53:12 +08:00
|
|
|
"client_id": self.client_id,
|
|
|
|
"client_secret": self.client_secret,
|
|
|
|
"code": code,
|
|
|
|
"redirect_uri": self.redirect_uri,
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
2024-08-15 17:53:12 +08:00
|
|
|
headers = {"Accept": "application/json"}
|
2023-05-15 08:51:32 +08:00
|
|
|
response = requests.post(self._TOKEN_URL, data=data, headers=headers)
|
|
|
|
|
|
|
|
response_json = response.json()
|
2024-08-15 17:53:12 +08:00
|
|
|
access_token = response_json.get("access_token")
|
2023-05-15 08:51:32 +08:00
|
|
|
|
|
|
|
if not access_token:
|
|
|
|
raise ValueError(f"Error in GitHub OAuth: {response_json}")
|
|
|
|
|
|
|
|
return access_token
|
|
|
|
|
|
|
|
def get_raw_user_info(self, token: str):
|
2024-08-15 17:53:12 +08:00
|
|
|
headers = {"Authorization": f"token {token}"}
|
2023-05-15 08:51:32 +08:00
|
|
|
response = requests.get(self._USER_INFO_URL, headers=headers)
|
|
|
|
response.raise_for_status()
|
|
|
|
user_info = response.json()
|
|
|
|
|
|
|
|
email_response = requests.get(self._EMAIL_INFO_URL, headers=headers)
|
|
|
|
email_info = email_response.json()
|
2024-08-15 17:53:12 +08:00
|
|
|
primary_email = next((email for email in email_info if email["primary"] == True), None)
|
2023-05-15 08:51:32 +08:00
|
|
|
|
2024-08-15 17:53:12 +08:00
|
|
|
return {**user_info, "email": primary_email["email"]}
|
2023-05-15 08:51:32 +08:00
|
|
|
|
|
|
|
def _transform_user_info(self, raw_info: dict) -> OAuthUserInfo:
|
2024-08-15 17:53:12 +08:00
|
|
|
email = raw_info.get("email")
|
2023-05-15 08:51:32 +08:00
|
|
|
if not email:
|
|
|
|
email = f"{raw_info['id']}+{raw_info['login']}@users.noreply.github.com"
|
2024-08-15 17:53:12 +08:00
|
|
|
return OAuthUserInfo(id=str(raw_info["id"]), name=raw_info["name"], email=email)
|
2023-05-15 08:51:32 +08:00
|
|
|
|
|
|
|
|
|
|
|
class GoogleOAuth(OAuth):
|
2024-08-15 17:53:12 +08:00
|
|
|
_AUTH_URL = "https://accounts.google.com/o/oauth2/v2/auth"
|
|
|
|
_TOKEN_URL = "https://oauth2.googleapis.com/token"
|
|
|
|
_USER_INFO_URL = "https://www.googleapis.com/oauth2/v3/userinfo"
|
2023-05-15 08:51:32 +08:00
|
|
|
|
|
|
|
def get_authorization_url(self):
|
|
|
|
params = {
|
2024-08-15 17:53:12 +08:00
|
|
|
"client_id": self.client_id,
|
|
|
|
"response_type": "code",
|
|
|
|
"redirect_uri": self.redirect_uri,
|
|
|
|
"scope": "openid email",
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
return f"{self._AUTH_URL}?{urllib.parse.urlencode(params)}"
|
|
|
|
|
|
|
|
def get_access_token(self, code: str):
|
|
|
|
data = {
|
2024-08-15 17:53:12 +08:00
|
|
|
"client_id": self.client_id,
|
|
|
|
"client_secret": self.client_secret,
|
|
|
|
"code": code,
|
|
|
|
"grant_type": "authorization_code",
|
|
|
|
"redirect_uri": self.redirect_uri,
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
2024-08-15 17:53:12 +08:00
|
|
|
headers = {"Accept": "application/json"}
|
2023-05-15 08:51:32 +08:00
|
|
|
response = requests.post(self._TOKEN_URL, data=data, headers=headers)
|
|
|
|
|
|
|
|
response_json = response.json()
|
2024-08-15 17:53:12 +08:00
|
|
|
access_token = response_json.get("access_token")
|
2023-05-15 08:51:32 +08:00
|
|
|
|
|
|
|
if not access_token:
|
|
|
|
raise ValueError(f"Error in Google OAuth: {response_json}")
|
|
|
|
|
|
|
|
return access_token
|
|
|
|
|
|
|
|
def get_raw_user_info(self, token: str):
|
2024-08-15 17:53:12 +08:00
|
|
|
headers = {"Authorization": f"Bearer {token}"}
|
2023-05-15 08:51:32 +08:00
|
|
|
response = requests.get(self._USER_INFO_URL, headers=headers)
|
|
|
|
response.raise_for_status()
|
|
|
|
return response.json()
|
|
|
|
|
|
|
|
def _transform_user_info(self, raw_info: dict) -> OAuthUserInfo:
|
2024-08-15 17:53:12 +08:00
|
|
|
return OAuthUserInfo(id=str(raw_info["sub"]), name=None, email=raw_info["email"])
|