woodpecker/remote/github/github.go

326 lines
8.9 KiB
Go
Raw Normal View History

2015-09-30 01:21:17 +00:00
package github
import (
2015-10-30 21:47:46 +00:00
"crypto/tls"
"encoding/base32"
2015-09-30 01:21:17 +00:00
"fmt"
"net"
2015-09-30 01:21:17 +00:00
"net/http"
"net/url"
2016-03-30 00:05:28 +00:00
"regexp"
2015-09-30 01:21:17 +00:00
"strconv"
"strings"
"github.com/drone/drone/model"
2016-04-29 19:39:56 +00:00
"github.com/drone/drone/remote"
2015-09-30 01:21:17 +00:00
"github.com/drone/drone/shared/httputil"
"github.com/gorilla/securecookie"
2015-09-30 01:21:17 +00:00
"github.com/google/go-github/github"
"golang.org/x/oauth2"
2015-09-30 01:21:17 +00:00
)
const (
defaultURL = "https://github.com" // Default GitHub URL
defaultAPI = "https://api.github.com" // Default GitHub API URL
2015-09-30 01:21:17 +00:00
)
// Opts defines configuration options.
type Opts struct {
URL string // GitHub server url.
Client string // GitHub oauth client id.
Secret string // GitHub oauth client secret.
Scopes []string // GitHub oauth scopes
Username string // Optional machine account username.
Password string // Optional machine account password.
PrivateMode bool // GitHub is running in private mode.
SkipVerify bool // Skip ssl verification.
MergeRef bool // Clone pull requests using the merge ref.
}
// New returns a Remote implementation that integrates with a GitHub Cloud or
// GitHub Enterprise version control hosting provider.
func New(opts Opts) (remote.Remote, error) {
url, err := url.Parse(opts.URL)
if err != nil {
return nil, err
}
host, _, err := net.SplitHostPort(url.Host)
if err == nil {
url.Host = host
}
remote := &client{
API: defaultAPI,
URL: defaultURL,
Client: opts.Client,
Secret: opts.Secret,
Scope: strings.Join(opts.Scopes, ","),
PrivateMode: opts.PrivateMode,
SkipVerify: opts.SkipVerify,
MergeRef: opts.MergeRef,
Machine: url.Host,
Username: opts.Username,
Password: opts.Password,
}
if opts.URL != defaultURL {
remote.URL = strings.TrimSuffix(opts.URL, "/")
remote.API = remote.URL + "/api/v3/"
}
return remote, nil
}
type client struct {
2015-09-30 01:21:17 +00:00
URL string
API string
Client string
Secret string
Scope string
Machine string
Username string
Password string
2015-09-30 01:21:17 +00:00
PrivateMode bool
SkipVerify bool
MergeRef bool
2015-09-30 01:21:17 +00:00
}
2016-04-29 19:39:56 +00:00
// Login authenticates the session and returns the remote user details.
func (c *client) Login(res http.ResponseWriter, req *http.Request) (*model.User, error) {
config := c.newConfig(httputil.GetURL(req))
2015-09-30 01:21:17 +00:00
code := req.FormValue("code")
2015-09-30 01:21:17 +00:00
if len(code) == 0 {
rand := base32.StdEncoding.EncodeToString(securecookie.GenerateRandomKey(32))
http.Redirect(res, req, config.AuthCodeURL(rand), http.StatusSeeOther)
2016-04-29 19:39:56 +00:00
return nil, nil
2015-09-30 01:21:17 +00:00
}
// TODO(bradrydzewski) what is the best way to provide a SkipVerify flag
// when exchanging the token?
token, err := config.Exchange(oauth2.NoContext, code)
2015-09-30 01:21:17 +00:00
if err != nil {
return nil, err
2015-09-30 01:21:17 +00:00
}
client := c.newClientToken(token.AccessToken)
useremail, err := GetUserEmail(client)
if err != nil {
return nil, err
2015-09-30 01:21:17 +00:00
}
return &model.User{
Login: *useremail.Login,
Email: *useremail.Email,
Token: token.AccessToken,
Avatar: *useremail.AvatarURL,
}, nil
2015-09-30 01:21:17 +00:00
}
// Auth returns the GitHub user login for the given access token.
func (c *client) Auth(token, secret string) (string, error) {
client := c.newClientToken(token)
2015-09-30 01:21:17 +00:00
user, _, err := client.Users.Get("")
if err != nil {
return "", err
}
return *user.Login, nil
}
// Teams returns a list of all team membership for the GitHub account.
func (c *client) Teams(u *model.User) ([]*model.Team, error) {
client := c.newClientToken(u.Token)
opts := new(github.ListOptions)
opts.Page = 1
2016-04-29 19:39:56 +00:00
var teams []*model.Team
for opts.Page > 0 {
list, resp, err := client.Organizations.List("", opts)
if err != nil {
return nil, err
}
teams = append(teams, convertTeamList(list)...)
opts.Page = resp.NextPage
2016-04-29 19:39:56 +00:00
}
return teams, nil
}
// Repo returns the named GitHub repository.
func (c *client) Repo(u *model.User, owner, name string) (*model.Repo, error) {
client := c.newClientToken(u.Token)
repo, _, err := client.Repositories.Get(owner, name)
2015-09-30 01:21:17 +00:00
if err != nil {
return nil, err
}
return convertRepo(repo, c.PrivateMode), nil
}
2015-09-30 01:21:17 +00:00
// Repos returns a list of all repositories for GitHub account, including
// organization repositories.
func (c *client) Repos(u *model.User) ([]*model.RepoLite, error) {
client := c.newClientToken(u.Token)
2015-09-30 01:21:17 +00:00
opts := new(github.RepositoryListOptions)
opts.PerPage = 100
opts.Page = 1
var repos []*model.RepoLite
for opts.Page > 0 {
list, resp, err := client.Repositories.List("", opts)
if err != nil {
return nil, err
}
repos = append(repos, convertRepoList(list)...)
opts.Page = resp.NextPage
}
return repos, nil
2015-09-30 01:21:17 +00:00
}
// Perm returns the user permissions for the named GitHub repository.
func (c *client) Perm(u *model.User, owner, name string) (*model.Perm, error) {
client := c.newClientToken(u.Token)
repo, _, err := client.Repositories.Get(owner, name)
2015-09-30 01:21:17 +00:00
if err != nil {
return nil, err
}
return convertPerm(repo), nil
2015-09-30 01:21:17 +00:00
}
// File fetches the file from the Bitbucket repository and returns its contents.
func (c *client) File(u *model.User, r *model.Repo, b *model.Build, f string) ([]byte, error) {
client := c.newClientToken(u.Token)
2015-09-30 01:21:17 +00:00
opts := new(github.RepositoryContentGetOptions)
opts.Ref = b.Commit
data, _, _, err := client.Repositories.GetContents(r.Owner, r.Name, f, opts)
2015-09-30 01:21:17 +00:00
if err != nil {
return nil, err
}
return data.Decode()
2015-09-30 01:21:17 +00:00
}
// Netrc returns a netrc file capable of authenticating GitHub requests and
// cloning GitHub repositories. The netrc will use the global machine account
// when configured.
func (c *client) Netrc(u *model.User, r *model.Repo) (*model.Netrc, error) {
if c.Password != "" {
return &model.Netrc{
Login: c.Username,
Password: c.Password,
Machine: c.Machine,
}, nil
}
return &model.Netrc{
Login: u.Token,
Password: "x-oauth-basic",
Machine: c.Machine,
}, nil
2015-09-30 01:21:17 +00:00
}
// helper function to return the bitbucket oauth2 config
func (c *client) newConfig(redirect string) *oauth2.Config {
return &oauth2.Config{
ClientID: c.Client,
ClientSecret: c.Secret,
Endpoint: oauth2.Endpoint{
AuthURL: fmt.Sprintf("%s/login/oauth/authorize", c.URL),
TokenURL: fmt.Sprintf("%s/login/oauth/access_token", c.URL),
},
RedirectURL: fmt.Sprintf("%s/authorize", redirect),
}
}
// helper function to return the bitbucket oauth2 client
func (c *client) newClientToken(token string) *github.Client {
ts := oauth2.StaticTokenSource(
&oauth2.Token{AccessToken: token},
)
tc := oauth2.NewClient(oauth2.NoContext, ts)
if c.SkipVerify {
tc.Transport.(*oauth2.Transport).Base = &http.Transport{
Proxy: http.ProxyFromEnvironment,
TLSClientConfig: &tls.Config{
InsecureSkipVerify: true,
},
}
}
github := github.NewClient(tc)
github.BaseURL, _ = url.Parse(c.API)
return github
}
//
// TODO(bradrydzewski) refactor below functions
//
2015-09-30 01:21:17 +00:00
// Status sends the commit status to the remote system.
// An example would be the GitHub pull request status.
func (c *client) Status(u *model.User, r *model.Repo, b *model.Build, link string) error {
client := c.newClientToken(u.Token)
switch b.Event {
case "deployment":
2016-03-30 00:05:28 +00:00
return deploymentStatus(client, r, b, link)
default:
2016-03-30 00:05:28 +00:00
return repoStatus(client, r, b, link)
}
}
2015-09-30 01:21:17 +00:00
func repoStatus(client *github.Client, r *model.Repo, b *model.Build, link string) error {
2015-09-30 01:21:17 +00:00
data := github.RepoStatus{
Context: github.String("continuous-integration/drone"),
State: github.String(convertStatus(b.Status)),
Description: github.String(convertDesc(b.Status)),
2015-09-30 01:21:17 +00:00
TargetURL: github.String(link),
}
_, _, err := client.Repositories.CreateStatus(r.Owner, r.Name, b.Commit, &data)
return err
}
2016-04-29 19:39:56 +00:00
var reDeploy = regexp.MustCompile(".+/deployments/(\\d+)")
func deploymentStatus(client *github.Client, r *model.Repo, b *model.Build, link string) error {
2016-04-29 19:39:56 +00:00
matches := reDeploy.FindStringSubmatch(b.Link)
2016-03-30 00:05:28 +00:00
if len(matches) != 2 {
return nil
}
id, _ := strconv.Atoi(matches[1])
data := github.DeploymentStatusRequest{
State: github.String(convertStatus(b.Status)),
Description: github.String(convertDesc(b.Status)),
2016-03-30 00:05:28 +00:00
TargetURL: github.String(link),
}
_, _, err := client.Repositories.CreateDeploymentStatus(r.Owner, r.Name, id, &data)
return err
}
2015-09-30 01:21:17 +00:00
// Activate activates a repository by creating the post-commit hook and
// adding the SSH deploy key, if applicable.
func (c *client) Activate(u *model.User, r *model.Repo, link string) error {
client := c.newClientToken(u.Token)
2016-04-29 19:39:56 +00:00
_, err := CreateUpdateHook(client, r.Owner, r.Name, link)
2015-09-30 01:21:17 +00:00
return err
}
// Deactivate removes a repository by removing all the post-commit hooks
// which are equal to link and removing the SSH deploy key.
func (c *client) Deactivate(u *model.User, r *model.Repo, link string) error {
client := c.newClientToken(u.Token)
2015-09-30 01:21:17 +00:00
return DeleteHook(client, r.Owner, r.Name, link)
}
// Hook parses the post-commit hook from the Request body
// and returns the required data in a standard format.
func (c *client) Hook(r *http.Request) (*model.Repo, *model.Build, error) {
2015-09-30 01:21:17 +00:00
switch r.Header.Get("X-Github-Event") {
case "pull_request":
return c.pullRequest(r)
2015-09-30 01:21:17 +00:00
case "push":
return c.push(r)
2015-10-27 00:31:26 +00:00
case "deployment":
return c.deployment(r)
2015-09-30 01:21:17 +00:00
default:
return nil, nil, nil
}
}