mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-14 17:51:44 +03:00
59 lines
1.1 KiB
Go
59 lines
1.1 KiB
Go
package gitlab
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/xanzy/go-gitlab"
|
|
|
|
"github.com/MichaelMure/git-bug/bridge/core"
|
|
"github.com/MichaelMure/git-bug/bridge/core/auth"
|
|
)
|
|
|
|
const (
|
|
target = "gitlab"
|
|
|
|
metaKeyGitlabId = "gitlab-id"
|
|
metaKeyGitlabUrl = "gitlab-url"
|
|
metaKeyGitlabLogin = "gitlab-login"
|
|
metaKeyGitlabProject = "gitlab-project-id"
|
|
metaKeyGitlabBaseUrl = "gitlab-base-url"
|
|
|
|
confKeyProjectID = "project-id"
|
|
confKeyGitlabBaseUrl = "base-url"
|
|
confKeyDefaultLogin = "default-login"
|
|
|
|
defaultBaseURL = "https://gitlab.com/"
|
|
defaultTimeout = 60 * time.Second
|
|
)
|
|
|
|
var _ core.BridgeImpl = &Gitlab{}
|
|
|
|
type Gitlab struct{}
|
|
|
|
func (Gitlab) Target() string {
|
|
return target
|
|
}
|
|
|
|
func (g *Gitlab) LoginMetaKey() string {
|
|
return metaKeyGitlabLogin
|
|
}
|
|
|
|
func (Gitlab) NewImporter() core.Importer {
|
|
return &gitlabImporter{}
|
|
}
|
|
|
|
func (Gitlab) NewExporter() core.Exporter {
|
|
return &gitlabExporter{}
|
|
}
|
|
|
|
func buildClient(baseURL string, token *auth.Token) (*gitlab.Client, error) {
|
|
gitlabClient, err := gitlab.NewClient(token.Value,
|
|
gitlab.WithBaseURL(baseURL),
|
|
)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return gitlabClient, nil
|
|
}
|