aboutsummaryrefslogtreecommitdiffstats
path: root/bridge/core/bridge.go
blob: 3e3b935e96efd8cc153e366c632c1d9b9e1d7fc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
package core

import (
	"fmt"
	"os/exec"
	"strings"

	"github.com/MichaelMure/git-bug/cache"
	"github.com/MichaelMure/git-bug/repository"
	"github.com/pkg/errors"
)

var ErrImportNorSupported = errors.New("import is not supported")
var ErrExportNorSupported = errors.New("export is not supported")

// Bridge is a wrapper around a BridgeImpl that will bind low-level
// implementation with utility code to provide high-level functions.
type Bridge struct {
	impl BridgeImpl
	conf Configuration
}

func NewBridge(impl BridgeImpl) *Bridge {
	return &Bridge{
		impl: impl,
	}
}

func (b *Bridge) Configure(repo repository.RepoCommon) error {
	conf, err := b.impl.Configure(repo)
	if err != nil {
		return err
	}

	return b.storeConfig(repo, conf)
}

func (b *Bridge) storeConfig(repo repository.RepoCommon, conf Configuration) error {
	for key, val := range conf {
		storeKey := fmt.Sprintf("git-bug.%s.%s", b.impl.Name(), key)

		cmd := exec.Command("git", "config", "--replace-all", storeKey, val)
		cmd.Dir = repo.GetPath()

		out, err := cmd.CombinedOutput()
		if err != nil {
			return fmt.Errorf("error while storing bridge configuration: %s", out)
		}
	}

	return nil
}

func (b Bridge) getConfig(repo repository.RepoCommon) (Configuration, error) {
	var err error
	if b.conf == nil {
		b.conf, err = b.loadConfig(repo)
		if err != nil {
			return nil, err
		}
	}

	return b.conf, nil
}

func (b Bridge) loadConfig(repo repository.RepoCommon) (Configuration, error) {
	key := fmt.Sprintf("git-bug.%s", b.impl.Name())
	cmd := exec.Command("git", "config", "--get-regexp", key)
	cmd.Dir = repo.GetPath()

	out, err := cmd.CombinedOutput()
	if err != nil {
		return nil, fmt.Errorf("error while reading bridge configuration: %s", out)
	}

	lines := strings.Split(string(out), "\n")

	result := make(Configuration, len(lines))
	for _, line := range lines {
		if strings.TrimSpace(line) == "" {
			continue
		}

		parts := strings.Fields(line)
		if len(parts) != 2 {
			return nil, fmt.Errorf("bad bridge configuration: %s", line)
		}

		result[parts[0]] = parts[1]
	}

	return result, nil
}

func (b Bridge) ImportAll(repo *cache.RepoCache) error {
	importer := b.impl.Importer()
	if importer == nil {
		return ErrImportNorSupported
	}

	conf, err := b.getConfig(repo)
	if err != nil {
		return err
	}

	return b.impl.Importer().ImportAll(repo, conf)
}

func (b Bridge) Import(repo *cache.RepoCache, id string) error {
	importer := b.impl.Importer()
	if importer == nil {
		return ErrImportNorSupported
	}

	conf, err := b.getConfig(repo)
	if err != nil {
		return err
	}

	return b.impl.Importer().Import(repo, conf, id)
}

func (b Bridge) ExportAll(repo *cache.RepoCache) error {
	exporter := b.impl.Exporter()
	if exporter == nil {
		return ErrExportNorSupported
	}

	conf, err := b.getConfig(repo)
	if err != nil {
		return err
	}

	return b.impl.Exporter().ExportAll(repo, conf)
}

func (b Bridge) Export(repo *cache.RepoCache, id string) error {
	exporter := b.impl.Exporter()
	if exporter == nil {
		return ErrExportNorSupported
	}

	conf, err := b.getConfig(repo)
	if err != nil {
		return err
	}

	return b.impl.Exporter().Export(repo, conf, id)
}