mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-06 00:49:48 +00:00
47 lines
1.7 KiB
Go
47 lines
1.7 KiB
Go
package remote
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
common "github.com/drone/drone/pkg/types"
|
|
)
|
|
|
|
type Remote interface {
|
|
// Login authenticates the session and returns the
|
|
// remote user details.
|
|
Login(token, secret string) (*common.User, error)
|
|
|
|
// Orgs fetches the organizations for the given user.
|
|
Orgs(u *common.User) ([]string, error)
|
|
|
|
// Repo fetches the named repository from the remote system.
|
|
Repo(u *common.User, owner, repo string) (*common.Repo, error)
|
|
|
|
// Perm fetches the named repository permissions from
|
|
// the remote system for the specified user.
|
|
Perm(u *common.User, owner, repo string) (*common.Perm, error)
|
|
|
|
// Script fetches the build script (.drone.yml) from the remote
|
|
// repository and returns in string format.
|
|
Script(u *common.User, r *common.Repo, b *common.Build) ([]byte, error)
|
|
|
|
// Status sends the commit status to the remote system.
|
|
// An example would be the GitHub pull request status.
|
|
Status(u *common.User, r *common.Repo, b *common.Build) error
|
|
|
|
// Netrc returns a .netrc file that can be used to clone
|
|
// private repositories from a remote system.
|
|
Netrc(u *common.User) (*common.Netrc, error)
|
|
|
|
// Activate activates a repository by creating the post-commit hook and
|
|
// adding the SSH deploy key, if applicable.
|
|
Activate(u *common.User, r *common.Repo, k *common.Keypair, link string) error
|
|
|
|
// Deactivate removes a repository by removing all the post-commit hooks
|
|
// which are equal to link and removing the SSH deploy key.
|
|
Deactivate(u *common.User, r *common.Repo, link string) error
|
|
|
|
// Hook parses the post-commit hook from the Request body
|
|
// and returns the required data in a standard format.
|
|
Hook(r *http.Request) (*common.Hook, error)
|
|
}
|