Source code for airflow.providers.github.hooks.github
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
"""This module allows you to connect to GitHub."""
from __future__ import annotations
from typing import TYPE_CHECKING
from github import Github as GithubClient
from airflow.exceptions import AirflowException
from airflow.hooks.base import BaseHook
[docs]class GithubHook(BaseHook):
"""
Interact with GitHub.
Performs a connection to GitHub and retrieves client.
:param github_conn_id: Reference to :ref:`GitHub connection id <howto/connection:github>`.
"""
[docs] conn_name_attr = "github_conn_id"
[docs] default_conn_name = "github_default"
def __init__(self, github_conn_id: str = default_conn_name, *args, **kwargs) -> None:
super().__init__(*args, **kwargs)
self.github_conn_id = github_conn_id
self.client: GithubClient | None = None
self.get_conn()
[docs] def get_conn(self) -> GithubClient:
"""Initiate a new GitHub connection with token and hostname (for GitHub Enterprise)."""
if self.client is not None:
return self.client
conn = self.get_connection(self.github_conn_id)
access_token = conn.password
host = conn.host
# Currently the only method of authenticating to GitHub in Airflow is via a token. This is not the
# only means available, but raising an exception to enforce this method for now.
# TODO: When/If other auth methods are implemented this exception should be removed/modified.
if not access_token:
raise AirflowException("An access token is required to authenticate to GitHub.")
if not host:
self.client = GithubClient(login_or_token=access_token)
else:
self.client = GithubClient(login_or_token=access_token, base_url=host)
return self.client
@classmethod
[docs] def get_ui_field_behaviour(cls) -> dict:
"""Return custom field behaviour."""
return {
"hidden_fields": ["schema", "port", "login", "extra"],
"relabeling": {"host": "GitHub Enterprise URL (Optional)", "password": "GitHub Access Token"},
"placeholders": {"host": "https://{hostname}/api/v3 (for GitHub Enterprise)"},
}
[docs] def test_connection(self) -> tuple[bool, str]:
"""Test GitHub connection."""
try:
if TYPE_CHECKING:
assert self.client
self.client.get_user().id
return True, "Successfully connected to GitHub."
except Exception as e:
return False, str(e)