-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #226 from fluxcd/soule-gitea
Adding gitea provider
- Loading branch information
Showing
39 changed files
with
4,357 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
name: e2e-gitea | ||
|
||
"on": | ||
workflow_dispatch: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
tags-ignore: ["*"] | ||
|
||
jobs: | ||
test: | ||
timeout-minutes: 60 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 | ||
- name: Restore Go cache | ||
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1 | ||
with: | ||
path: ~/go/pkg/mod | ||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | ||
restore-keys: | | ||
${{ runner.os }}-go- | ||
- name: Setup Go | ||
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1 | ||
with: | ||
go-version: 1.20.x | ||
- name: Start Provider instances | ||
run: make start-provider-instances-gitea GITEA_VERSION=latest | ||
- name: Run tests [gitea] | ||
run: | | ||
export GITEA_TOKEN=$(cat /tmp/gitea-token) | ||
make test-e2e-gitea | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4 | ||
with: | ||
files: ./coverage.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
/* | ||
Copyright 2023 The Flux CD contributors. | ||
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 gitea | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"strings" | ||
|
||
"code.gitea.io/sdk/gitea" | ||
"github.com/fluxcd/go-git-providers/gitprovider" | ||
) | ||
|
||
const ( | ||
// DefaultDomain specifies the default domain used as the backend. | ||
DefaultDomain = "gitea.com" | ||
// ProviderID is the provider ID for Gitea. | ||
ProviderID = gitprovider.ProviderID("gitea") | ||
) | ||
|
||
// NewClient creates a new gitprovider.Client instance for Gitea API endpoints. | ||
// | ||
// Gitea Selfhosted can be used if you specify the domain using WithDomain. | ||
func NewClient(token string, optFns ...gitprovider.ClientOption) (gitprovider.Client, error) { | ||
// Complete the options struct | ||
opts, err := gitprovider.MakeClientOptions(optFns...) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
// Create a *http.Client using the transport chain | ||
httpClient, err := gitprovider.BuildClientFromTransportChain(opts.GetTransportChain()) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
domain := DefaultDomain | ||
if opts.Domain != nil { | ||
domain = *opts.Domain | ||
} | ||
baseURL := domain | ||
if !strings.Contains(domain, "://") { | ||
baseURL = fmt.Sprintf("https://%s/", domain) | ||
} | ||
|
||
gt, err := gitea.NewClient(baseURL, gitea.SetHTTPClient(httpClient), gitea.SetToken(token)) | ||
if err != nil { | ||
return nil, err | ||
} | ||
// By default, turn destructive actions off. But allow overrides. | ||
destructiveActions := false | ||
if opts.EnableDestructiveAPICalls != nil { | ||
destructiveActions = *opts.EnableDestructiveAPICalls | ||
} | ||
|
||
return newClient(gt, domain, destructiveActions), nil | ||
} | ||
|
||
func newClient(c *gitea.Client, domain string, destructiveActions bool) *Client { | ||
ctx := &clientContext{c, domain, destructiveActions} | ||
return &Client{ | ||
clientContext: ctx, | ||
orgs: &OrganizationsClient{ | ||
clientContext: ctx, | ||
}, | ||
orgRepos: &OrgRepositoriesClient{ | ||
clientContext: ctx, | ||
}, | ||
userRepos: &UserRepositoriesClient{ | ||
clientContext: ctx, | ||
}, | ||
} | ||
} | ||
|
||
type clientContext struct { | ||
c *gitea.Client | ||
domain string | ||
destructiveActions bool | ||
} | ||
|
||
// Client implements the gitprovider.Client interface. | ||
var _ gitprovider.Client = &Client{} | ||
|
||
// Client is an interface that allows talking to a Git provider. | ||
type Client struct { | ||
*clientContext | ||
|
||
orgs *OrganizationsClient | ||
orgRepos *OrgRepositoriesClient | ||
userRepos *UserRepositoriesClient | ||
} | ||
|
||
// SupportedDomain returns the domain endpoint for this client, e.g. "gitea.com", "gitea.dev.com" or | ||
// "my-custom-git-server.com:6443". This allows a higher-level user to know what Client to use for | ||
// what endpoints. | ||
// This field is set at client creation time, and can't be changed. | ||
func (c *Client) SupportedDomain() string { | ||
return c.domain | ||
} | ||
|
||
// ProviderID returns the provider ID "gitea". | ||
// This field is set at client creation time, and can't be changed. | ||
func (c *Client) ProviderID() gitprovider.ProviderID { | ||
return ProviderID | ||
} | ||
|
||
// Raw returns the Gitea client (code.gitea.io/sdk/gitea *Client) | ||
// used under the hood for accessing Gitea. | ||
func (c *Client) Raw() interface{} { | ||
return c.c | ||
} | ||
|
||
// Organizations returns the OrganizationsClient handling sets of organizations. | ||
func (c *Client) Organizations() gitprovider.OrganizationsClient { | ||
return c.orgs | ||
} | ||
|
||
// OrgRepositories returns the OrgRepositoriesClient handling sets of repositories in an organization. | ||
func (c *Client) OrgRepositories() gitprovider.OrgRepositoriesClient { | ||
return c.orgRepos | ||
} | ||
|
||
// UserRepositories returns the UserRepositoriesClient handling sets of repositories for a user. | ||
func (c *Client) UserRepositories() gitprovider.UserRepositoriesClient { | ||
return c.userRepos | ||
} | ||
|
||
// HasTokenPermission returns true if the given token has the given permissions. | ||
func (c *Client) HasTokenPermission(ctx context.Context, permission gitprovider.TokenPermission) (bool, error) { | ||
return false, gitprovider.ErrNoProviderSupport | ||
} |
Oops, something went wrong.