git-bug/bridge/gitlab/gitlab.go
Amine Hilaly 0c8f1c3a58
bridge/gitlab: fix comment edition target hash in the import
bridge/gitlab: global changes, typo fixes, comments addition
2019-07-23 18:40:10 +02:00

51 lines
783 B
Go

package gitlab
import (
"net/http"
"time"
"github.com/xanzy/go-gitlab"
"github.com/MichaelMure/git-bug/bridge/core"
)
const (
target = "gitlab"
keyGitlabId = "gitlab-id"
keyGitlabUrl = "gitlab-url"
keyGitlabLogin = "gitlab-login"
keyGitlabProject = "gitlab-project-id"
keyProjectID = "project-id"
keyToken = "token"
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 nil
}
func buildClient(token string) *gitlab.Client {
client := &http.Client{
Timeout: defaultTimeout,
}
return gitlab.NewClient(client, token)
}