woodpecker/server/remote/remote.go

112 lines
4.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.
2015-04-08 22:00:27 +00:00
package remote
//go:generate go install github.com/vektra/mockery/v2@latest
//go:generate mockery --name Remote --output mocks --case underscore
2015-04-08 22:00:27 +00:00
import (
"context"
2015-04-08 22:00:27 +00:00
"net/http"
"github.com/woodpecker-ci/woodpecker/server/model"
2015-04-08 22:00:27 +00:00
)
// TODO: use pagination
// TODO: add Driver() who return source forge back
2015-04-08 22:00:27 +00:00
type Remote interface {
2022-06-17 18:14:01 +00:00
// Name returns the string name of this driver
Name() string
2015-04-08 22:00:27 +00:00
// Login authenticates the session and returns the
// remote user details.
Login(ctx context.Context, w http.ResponseWriter, r *http.Request) (*model.User, error)
2015-04-08 22:00:27 +00:00
2015-09-30 01:21:17 +00:00
// Auth authenticates the session and returns the remote user
// login for the given token and secret
Auth(ctx context.Context, token, secret string) (string, error)
2016-04-29 19:39:56 +00:00
// Teams fetches a list of team memberships from the remote system.
Teams(ctx context.Context, u *model.User) ([]*model.Team, error)
2016-04-29 19:39:56 +00:00
// Repo fetches the repository from the remote system, preferred is using the ID, fallback is owner/name.
Repo(ctx context.Context, u *model.User, id model.RemoteID, owner, name string) (*model.Repo, error)
2015-09-30 01:21:17 +00:00
// Repos fetches a list of repos from the remote system.
Repos(ctx context.Context, u *model.User) ([]*model.Repo, error)
2015-04-08 22:00:27 +00:00
// Perm fetches the named repository permissions from
// the remote system for the specified user.
Perm(ctx context.Context, u *model.User, r *model.Repo) (*model.Perm, error)
2015-04-08 22:00:27 +00:00
// File fetches a file from the remote repository and returns 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 remote repository
Dir(ctx context.Context, u *model.User, r *model.Repo, b *model.Pipeline, f string) ([]*FileMeta, error)
2015-04-08 22:00:27 +00:00
// Status sends the commit status to the remote system.
// An example would be the GitHub pull request status.
Status(ctx context.Context, u *model.User, r *model.Repo, b *model.Pipeline, p *model.Step) 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 remote system.
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.
// TODO: Add proper pagination handling and remove workaround in gitea remote
Branches(ctx context.Context, u *model.User, r *model.Repo) ([]string, error)
// BranchHead returns the sha of the head (lastest commit) of the specified branch
BranchHead(ctx context.Context, u *model.User, r *model.Repo, branch string) (string, 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) (*model.Repo, *model.Pipeline, 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, owner string) (*model.OrgPerm, error)
2015-04-08 22:00:27 +00:00
}
// FileMeta represents a file in version control
type FileMeta struct {
Name string
Data []byte
}
type ByName []*FileMeta
func (a ByName) Len() int { return len(a) }
func (a ByName) Less(i, j int) bool { return a[i].Name < a[j].Name }
func (a ByName) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
2016-04-29 19:39:56 +00:00
// Refresher refreshes an oauth token and expiration for the given user. It
// returns true if the token was refreshed, false if the token was not refreshed,
// and error if it failed to refersh.
type Refresher interface {
Refresh(context.Context, *model.User) (bool, error)
}