2015-07-25 08:49:39 +00:00
|
|
|
package gitlab
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/tls"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
2015-07-26 23:52:18 +00:00
|
|
|
"net/url"
|
2015-07-25 08:49:39 +00:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
|
2015-09-30 01:21:17 +00:00
|
|
|
"github.com/drone/drone/model"
|
|
|
|
"github.com/drone/drone/shared/envconfig"
|
|
|
|
"github.com/drone/drone/shared/httputil"
|
|
|
|
"github.com/drone/drone/shared/oauth2"
|
|
|
|
"github.com/drone/drone/shared/token"
|
|
|
|
|
|
|
|
"github.com/Bugagazavr/go-gitlab-client"
|
2015-07-25 08:49:39 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2015-07-26 12:32:49 +00:00
|
|
|
DefaultScope = "api"
|
2015-07-25 08:49:39 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Gitlab struct {
|
|
|
|
URL string
|
|
|
|
Client string
|
|
|
|
Secret string
|
|
|
|
AllowedOrgs []string
|
2015-09-02 03:42:18 +00:00
|
|
|
CloneMode string
|
2015-07-25 08:49:39 +00:00
|
|
|
Open bool
|
|
|
|
PrivateMode bool
|
|
|
|
SkipVerify bool
|
2015-07-30 00:46:22 +00:00
|
|
|
Search bool
|
2015-07-25 08:49:39 +00:00
|
|
|
}
|
|
|
|
|
2015-09-30 01:21:17 +00:00
|
|
|
func Load(env envconfig.Env) *Gitlab {
|
|
|
|
config := env.String("REMOTE_CONFIG", "")
|
2015-07-25 08:49:39 +00:00
|
|
|
|
2015-08-06 22:53:39 +00:00
|
|
|
url_, err := url.Parse(config)
|
2015-07-25 08:49:39 +00:00
|
|
|
if err != nil {
|
2015-09-30 01:21:17 +00:00
|
|
|
panic(err)
|
2015-07-25 08:49:39 +00:00
|
|
|
}
|
2015-08-06 22:53:39 +00:00
|
|
|
params := url_.Query()
|
|
|
|
url_.RawQuery = ""
|
2015-07-25 08:49:39 +00:00
|
|
|
|
2015-08-06 22:53:39 +00:00
|
|
|
gitlab := Gitlab{}
|
|
|
|
gitlab.URL = url_.String()
|
2015-08-09 03:51:12 +00:00
|
|
|
gitlab.Client = params.Get("client_id")
|
|
|
|
gitlab.Secret = params.Get("client_secret")
|
2015-08-06 22:53:39 +00:00
|
|
|
gitlab.AllowedOrgs = params["orgs"]
|
|
|
|
gitlab.SkipVerify, _ = strconv.ParseBool(params.Get("skip_verify"))
|
|
|
|
gitlab.Open, _ = strconv.ParseBool(params.Get("open"))
|
|
|
|
|
2015-09-02 03:42:18 +00:00
|
|
|
switch params.Get("clone_mode") {
|
|
|
|
case "oauth":
|
|
|
|
gitlab.CloneMode = "oauth"
|
|
|
|
default:
|
|
|
|
gitlab.CloneMode = "token"
|
|
|
|
}
|
|
|
|
|
2015-08-06 22:53:39 +00:00
|
|
|
// this is a temp workaround
|
|
|
|
gitlab.Search, _ = strconv.ParseBool(params.Get("search"))
|
|
|
|
|
2015-09-30 01:21:17 +00:00
|
|
|
return &gitlab
|
2015-07-25 08:49:39 +00:00
|
|
|
}
|
|
|
|
|
2015-09-30 01:21:17 +00:00
|
|
|
// Login authenticates the session and returns the
|
|
|
|
// remote user details.
|
|
|
|
func (g *Gitlab) Login(res http.ResponseWriter, req *http.Request) (*model.User, bool, error) {
|
|
|
|
|
|
|
|
var config = &oauth2.Config{
|
|
|
|
ClientId: g.Client,
|
|
|
|
ClientSecret: g.Secret,
|
|
|
|
Scope: DefaultScope,
|
|
|
|
AuthURL: fmt.Sprintf("%s/oauth/authorize", g.URL),
|
|
|
|
TokenURL: fmt.Sprintf("%s/oauth/token", g.URL),
|
|
|
|
RedirectURL: fmt.Sprintf("%s/authorize", httputil.GetURL(req)),
|
|
|
|
}
|
|
|
|
|
|
|
|
trans_ := &http.Transport{
|
|
|
|
Proxy: http.ProxyFromEnvironment,
|
|
|
|
TLSClientConfig: &tls.Config{InsecureSkipVerify: g.SkipVerify},
|
|
|
|
}
|
|
|
|
|
|
|
|
// get the OAuth code
|
|
|
|
var code = req.FormValue("code")
|
|
|
|
if len(code) == 0 {
|
|
|
|
http.Redirect(res, req, config.AuthCodeURL("drone"), http.StatusSeeOther)
|
|
|
|
return nil, false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var trans = &oauth2.Transport{Config: config, Transport: trans_}
|
|
|
|
var token_, err = trans.Exchange(code)
|
2015-07-25 08:49:39 +00:00
|
|
|
if err != nil {
|
2015-09-30 01:21:17 +00:00
|
|
|
return nil, false, fmt.Errorf("Error exchanging token. %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
client := NewClient(g.URL, token_.AccessToken, g.SkipVerify)
|
|
|
|
login, err := client.CurrentUser()
|
|
|
|
if err != nil {
|
|
|
|
return nil, false, err
|
2015-07-25 08:49:39 +00:00
|
|
|
}
|
2015-09-30 01:21:17 +00:00
|
|
|
user := &model.User{}
|
2015-07-25 08:49:39 +00:00
|
|
|
user.Login = login.Username
|
|
|
|
user.Email = login.Email
|
2015-09-30 01:21:17 +00:00
|
|
|
user.Token = token_.AccessToken
|
|
|
|
user.Secret = token_.RefreshToken
|
2015-08-10 07:15:33 +00:00
|
|
|
|
|
|
|
if strings.HasPrefix(login.AvatarUrl, "http") {
|
|
|
|
user.Avatar = login.AvatarUrl
|
|
|
|
} else {
|
2015-09-02 03:42:18 +00:00
|
|
|
user.Avatar = g.URL + "/" + login.AvatarUrl
|
2015-08-10 07:15:33 +00:00
|
|
|
}
|
2015-09-30 01:21:17 +00:00
|
|
|
|
|
|
|
return user, true, nil
|
2015-07-25 08:49:39 +00:00
|
|
|
}
|
|
|
|
|
2015-09-30 01:21:17 +00:00
|
|
|
func (g *Gitlab) Auth(token, secret string) (string, error) {
|
|
|
|
client := NewClient(g.URL, token, g.SkipVerify)
|
|
|
|
login, err := client.CurrentUser()
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return login.Username, nil
|
2015-07-25 08:49:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Repo fetches the named repository from the remote system.
|
2015-09-30 01:21:17 +00:00
|
|
|
func (g *Gitlab) Repo(u *model.User, owner, name string) (*model.Repo, error) {
|
2015-09-02 03:42:18 +00:00
|
|
|
client := NewClient(g.URL, u.Token, g.SkipVerify)
|
|
|
|
id, err := GetProjectId(g, client, owner, name)
|
2015-07-30 00:46:22 +00:00
|
|
|
if err != nil {
|
2015-07-28 06:38:15 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2015-07-25 08:49:39 +00:00
|
|
|
repo_, err := client.Project(id)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-09-30 01:21:17 +00:00
|
|
|
repo := &model.Repo{}
|
2015-07-25 08:49:39 +00:00
|
|
|
repo.Owner = owner
|
|
|
|
repo.Name = name
|
|
|
|
repo.FullName = repo_.PathWithNamespace
|
|
|
|
repo.Link = repo_.Url
|
|
|
|
repo.Clone = repo_.HttpRepoUrl
|
|
|
|
repo.Branch = "master"
|
|
|
|
|
|
|
|
if repo_.DefaultBranch != "" {
|
|
|
|
repo.Branch = repo_.DefaultBranch
|
|
|
|
}
|
|
|
|
|
2015-09-02 03:42:18 +00:00
|
|
|
if g.PrivateMode {
|
2015-09-30 01:21:17 +00:00
|
|
|
repo.IsPrivate = true
|
2015-07-26 22:29:51 +00:00
|
|
|
} else {
|
2015-09-30 01:21:17 +00:00
|
|
|
repo.IsPrivate = !repo_.Public
|
2015-07-25 08:49:39 +00:00
|
|
|
}
|
2015-07-26 22:29:51 +00:00
|
|
|
|
2015-07-25 08:49:39 +00:00
|
|
|
return repo, err
|
|
|
|
}
|
|
|
|
|
2015-09-30 01:21:17 +00:00
|
|
|
// Repos fetches a list of repos from the remote system.
|
|
|
|
func (g *Gitlab) Repos(u *model.User) ([]*model.RepoLite, error) {
|
|
|
|
client := NewClient(g.URL, u.Token, g.SkipVerify)
|
|
|
|
|
|
|
|
var repos = []*model.RepoLite{}
|
|
|
|
|
|
|
|
all, err := client.AllProjects()
|
|
|
|
if err != nil {
|
|
|
|
return repos, err
|
2015-07-25 08:49:39 +00:00
|
|
|
}
|
|
|
|
|
2015-09-30 01:21:17 +00:00
|
|
|
for _, repo := range all {
|
|
|
|
var parts = strings.Split(repo.PathWithNamespace, "/")
|
|
|
|
var owner = parts[0]
|
|
|
|
var name = parts[1]
|
|
|
|
|
|
|
|
repos = append(repos, &model.RepoLite{
|
|
|
|
Owner: owner,
|
|
|
|
Name: name,
|
|
|
|
FullName: repo.PathWithNamespace,
|
|
|
|
})
|
|
|
|
|
|
|
|
// TODO: add repo.AvatarUrl
|
|
|
|
}
|
|
|
|
return repos, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Perm fetches the named repository from the remote system.
|
|
|
|
func (g *Gitlab) Perm(u *model.User, owner, name string) (*model.Perm, error) {
|
|
|
|
|
2015-09-02 03:42:18 +00:00
|
|
|
client := NewClient(g.URL, u.Token, g.SkipVerify)
|
|
|
|
id, err := GetProjectId(g, client, owner, name)
|
2015-07-30 00:46:22 +00:00
|
|
|
if err != nil {
|
2015-07-28 06:38:15 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-07-25 08:49:39 +00:00
|
|
|
repo, err := client.Project(id)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-09-30 01:21:17 +00:00
|
|
|
m := &model.Perm{}
|
2015-07-25 08:49:39 +00:00
|
|
|
m.Admin = IsAdmin(repo)
|
|
|
|
m.Pull = IsRead(repo)
|
|
|
|
m.Push = IsWrite(repo)
|
|
|
|
return m, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetScript fetches the build script (.drone.yml) from the remote
|
|
|
|
// repository and returns in string format.
|
2015-09-30 01:21:17 +00:00
|
|
|
func (g *Gitlab) Script(user *model.User, repo *model.Repo, build *model.Build) ([]byte, []byte, error) {
|
2015-09-02 03:42:18 +00:00
|
|
|
var client = NewClient(g.URL, user.Token, g.SkipVerify)
|
|
|
|
id, err := GetProjectId(g, client, repo.Owner, repo.Name)
|
2015-07-30 00:46:22 +00:00
|
|
|
if err != nil {
|
2015-09-07 19:13:27 +00:00
|
|
|
return nil, nil, err
|
2015-07-28 06:38:15 +00:00
|
|
|
}
|
|
|
|
|
2015-09-30 01:21:17 +00:00
|
|
|
cfg, err := client.RepoRawFile(id, build.Commit, ".drone.yml")
|
|
|
|
enc, _ := client.RepoRawFile(id, build.Commit, ".drone.sec")
|
2015-09-07 19:13:27 +00:00
|
|
|
return cfg, enc, err
|
2015-07-25 08:49:39 +00:00
|
|
|
}
|
|
|
|
|
2015-07-25 21:06:06 +00:00
|
|
|
// NOTE Currently gitlab doesn't support status for commits and events,
|
|
|
|
// also if we want get MR status in gitlab we need implement a special plugin for gitlab,
|
|
|
|
// gitlab uses API to fetch build status on client side. But for now we skip this.
|
2015-09-30 01:21:17 +00:00
|
|
|
func (g *Gitlab) Status(u *model.User, repo *model.Repo, b *model.Build, link string) error {
|
2015-07-25 08:49:39 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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
|
|
|
func (g *Gitlab) Netrc(u *model.User, r *model.Repo) (*model.Netrc, error) {
|
2015-09-02 03:42:18 +00:00
|
|
|
url_, err := url.Parse(g.URL)
|
2015-07-26 23:52:18 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-09-30 01:21:17 +00:00
|
|
|
netrc := &model.Netrc{}
|
2015-09-09 21:05:52 +00:00
|
|
|
netrc.Machine = url_.Host
|
2015-09-02 03:42:18 +00:00
|
|
|
|
|
|
|
switch g.CloneMode {
|
|
|
|
case "oauth":
|
|
|
|
netrc.Login = "oauth2"
|
|
|
|
netrc.Password = u.Token
|
|
|
|
case "token":
|
2015-09-09 21:05:52 +00:00
|
|
|
t := token.New(token.HookToken, r.FullName)
|
2015-09-02 03:42:18 +00:00
|
|
|
netrc.Login = "drone-ci-token"
|
2015-09-09 21:05:52 +00:00
|
|
|
netrc.Password, err = t.Sign(r.Hash)
|
2015-09-02 03:42:18 +00:00
|
|
|
}
|
2015-09-09 21:05:52 +00:00
|
|
|
return netrc, err
|
2015-07-25 08:49:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Activate activates a repository by adding a Post-commit hook and
|
|
|
|
// a Public Deploy key, if applicable.
|
2015-09-30 01:21:17 +00:00
|
|
|
func (g *Gitlab) Activate(user *model.User, repo *model.Repo, k *model.Key, link string) error {
|
2015-09-02 03:42:18 +00:00
|
|
|
var client = NewClient(g.URL, user.Token, g.SkipVerify)
|
|
|
|
id, err := GetProjectId(g, client, repo.Owner, repo.Name)
|
2015-07-30 00:46:22 +00:00
|
|
|
if err != nil {
|
2015-07-28 06:38:15 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-08-22 03:32:22 +00:00
|
|
|
uri, err := url.Parse(link)
|
2015-07-25 08:49:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-08-22 03:32:22 +00:00
|
|
|
droneUrl := fmt.Sprintf("%s://%s", uri.Scheme, uri.Host)
|
|
|
|
droneToken := uri.Query().Get("access_token")
|
2015-09-02 03:42:18 +00:00
|
|
|
ssl_verify := strconv.FormatBool(!g.SkipVerify)
|
2015-07-25 08:49:39 +00:00
|
|
|
|
2015-08-29 22:18:45 +00:00
|
|
|
return client.AddDroneService(id, map[string]string{
|
|
|
|
"token": droneToken,
|
|
|
|
"drone_url": droneUrl,
|
|
|
|
"enable_ssl_verification": ssl_verify,
|
|
|
|
})
|
2015-07-25 08:49:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Deactivate removes a repository by removing all the post-commit hooks
|
|
|
|
// which are equal to link and removing the SSH deploy key.
|
2015-09-30 01:21:17 +00:00
|
|
|
func (g *Gitlab) Deactivate(user *model.User, repo *model.Repo, link string) error {
|
2015-09-02 03:42:18 +00:00
|
|
|
var client = NewClient(g.URL, user.Token, g.SkipVerify)
|
|
|
|
id, err := GetProjectId(g, client, repo.Owner, repo.Name)
|
2015-07-30 00:46:22 +00:00
|
|
|
if err != nil {
|
2015-07-28 06:38:15 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-07-25 08:49:39 +00:00
|
|
|
|
2015-08-22 03:32:22 +00:00
|
|
|
return client.DeleteDroneService(id)
|
2015-07-25 08:49:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ParseHook parses the post-commit hook from the Request body
|
|
|
|
// and returns the required data in a standard format.
|
2015-09-30 01:21:17 +00:00
|
|
|
func (g *Gitlab) Hook(req *http.Request) (*model.Repo, *model.Build, error) {
|
2015-07-25 23:22:16 +00:00
|
|
|
defer req.Body.Close()
|
2015-07-25 08:49:39 +00:00
|
|
|
var payload, _ = ioutil.ReadAll(req.Body)
|
2015-07-25 23:22:16 +00:00
|
|
|
var parsed, err = gogitlab.ParseHook(payload)
|
|
|
|
if err != nil {
|
2015-09-30 01:21:17 +00:00
|
|
|
return nil, nil, err
|
2015-07-25 23:22:16 +00:00
|
|
|
}
|
|
|
|
|
2015-08-22 03:32:22 +00:00
|
|
|
switch parsed.ObjectKind {
|
|
|
|
case "merge_request":
|
|
|
|
return mergeRequest(parsed, req)
|
2015-08-22 19:55:08 +00:00
|
|
|
case "tag_push", "push":
|
2015-08-22 03:32:22 +00:00
|
|
|
return push(parsed, req)
|
|
|
|
default:
|
2015-09-30 01:21:17 +00:00
|
|
|
return nil, nil, nil
|
2015-07-25 23:02:33 +00:00
|
|
|
}
|
2015-08-22 03:32:22 +00:00
|
|
|
}
|
2015-07-25 23:02:33 +00:00
|
|
|
|
2015-09-30 01:21:17 +00:00
|
|
|
func mergeRequest(parsed *gogitlab.HookPayload, req *http.Request) (*model.Repo, *model.Build, error) {
|
|
|
|
|
|
|
|
repo := &model.Repo{}
|
|
|
|
repo.Owner = req.FormValue("owner")
|
|
|
|
repo.Name = req.FormValue("name")
|
|
|
|
repo.FullName = fmt.Sprintf("%s/%s", repo.Owner, repo.Name)
|
|
|
|
repo.Link = parsed.ObjectAttributes.Target.WebUrl
|
|
|
|
repo.Clone = parsed.ObjectAttributes.Target.HttpUrl
|
|
|
|
repo.Branch = "master"
|
|
|
|
|
|
|
|
build := &model.Build{}
|
|
|
|
build.Event = "pull_request"
|
|
|
|
build.Message = parsed.ObjectAttributes.LastCommit.Message
|
|
|
|
build.Commit = parsed.ObjectAttributes.LastCommit.Id
|
|
|
|
//build.Remote = parsed.ObjectAttributes.Source.HttpUrl
|
2015-08-22 03:32:22 +00:00
|
|
|
|
2015-08-30 00:34:05 +00:00
|
|
|
if parsed.ObjectAttributes.SourceProjectId == parsed.ObjectAttributes.TargetProjectId {
|
2015-09-30 01:21:17 +00:00
|
|
|
build.Ref = fmt.Sprintf("refs/heads/%s", parsed.ObjectAttributes.SourceBranch)
|
2015-08-22 03:32:22 +00:00
|
|
|
} else {
|
2015-09-30 01:21:17 +00:00
|
|
|
build.Ref = fmt.Sprintf("refs/merge-requests/%d/head", parsed.ObjectAttributes.IId)
|
2015-07-25 08:49:39 +00:00
|
|
|
}
|
|
|
|
|
2015-09-30 01:21:17 +00:00
|
|
|
build.Branch = parsed.ObjectAttributes.SourceBranch
|
|
|
|
// build.Timestamp = parsed.ObjectAttributes.LastCommit.Timestamp
|
2015-08-30 00:34:05 +00:00
|
|
|
|
2015-09-30 01:21:17 +00:00
|
|
|
build.Author = parsed.ObjectAttributes.LastCommit.Author.Name
|
|
|
|
build.Email = parsed.ObjectAttributes.LastCommit.Author.Email
|
|
|
|
build.Title = parsed.ObjectAttributes.Title
|
|
|
|
build.Link = parsed.ObjectAttributes.Url
|
2015-08-22 03:32:22 +00:00
|
|
|
|
2015-09-30 01:21:17 +00:00
|
|
|
return repo, build, nil
|
2015-08-22 03:32:22 +00:00
|
|
|
}
|
|
|
|
|
2015-09-30 01:21:17 +00:00
|
|
|
func push(parsed *gogitlab.HookPayload, req *http.Request) (*model.Repo, *model.Build, error) {
|
2015-07-26 12:32:49 +00:00
|
|
|
var cloneUrl = parsed.Repository.GitHttpUrl
|
|
|
|
|
2015-09-30 01:21:17 +00:00
|
|
|
repo := &model.Repo{}
|
|
|
|
repo.Owner = req.FormValue("owner")
|
|
|
|
repo.Name = req.FormValue("name")
|
|
|
|
repo.FullName = fmt.Sprintf("%s/%s", repo.Owner, repo.Name)
|
|
|
|
repo.Link = parsed.Repository.URL
|
|
|
|
repo.Clone = cloneUrl
|
|
|
|
repo.Branch = "master"
|
2015-07-26 12:32:49 +00:00
|
|
|
|
|
|
|
switch parsed.Repository.VisibilityLevel {
|
|
|
|
case 0:
|
2015-09-30 01:21:17 +00:00
|
|
|
repo.IsPrivate = true
|
2015-07-26 12:32:49 +00:00
|
|
|
case 10:
|
2015-09-30 01:21:17 +00:00
|
|
|
repo.IsPrivate = true
|
2015-07-26 12:32:49 +00:00
|
|
|
case 20:
|
2015-09-30 01:21:17 +00:00
|
|
|
repo.IsPrivate = false
|
2015-07-26 12:32:49 +00:00
|
|
|
}
|
|
|
|
|
2015-09-30 01:21:17 +00:00
|
|
|
repo.FullName = fmt.Sprintf("%s/%s", req.FormValue("owner"), req.FormValue("name"))
|
2015-07-26 12:32:49 +00:00
|
|
|
|
2015-09-30 01:21:17 +00:00
|
|
|
build := &model.Build{}
|
|
|
|
build.Event = model.EventPush
|
|
|
|
build.Commit = parsed.After
|
|
|
|
build.Branch = parsed.Branch()
|
|
|
|
build.Ref = parsed.Ref
|
|
|
|
// hook.Commit.Remote = cloneUrl
|
2015-07-25 23:22:16 +00:00
|
|
|
|
|
|
|
var head = parsed.Head()
|
2015-09-30 01:21:17 +00:00
|
|
|
build.Message = head.Message
|
|
|
|
// build.Timestamp = head.Timestamp
|
2015-07-25 23:22:16 +00:00
|
|
|
|
|
|
|
// extracts the commit author (ideally email)
|
|
|
|
// from the post-commit hook
|
|
|
|
switch {
|
|
|
|
case head.Author != nil:
|
2015-09-30 01:21:17 +00:00
|
|
|
build.Email = head.Author.Email
|
|
|
|
build.Author = parsed.UserName
|
2015-07-25 23:22:16 +00:00
|
|
|
case head.Author == nil:
|
2015-09-30 01:21:17 +00:00
|
|
|
build.Author = parsed.UserName
|
2015-07-25 08:49:39 +00:00
|
|
|
}
|
|
|
|
|
2015-09-30 01:21:17 +00:00
|
|
|
return repo, build, nil
|
2015-07-25 08:49:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ¯\_(ツ)_/¯
|
|
|
|
func (g *Gitlab) Oauth2Transport(r *http.Request) *oauth2.Transport {
|
|
|
|
return &oauth2.Transport{
|
|
|
|
Config: &oauth2.Config{
|
|
|
|
ClientId: g.Client,
|
|
|
|
ClientSecret: g.Secret,
|
|
|
|
Scope: DefaultScope,
|
|
|
|
AuthURL: fmt.Sprintf("%s/oauth/authorize", g.URL),
|
2015-07-26 12:32:49 +00:00
|
|
|
TokenURL: fmt.Sprintf("%s/oauth/token", g.URL),
|
2015-07-25 08:49:39 +00:00
|
|
|
RedirectURL: fmt.Sprintf("%s/authorize", httputil.GetURL(r)),
|
|
|
|
//settings.Server.Scheme, settings.Server.Hostname),
|
|
|
|
},
|
|
|
|
Transport: &http.Transport{
|
|
|
|
Proxy: http.ProxyFromEnvironment,
|
|
|
|
TLSClientConfig: &tls.Config{InsecureSkipVerify: g.SkipVerify},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Accessor method, to allowed remote organizations field.
|
2015-09-02 03:42:18 +00:00
|
|
|
func (g *Gitlab) GetOrgs() []string {
|
|
|
|
return g.AllowedOrgs
|
2015-07-25 08:49:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Accessor method, to open field.
|
2015-09-02 03:42:18 +00:00
|
|
|
func (g *Gitlab) GetOpen() bool {
|
|
|
|
return g.Open
|
2015-07-25 08:49:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// return default scope for GitHub
|
2015-09-02 03:42:18 +00:00
|
|
|
func (g *Gitlab) Scope() string {
|
2015-07-25 08:49:39 +00:00
|
|
|
return DefaultScope
|
|
|
|
}
|