Skip to content

Commit

Permalink
[RFC-007] Implement GitHub app authentication for git repositories.
Browse files Browse the repository at this point in the history
- Add github app based authentication method to fetch installation token in auth package.
- Add unit tests to test the github app authentication
- Add github provider options in git package.
- Use the github provider to clone from go-git package.
- Add unit tests to fetch git credentials and cloning the repository using github app authentication.
- Add e2e tests to test pull/push to git repositories using github app authentication.
- Update the github workflow to run e2etests from CI.

Signed-off-by: Dipti Pai <[email protected]>
  • Loading branch information
dipti-pai committed Nov 12, 2024
1 parent 2cbdbf5 commit 005baa1
Show file tree
Hide file tree
Showing 21 changed files with 909 additions and 50 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ jobs:
export GITHUB_USER="fluxcd-gitprovider-bot"
export GITHUB_ORG="fluxcd-testing"
export GITHUB_TOKEN="${{ secrets.GITPROVIDER_BOT_TOKEN }}"
export GHAPP_ID="${{ secrets.GHAPP_ID }}"
export GHAPP_INSTALL_ID="${{ secrets.GHAPP_INSTALL_ID }}"
export GHAPP_PRIVATE_KEY="${{ secrets.GHAPP_PRIVATE_KEY }}"
elif [[ ${{ matrix.provider }} = "gitlab" ]]; then
export GO_TEST_PREFIX="TestGitLabE2E"
export GITLAB_USER="fluxcd-gitprovider-bot"
Expand Down
171 changes: 171 additions & 0 deletions auth/github/client.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,171 @@
/*
Copyright 2024 The Flux authors
Licensed 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.
*/

package github

import (
"context"
"fmt"
"net/http"
"net/url"
"strconv"
"time"

"github.com/bradleyfalzon/ghinstallation/v2"
"golang.org/x/net/http/httpproxy"
)

const (
AppIDKey = "githubAppID"
AppInstallationIDKey = "githubAppInstallationID"
AppPrivateKey = "githubAppPrivateKey"
ApiURLKey = "githubApiURL"
)

// Client is an authentication provider for GitHub Apps.
type Client struct {
appID int
installationID int
privateKey []byte
apiURL string
proxyConfig *httpproxy.Config
ghTransport *ghinstallation.Transport
}

// OptFunc enables specifying options for the provider.
type OptFunc func(*Client) error

// New returns a new authentication provider for GitHub Apps.
func New(opts ...OptFunc) (*Client, error) {
var err error

p := &Client{}
for _, opt := range opts {
err = opt(p)
if err != nil {
return nil, err
}
}

transport := http.DefaultTransport.(*http.Transport).Clone()
if p.proxyConfig != nil {
proxyFunc := func(req *http.Request) (*url.URL, error) {
return p.proxyConfig.ProxyFunc()(req.URL)
}
transport.Proxy = proxyFunc
}
p.ghTransport, err = ghinstallation.New(transport, int64(p.appID), int64(p.installationID), p.privateKey)
if err != nil {
return nil, err
}

if p.apiURL != "" {
p.ghTransport.BaseURL = p.apiURL
}

return p, nil
}

// WithInstallationID configures the installation ID of the GitHub App.
func WithInstllationID(installationID int) OptFunc {
return func(p *Client) error {
p.installationID = installationID
return nil
}
}

// WithAppID configures the app ID of the GitHub App.
func WithAppID(appID int) OptFunc {
return func(p *Client) error {
p.appID = appID
return nil
}
}

// WithPrivateKey configures the private key of the GitHub App.
func WithPrivateKey(pk []byte) OptFunc {
return func(p *Client) error {
p.privateKey = pk
return nil
}
}

// WithApiURL configures the GitHub API endpoint to use to fetch GitHub App
// installation token.
func WithApiURL(apiURL string) OptFunc {
return func(p *Client) error {
p.apiURL = apiURL
return nil
}
}

// WithAppData configures the client using data from a map
func WithAppData(appData map[string][]byte) OptFunc {
return func(p *Client) error {
var err error
for _, key := range []string{AppIDKey, AppInstallationIDKey, AppPrivateKey} {
if _, exists := appData[key]; !exists {
return fmt.Errorf("github app data must contain key : %s", key)
}
}
p.appID, err = strconv.Atoi(string(appData[AppIDKey]))
if err != nil {
return fmt.Errorf("github app data error for key : %s, err: %v", AppIDKey, err)
}
p.installationID, err = strconv.Atoi(string(appData[AppInstallationIDKey]))
if err != nil {
return fmt.Errorf("github app data error for key : %s, err: %v", AppInstallationIDKey, err)
}
p.privateKey = appData[AppPrivateKey]
p.apiURL = string(appData[ApiURLKey])
return nil
}
}

// WithProxyConfig configures the http proxy settings to be used with the
// transport.
func WithProxyConfig(proxyConfig *httpproxy.Config) OptFunc {
return func(p *Client) error {
p.proxyConfig = proxyConfig
return nil
}
}

// AppToken contains a GitHub App installation token and its expiry.
type AppToken struct {
Token string
ExpiresAt time.Time
}

// GetToken returns the token that can be used to authenticate
// as a GitHub App installation.
// Ref: https://docs.github.com/en/apps/creating-github-apps/authenticating-with-a-github-app/authenticating-as-a-github-app-installation
func (p *Client) GetToken(ctx context.Context) (*AppToken, error) {
token, err := p.ghTransport.Token(ctx)
if err != nil {
return nil, err
}

expiresAt, _, err := p.ghTransport.Expiry()
if err != nil {
return nil, err
}

return &AppToken{
Token: token,
ExpiresAt: expiresAt,
}, nil
}
Loading

0 comments on commit 005baa1

Please sign in to comment.