woodpecker/server/forge/forge.go

96 lines
4 KiB
Go
Raw Normal View History

// Copyright 2022 Woodpecker Authors
2018-02-19 22:24:10 +00:00
// Copyright 2018 Drone.IO Inc.
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// 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
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// http://www.apache.org/licenses/LICENSE-2.0
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// 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 forge
2015-04-08 22:00:27 +00:00
//go:generate mockery --name Forge --output mocks --case underscore
2015-04-08 22:00:27 +00:00
import (
"context"
2015-04-08 22:00:27 +00:00
"net/http"
"go.woodpecker-ci.org/woodpecker/v2/server/forge/types"
"go.woodpecker-ci.org/woodpecker/v2/server/model"
2015-04-08 22:00:27 +00:00
)
// TODO: use pagination
type Forge interface {
2022-06-17 18:14:01 +00:00
// Name returns the string name of this driver
Name() string
2023-05-31 16:30:41 +00:00
// URL returns the root url of a configured forge
URL() string
2015-04-08 22:00:27 +00:00
// Login authenticates the session and returns the
// forge user details and the URL to redirect to if not authorized yet.
Login(ctx context.Context, r *types.OAuthRequest) (*model.User, string, error)
2015-04-08 22:00:27 +00:00
// Auth authenticates the session and returns the forge user
2015-09-30 01:21:17 +00:00
// login for the given token and secret
Auth(ctx context.Context, token, secret string) (string, error)
// Teams fetches a list of team memberships from the forge.
Teams(ctx context.Context, u *model.User) ([]*model.Team, error)
2016-04-29 19:39:56 +00:00
// Repo fetches the repository from the forge, preferred is using the ID, fallback is owner/name.
Repo(ctx context.Context, u *model.User, remoteID model.ForgeRemoteID, owner, name string) (*model.Repo, error)
2015-09-30 01:21:17 +00:00
// Repos fetches a list of repos from the forge.
Repos(ctx context.Context, u *model.User) ([]*model.Repo, error)
2015-04-08 22:00:27 +00:00
// File fetches a file from the forge repository and returns it in string
// format.
File(ctx context.Context, u *model.User, r *model.Repo, b *model.Pipeline, f string) ([]byte, error)
2015-04-08 22:00:27 +00:00
// Dir fetches a folder from the forge repository
2022-11-06 11:44:04 +00:00
Dir(ctx context.Context, u *model.User, r *model.Repo, b *model.Pipeline, f string) ([]*types.FileMeta, error)
// Status sends the commit status to the forge.
2015-04-08 22:00:27 +00:00
// An example would be the GitHub pull request status.
Status(ctx context.Context, u *model.User, r *model.Repo, b *model.Pipeline, p *model.Workflow) error
2015-04-08 22:00:27 +00:00
2015-04-28 21:39:48 +00:00
// Netrc returns a .netrc file that can be used to clone
// private repositories from a forge.
2015-09-30 01:21:17 +00:00
Netrc(u *model.User, r *model.Repo) (*model.Netrc, error)
2015-04-28 21:39:48 +00:00
2016-05-01 06:22:30 +00:00
// Activate activates a repository by creating the post-commit hook.
Activate(ctx context.Context, u *model.User, r *model.Repo, link string) error
2015-04-08 22:00:27 +00:00
2016-05-01 06:22:30 +00:00
// Deactivate deactivates a repository by removing all previously created
// post-commit hooks matching the given link.
Deactivate(ctx context.Context, u *model.User, r *model.Repo, link string) error
2015-04-08 22:00:27 +00:00
// Branches returns the names of all branches for the named repository.
Branches(ctx context.Context, u *model.User, r *model.Repo, p *model.ListOptions) ([]string, error)
// BranchHead returns the sha of the head (latest commit) of the specified branch
BranchHead(ctx context.Context, u *model.User, r *model.Repo, branch string) (*model.Commit, error)
// PullRequests returns all pull requests for the named repository.
PullRequests(ctx context.Context, u *model.User, r *model.Repo, p *model.ListOptions) ([]*model.PullRequest, error)
2016-04-29 19:39:56 +00:00
// Hook parses the post-commit hook from the Request body and returns the
// required data in a standard format.
Hook(ctx context.Context, r *http.Request) (repo *model.Repo, pipeline *model.Pipeline, err error)
// OrgMembership returns if user is member of organization and if user
// is admin/owner in that organization.
OrgMembership(ctx context.Context, u *model.User, org string) (*model.OrgPerm, error)
// Org fetches the organization from the forge by name. If the name is a user an org with type user is returned.
Org(ctx context.Context, u *model.User, org string) (*model.Org, error)
2015-04-08 22:00:27 +00:00
}