aboutsummaryrefslogtreecommitdiffstats
path: root/bridge/gitlab
diff options
context:
space:
mode:
Diffstat (limited to 'bridge/gitlab')
-rw-r--r--bridge/gitlab/gitlab.go28
-rw-r--r--bridge/gitlab/import.go30
2 files changed, 58 insertions, 0 deletions
diff --git a/bridge/gitlab/gitlab.go b/bridge/gitlab/gitlab.go
new file mode 100644
index 00000000..538ae715
--- /dev/null
+++ b/bridge/gitlab/gitlab.go
@@ -0,0 +1,28 @@
+package gitlab
+
+import (
+ "github.com/MichaelMure/git-bug/bridge/core"
+ "github.com/xanzy/go-gitlab"
+)
+
+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)
+}
diff --git a/bridge/gitlab/import.go b/bridge/gitlab/import.go
new file mode 100644
index 00000000..dec90a6c
--- /dev/null
+++ b/bridge/gitlab/import.go
@@ -0,0 +1,30 @@
+package gitlab
+
+import (
+ "time"
+
+ "github.com/MichaelMure/git-bug/bridge/core"
+ "github.com/MichaelMure/git-bug/cache"
+)
+
+const (
+ keyGitlabLogin = "gitlab-login"
+)
+
+type gitlabImporter struct {
+ conf core.Configuration
+
+ // number of imported issues
+ importedIssues int
+
+ // number of imported identities
+ importedIdentities int
+}
+
+func (*gitlabImporter) Init(conf core.Configuration) error {
+ return nil
+}
+
+func (*gitlabImporter) ImportAll(repo *cache.RepoCache, since time.Time) error {
+ return nil
+}