aboutsummaryrefslogtreecommitdiffstats
path: root/bridge/gitlab/gitlab.go
blob: d0faf1efaa2f3ec8b41b4e19d165bfe48a6de130 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package gitlab

import (
	"time"

	"github.com/xanzy/go-gitlab"

	"github.com/MichaelMure/git-bug/bridge/core"
)

const (
	target      = "gitlab"
	gitlabV4Url = "https://gitlab.com/api/v4"

	keyProjectID   = "project-id"
	keyGitlabId    = "gitlab-id"
	keyGitlabUrl   = "gitlab-url"
	keyGitlabLogin = "gitlab-login"
	keyToken       = "token"
	keyTarget      = "target"
	keyOrigin      = "origin"

	defaultTimeout = 60 * time.Second
)

func init() {
	core.Register(&Gitlab{})
}

type Gitlab struct{}

func (*Gitlab) Target() string {
	return target
}

func (*Gitlab) NewImporter() core.Importer {
	return &gitlabImporter{}
}

func (*Gitlab) NewExporter() core.Exporter {
	return &gitlabExporter{}
}

func buildClient(token string) *gitlab.Client {
	return gitlab.NewClient(nil, token)
}

func buildClientFromUsernameAndPassword(username, password string) (*gitlab.Client, error) {
	return gitlab.NewBasicAuthClient(nil, "https://gitlab.com", username, password)

}