2019-07-09 23:56:38 +03:00
|
|
|
package gitlab
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/xanzy/go-gitlab"
|
2019-07-17 23:41:42 +03:00
|
|
|
|
|
|
|
"github.com/MichaelMure/git-bug/bridge/core"
|
2019-07-09 23:56:38 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
2019-07-10 01:41:43 +03:00
|
|
|
|
|
|
|
func buildClientFromUsernameAndPassword(username, password string) (*gitlab.Client, error) {
|
|
|
|
return gitlab.NewBasicAuthClient(nil, "https://gitlab.com", username, password)
|
|
|
|
|
|
|
|
}
|