mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 02:01:43 +03:00
b18507836c
bridge/gitlab: fix import bug
50 lines
815 B
Go
50 lines
815 B
Go
package gitlab
|
|
|
|
import (
|
|
"net/http"
|
|
"time"
|
|
|
|
"github.com/xanzy/go-gitlab"
|
|
|
|
"github.com/MichaelMure/git-bug/bridge/core"
|
|
)
|
|
|
|
const (
|
|
target = "gitlab"
|
|
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 {
|
|
client := &http.Client{
|
|
Timeout: defaultTimeout,
|
|
}
|
|
|
|
return gitlab.NewClient(client, token)
|
|
}
|