gitsource

package
v0.3.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 24, 2019 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ErrUnauthorized = errors.New("unauthorized")

Functions

This section is empty.

Types

type Commit

type Commit struct {
	SHA     string
	Message string
}

type CommitStatus

type CommitStatus string
const (
	CommitStatusPending CommitStatus = "pending"
	CommitStatusSuccess CommitStatus = "success"
	CommitStatusError   CommitStatus = "error"
	CommitStatusFailed  CommitStatus = "failed"
)

type GitSource

type GitSource interface {
	GetRepoInfo(repopath string) (*RepoInfo, error)
	GetFile(repopath, commit, file string) ([]byte, error)
	DeleteDeployKey(repopath, title string) error
	CreateDeployKey(repopath, title, pubKey string, readonly bool) error
	UpdateDeployKey(repopath, title, pubKey string, readonly bool) error
	DeleteRepoWebhook(repopath, url string) error
	CreateRepoWebhook(repopath, url, secret string) error
	ParseWebhook(r *http.Request, secret string) (*types.WebhookData, error)
	CreateCommitStatus(repopath, commitSHA string, status CommitStatus, targetURL, description, context string) error
	// ListUserRepos report repos where the user has the permission to create deploy keys and webhooks
	ListUserRepos() ([]*RepoInfo, error)
	GetRef(repopath, ref string) (*Ref, error)
	// RefType returns the ref type and the related name (branch, tag, pr id)
	RefType(ref string) (RefType, string, error)
	GetCommit(repopath, commitSHA string) (*Commit, error)

	BranchRef(branch string) string
	TagRef(tag string) string
	PullRequestRef(prID string) string

	CommitLink(repoInfo *RepoInfo, commitSHA string) string
	BranchLink(repoInfo *RepoInfo, branch string) string
	TagLink(repoInfo *RepoInfo, tag string) string
	PullRequestLink(repoInfo *RepoInfo, prID string) string
}

type Oauth2Source

type Oauth2Source interface {
	UserSource
	// GetOauth2AuthorizationURL return the authorization request URL to the
	// authorization server
	GetOauth2AuthorizationURL(callbackURL, state string) (redirectURL string, err error)
	// RequestOauth2Token requests the oauth2 token to the authorization server
	RequestOauth2Token(callbackURL, code string) (*oauth2.Token, error)
	// RefreshOauth2Token refreshed the oauth2 token
	RefreshOauth2Token(refreshToken string) (*oauth2.Token, error)
}

type PasswordSource

type PasswordSource interface {
	UserSource
	LoginPassword(username, password, tokenName string) (string, error)
}

type Ref

type Ref struct {
	Ref       string
	CommitSHA string
}

type RefType

type RefType int
const (
	RefTypeBranch RefType = iota
	RefTypeTag
	RefTypePullRequest
)

type RepoInfo

type RepoInfo struct {
	ID           string
	Path         string
	HTMLURL      string
	SSHCloneURL  string
	HTTPCloneURL string
}

type UserInfo

type UserInfo struct {
	ID        string
	LoginName string
	Email     string
}

type UserSource

type UserSource interface {
	GetUserInfo() (*UserInfo, error)
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL