mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 12:14:18 +00:00
72 lines
2.3 KiB
Python
72 lines
2.3 KiB
Python
import sys
|
|
import time
|
|
from typing import List
|
|
|
|
import requests
|
|
from jwt import JWT, jwk_from_pem
|
|
from praktika import Workflow
|
|
from praktika.mangle import _get_workflows
|
|
from praktika.settings import Settings
|
|
from praktika.utils import Shell
|
|
|
|
|
|
class GHAuth:
|
|
@staticmethod
|
|
def _generate_jwt(client_id, pem):
|
|
pem = str.encode(pem)
|
|
signing_key = jwk_from_pem(pem)
|
|
payload = {
|
|
"iat": int(time.time()),
|
|
"exp": int(time.time()) + 600,
|
|
"iss": client_id,
|
|
}
|
|
# Create JWT
|
|
jwt_instance = JWT()
|
|
encoded_jwt = jwt_instance.encode(payload, signing_key, alg="RS256")
|
|
return encoded_jwt
|
|
|
|
@staticmethod
|
|
def _get_installation_id(jwt_token):
|
|
headers = {
|
|
"Authorization": f"Bearer {jwt_token}",
|
|
"Accept": "application/vnd.github.v3+json",
|
|
}
|
|
response = requests.get(
|
|
"https://api.github.com/app/installations", headers=headers, timeout=10
|
|
)
|
|
response.raise_for_status()
|
|
installations = response.json()
|
|
assert installations, "No installations found for the GitHub App"
|
|
return installations[0]["id"]
|
|
|
|
@staticmethod
|
|
def _get_access_token(jwt_token, installation_id):
|
|
headers = {
|
|
"Authorization": f"Bearer {jwt_token}",
|
|
"Accept": "application/vnd.github.v3+json",
|
|
}
|
|
url = (
|
|
f"https://api.github.com/app/installations/{installation_id}/access_tokens"
|
|
)
|
|
response = requests.post(url, headers=headers, timeout=10)
|
|
response.raise_for_status()
|
|
return response.json()["token"]
|
|
|
|
@classmethod
|
|
def auth(cls, workflow_name) -> None:
|
|
wf = _get_workflows(workflow_name) # type: List[Workflow.Config]
|
|
pem = wf[0].get_secret(Settings.SECRET_GH_APP_PEM_KEY).get_value()
|
|
assert pem
|
|
app_id = wf[0].get_secret(Settings.SECRET_GH_APP_ID).get_value()
|
|
# Generate JWT
|
|
jwt_token = cls._generate_jwt(app_id, pem)
|
|
# Get Installation ID
|
|
installation_id = cls._get_installation_id(jwt_token)
|
|
# Get Installation Access Token
|
|
access_token = cls._get_access_token(jwt_token, installation_id)
|
|
Shell.check(f"echo {access_token} | gh auth login --with-token", strict=True)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
GHAuth.auth(sys.argv[1])
|