1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-01-29 18:04:15 +02:00
woodpecker/pkg/remote/remote.go

48 lines
1.7 KiB
Go
Raw Normal View History

2015-04-08 15:00:27 -07:00
package remote
import (
"net/http"
2015-05-17 13:51:42 -07:00
common "github.com/drone/drone/pkg/types"
2015-04-08 15:00:27 -07:00
)
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)
2015-04-08 15:00:27 -07:00
// 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.
2015-04-08 15:00:27 -07:00
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, c *common.Commit) ([]byte, error)
2015-04-08 15:00:27 -07:00
// Status sends the commit status to the remote system.
// An example would be the GitHub pull request status.
2015-05-12 23:58:30 -07:00
Status(u *common.User, r *common.Repo, c *common.Commit) error
2015-04-08 15:00:27 -07:00
2015-04-28 14:39:48 -07:00
// Netrc returns a .netrc file that can be used to clone
// private repositories from a remote system.
2015-04-28 15:08:21 -07:00
Netrc(u *common.User) (*common.Netrc, error)
2015-04-28 14:39:48 -07:00
2015-04-08 15:00:27 -07:00
// 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)
}