forked from rancher/rancher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manager.go
233 lines (206 loc) · 6.44 KB
/
manager.go
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
package manager
import (
"crypto/md5"
"encoding/hex"
"fmt"
"io"
"net/http"
"net/url"
"os"
"path"
"strings"
"time"
"github.com/docker/docker/pkg/locker"
"github.com/pkg/errors"
"github.com/rancher/rancher/pkg/catalog/git"
"github.com/rancher/rancher/pkg/catalog/helm"
"github.com/rancher/rancher/pkg/settings"
"github.com/rancher/types/apis/management.cattle.io/v3"
"github.com/rancher/types/config"
"github.com/sirupsen/logrus"
kerrors "k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
type Manager struct {
cacheRoot string
httpClient http.Client
uuid string
catalogClient v3.CatalogInterface
templateClient v3.TemplateInterface
templateVersionClient v3.TemplateVersionInterface
templateContentClient v3.TemplateContentInterface
templateLister v3.TemplateLister
templateVersionLister v3.TemplateVersionLister
templateContentLister v3.TemplateContentLister
lastUpdateTime time.Time
lock *locker.Locker
}
func New(management *config.ManagementContext, cacheRoot string) *Manager {
uuid := settings.InstallUUID.Get()
return &Manager{
cacheRoot: cacheRoot,
httpClient: http.Client{
Timeout: time.Second * 30,
},
uuid: uuid,
catalogClient: management.Management.Catalogs(""),
templateClient: management.Management.Templates(""),
templateVersionClient: management.Management.TemplateVersions(""),
templateContentClient: management.Management.TemplateContents(""),
templateLister: management.Management.Templates("").Controller().Lister(),
templateVersionLister: management.Management.TemplateVersions("").Controller().Lister(),
templateContentLister: management.Management.TemplateContents("").Controller().Lister(),
lock: locker.New(),
}
}
func (m *Manager) GetCatalogs() ([]v3.Catalog, error) {
list, err := m.catalogClient.List(metav1.ListOptions{})
if err != nil {
return nil, err
}
return list.Items, nil
}
func (m *Manager) prepareRepoPath(catalog v3.Catalog) (path string, commit string, err error) {
if git.IsValid(catalog.Spec.URL) {
path, commit, err = m.prepareGitRepoPath(catalog)
} else {
path, commit, err = m.prepareHelmRepoPath(catalog)
}
return
}
func (m *Manager) prepareHelmRepoPath(catalog v3.Catalog) (string, string, error) {
index, err := helm.DownloadIndex(catalog.Spec.URL)
if err != nil {
return "", "", err
}
repoPath := path.Join(m.cacheRoot, catalog.Name, index.Hash)
if err := os.MkdirAll(repoPath, 0755); err != nil {
return "", "", err
}
if err := helm.SaveIndex(index, repoPath); err != nil {
return "", "", err
}
return repoPath, index.Hash, nil
}
func hash(content string) string {
sum := md5.Sum([]byte(content))
return hex.EncodeToString(sum[:])
}
func (m *Manager) prepareGitRepoPath(catalog v3.Catalog) (string, string, error) {
branch := catalog.Spec.Branch
if branch == "" {
branch = "master"
}
repoBranchHash := hash(catalog.Spec.URL + branch)
repoPath := path.Join(m.cacheRoot, repoBranchHash)
// add a lock to prevent two sync running on the same hash repo
m.lock.Lock(repoBranchHash)
defer m.lock.Unlock(repoBranchHash)
if err := os.MkdirAll(repoPath, 0755); err != nil {
return "", "", err
}
empty, err := dirEmpty(repoPath)
if err != nil {
return "", "", errors.Wrap(err, "Empty directory check failed")
}
if empty {
if err = git.Clone(repoPath, catalog.Spec.URL, branch); err != nil {
return "", "", errors.Wrap(err, "Clone failed")
}
} else {
// remove lock file
if _, err := os.Stat(path.Join(repoPath, ".git", "index.lock")); err == nil {
os.RemoveAll(path.Join(repoPath, ".git", "index.lock"))
}
changed, err := m.remoteShaChanged(catalog.Spec.URL, catalog.Spec.Branch, catalog.Status.Commit, m.uuid)
if err != nil {
return "", "", errors.Wrap(err, "Remote commit check failed")
}
if changed {
if err = git.Update(repoPath, branch); err != nil {
return "", "", errors.Wrap(err, "Update failed")
}
logrus.Debugf("catalog-service: updated catalog '%v'", catalog.Name)
}
}
commit, err := git.HeadCommit(repoPath)
if err != nil {
err = errors.Wrap(err, "Retrieving head commit failed")
}
return repoPath, commit, err
}
func formatGitURL(endpoint, branch string) string {
formattedURL := ""
if u, err := url.Parse(endpoint); err == nil {
pathParts := strings.Split(u.Path, "/")
switch strings.Split(u.Host, ":")[0] {
case "github.com":
if len(pathParts) >= 3 {
org := pathParts[1]
repo := strings.TrimSuffix(pathParts[2], ".git")
formattedURL = fmt.Sprintf("https://api.github.com/repos/%s/%s/commits/%s", org, repo, branch)
}
case "git.rancher.io":
repo := strings.TrimSuffix(pathParts[1], ".git")
u.Path = fmt.Sprintf("/repos/%s/commits/%s", repo, branch)
formattedURL = u.String()
}
}
return formattedURL
}
func (m *Manager) remoteShaChanged(repoURL, branch, sha, uuid string) (bool, error) {
formattedURL := formatGitURL(repoURL, branch)
if formattedURL == "" {
return true, nil
}
req, err := http.NewRequest("GET", formattedURL, nil)
if err != nil {
logrus.Warnf("Problem creating request to check git remote sha of repo [%v]: %v", repoURL, err)
return true, nil
}
req.Header.Set("Accept", "application/vnd.github.chitauri-preview+sha")
req.Header.Set("If-None-Match", fmt.Sprintf("\"%s\"", sha))
if uuid != "" {
req.Header.Set("X-Install-Uuid", uuid)
}
res, err := m.httpClient.Do(req)
if err != nil {
// Return timeout errors so caller can decide whether or not to proceed with updating the repo
if uErr, ok := err.(*url.Error); ok && uErr.Timeout() {
return false, errors.Wrapf(uErr, "Repo [%v] is not accessible", repoURL)
}
return true, nil
}
defer res.Body.Close()
if res.StatusCode == 304 {
return false, nil
}
return true, nil
}
func (m *Manager) deleteChart(toDelete string) error {
toDeleteTvs, err := m.getTemplateVersion(toDelete)
if err != nil {
return err
}
for tv := range toDeleteTvs {
if err := m.templateVersionClient.Delete(tv, &metav1.DeleteOptions{}); err != nil && !kerrors.IsNotFound(err) {
return err
}
}
if err := m.templateClient.Delete(toDelete, &metav1.DeleteOptions{}); err != nil && !kerrors.IsNotFound(err) {
return err
}
return nil
}
func dirEmpty(dir string) (bool, error) {
f, err := os.Open(dir)
if err != nil {
return false, err
}
defer f.Close()
_, err = f.Readdirnames(1)
if err == io.EOF {
return true, nil
}
return false, err
}