mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-14 17:51:44 +03:00
0cebe1e57e
fix #338
63 lines
1.2 KiB
Go
63 lines
1.2 KiB
Go
package gitlab
|
|
|
|
import (
|
|
"net/http"
|
|
"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) {
|
|
httpClient := &http.Client{
|
|
Timeout: defaultTimeout,
|
|
}
|
|
|
|
gitlabClient := gitlab.NewClient(httpClient, token.Value)
|
|
err := gitlabClient.SetBaseURL(baseURL)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return gitlabClient, nil
|
|
}
|