Files
trufflehog/pkg/sources/github/connector_token.go
Richard GomezandKashif Khan bb899f20dc [GitHub] Add a GraphQL client to the connector (#3837)
* feat(github): add graphql client

* Update connector.go

* Update connector.go

* Update connector_basicauth.go

* Update connector_token.go

* Update connector_unauthenticated.go

* Update connector_app.go

---------

Co-authored-by: Kashif Khan <70996046+kashifkhan0771@users.noreply.github.com>
2025-08-26 11:25:38 +05:00

117 lines
2.9 KiB
Go

package github
import (
"fmt"
"strings"
"sync"
gogit "github.com/go-git/go-git/v5"
"github.com/google/go-github/v67/github"
"github.com/shurcooL/githubv4"
"golang.org/x/oauth2"
"github.com/trufflesecurity/trufflehog/v3/pkg/common"
"github.com/trufflesecurity/trufflehog/v3/pkg/context"
"github.com/trufflesecurity/trufflehog/v3/pkg/sources/git"
)
type tokenConnector struct {
token string
apiClient *github.Client
graphqlClient *githubv4.Client
isGitHubEnterprise bool
handleRateLimit func(context.Context, error) bool
user string
userMu sync.Mutex
authInUrl bool
clonePath string
}
var _ Connector = (*tokenConnector)(nil)
func NewTokenConnector(ctx context.Context, apiEndpoint, token, clonePath string, authInUrl bool, handleRateLimit func(context.Context, error) bool) (Connector, error) {
const httpTimeoutSeconds = 60
httpClient := common.RetryableHTTPClientTimeout(int64(httpTimeoutSeconds))
tokenSource := oauth2.StaticTokenSource(&oauth2.Token{AccessToken: token})
httpClient.Transport = &oauth2.Transport{
Base: httpClient.Transport,
Source: tokenSource,
}
apiClient, err := createAPIClient(ctx, httpClient, apiEndpoint)
if err != nil {
return nil, fmt.Errorf("could not create API client: %w", err)
}
graphqlClient, err := createGraphqlClient(ctx, httpClient, apiEndpoint)
if err != nil {
return nil, fmt.Errorf("error creating GraphQL client: %w", err)
}
return &tokenConnector{
apiClient: apiClient,
graphqlClient: graphqlClient,
token: token,
isGitHubEnterprise: !strings.EqualFold(apiEndpoint, cloudV3Endpoint),
handleRateLimit: handleRateLimit,
authInUrl: authInUrl,
clonePath: clonePath,
}, nil
}
func (c *tokenConnector) APIClient() *github.Client {
return c.apiClient
}
func (c *tokenConnector) Clone(ctx context.Context, repoURL string, args ...string) (string, *gogit.Repository, error) {
if err := c.setUserIfUnset(ctx); err != nil {
return "", nil, err
}
return git.CloneRepoUsingToken(ctx, c.token, repoURL, c.clonePath, c.user, c.authInUrl, args...)
}
func (c *tokenConnector) GraphQLClient() *githubv4.Client {
return c.graphqlClient
}
func (c *tokenConnector) IsGithubEnterprise() bool {
return c.isGitHubEnterprise
}
func (c *tokenConnector) getUser(ctx context.Context) (string, error) {
var (
user *github.User
err error
)
for {
user, _, err = c.apiClient.Users.Get(ctx, "")
if c.handleRateLimit(ctx, err) {
continue
}
if err != nil {
return "", fmt.Errorf("could not get GitHub user: %w", err)
}
break
}
return user.GetLogin(), nil
}
func (c *tokenConnector) setUserIfUnset(ctx context.Context) error {
c.userMu.Lock()
defer c.userMu.Unlock()
if c.user != "" {
return nil
}
user, err := c.getUser(ctx)
if err != nil {
return err
}
c.user = user
return nil
}