-
Notifications
You must be signed in to change notification settings - Fork 51
/
mirror.go
260 lines (233 loc) · 7.39 KB
/
mirror.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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
package mirror
import (
"fmt"
"io"
"net/http"
"os"
"path/filepath"
"github.com/jenkins-x-plugins/jx-gitops/pkg/ghpages"
"github.com/jenkins-x-plugins/jx-gitops/pkg/rootcmd"
"github.com/jenkins-x/jx-helpers/v3/pkg/cmdrunner"
"github.com/jenkins-x/jx-helpers/v3/pkg/cobras/helper"
"github.com/jenkins-x/jx-helpers/v3/pkg/cobras/templates"
"github.com/jenkins-x/jx-helpers/v3/pkg/files"
"github.com/jenkins-x/jx-helpers/v3/pkg/gitclient"
"github.com/jenkins-x/jx-helpers/v3/pkg/gitclient/cli"
"github.com/jenkins-x/jx-helpers/v3/pkg/gitclient/giturl"
"github.com/jenkins-x/jx-helpers/v3/pkg/httphelpers"
"github.com/jenkins-x/jx-helpers/v3/pkg/options"
"github.com/jenkins-x/jx-helpers/v3/pkg/scmhelpers"
"github.com/jenkins-x/jx-helpers/v3/pkg/stringhelpers"
"github.com/jenkins-x/jx-helpers/v3/pkg/termcolor"
"github.com/jenkins-x/jx-helpers/v3/pkg/versionstream"
"github.com/jenkins-x/jx-logging/v3/pkg/log"
"github.com/pkg/errors"
"github.com/spf13/cobra"
"helm.sh/helm/v3/pkg/repo"
)
var (
info = termcolor.ColorInfo
cmdLong = templates.LongDesc(`
Escapes any {{ or }} characters in the YAML files so they can be included in a helm chart
`)
cmdExample = templates.Examples(`
# escapes any yaml files so they can be included in a helm chart
%s helm escape --dir myyaml
`)
)
// Options the options for the command
type Options struct {
scmhelpers.Factory
Dir string
RepositoriesFile string
Branch string
GitURL string
CommitMessage string
Excludes []string
NoPush bool
GitClient gitclient.Interface
CommandRunner cmdrunner.CommandRunner
}
// NewCmdMirror creates a command object for the command
func NewCmdMirror() (*cobra.Command, *Options) {
o := &Options{}
cmd := &cobra.Command{
Use: "mirror",
Short: "Creates a helm mirror ",
Long: cmdLong,
Example: fmt.Sprintf(cmdExample, rootcmd.BinaryName),
Run: func(cmd *cobra.Command, args []string) {
err := o.Run()
helper.CheckErr(err)
},
}
cmd.Flags().StringVarP(&o.Dir, "dir", "d", ".", "the directory which contains the charts/repositories.yml file")
cmd.Flags().StringVarP(&o.Branch, "branch", "b", "gh-pages", "the git branch to clone the repository")
cmd.Flags().StringVarP(&o.GitURL, "url", "u", "", "the git URL of the repository to mirror the charts into")
cmd.Flags().StringVarP(&o.CommitMessage, "message", "m", "chore: upgrade mirrored charts", "the commit message")
cmd.Flags().StringArrayVarP(&o.Excludes, "exclude", "x", []string{"jenkins-x", "jx3"}, "the helm repositories to exclude from mirroring")
o.Factory.AddFlags(cmd)
return cmd, o
}
// Validate the arguments
func (o *Options) Validate() error {
if o.GitURL == "" {
return options.MissingOption("url")
}
if o.CommandRunner == nil {
o.CommandRunner = cmdrunner.DefaultCommandRunner
}
if o.GitClient == nil {
o.GitClient = cli.NewCLIClient("", o.CommandRunner)
}
if o.GitToken == "" {
if o.GitServerURL == "" {
gitInfo, err := giturl.ParseGitURL(o.GitURL)
if err != nil {
return errors.Wrapf(err, "failed to parse git URL %s", o.GitURL)
}
o.GitServerURL = gitInfo.HostURL()
}
err := o.Factory.FindGitToken()
if err != nil {
return errors.Wrapf(err, "failed to find git token")
}
if o.GitToken == "" {
return options.MissingOption("git-token")
}
}
return nil
}
// Run implements the command
func (o *Options) Run() error {
err := o.Validate()
if err != nil {
return errors.Wrapf(err, "failed to validate options")
}
prefixes, err := versionstream.GetRepositoryPrefixes(o.Dir)
if err != nil {
return errors.Wrapf(err, "failed to load quickstart repositories")
}
if prefixes == nil {
return errors.Errorf("no chart repository prefixes")
}
if len(prefixes.Repositories) == 0 {
return errors.Errorf("could not find charts/repositories.yml file in dir %s", o.Dir)
}
gitDir, err := ghpages.CloneGitHubPagesToDir(o.GitClient, o.GitURL, o.Branch, o.GitUsername, o.GitToken)
if err != nil {
return errors.Wrapf(err, "failed to clone the github pages repo %s branch %s", o.GitURL, o.Branch)
}
if gitDir == "" {
return errors.Errorf("no github pages clone dir")
}
log.Logger().Infof("cloned github pages repository to %s", info(gitDir))
for _, repo := range prefixes.Repositories {
name := repo.Prefix
if stringhelpers.StringArrayIndex(o.Excludes, name) >= 0 {
continue
}
outDir := filepath.Join(gitDir, name)
err = os.MkdirAll(outDir, files.DefaultDirWritePermissions)
if err != nil {
return errors.Wrapf(err, "failed to create dir %s", outDir)
}
err = o.MirrorRepository(outDir, repo.URLs)
if err != nil {
return errors.Wrapf(err, "failed to mirror repository %s", name)
}
}
changes, err := gitclient.AddAndCommitFiles(o.GitClient, gitDir, o.CommitMessage)
if err != nil {
return errors.Wrapf(err, "failed to add and commit files")
}
if !changes {
log.Logger().Infof("no changes")
return nil
}
if o.NoPush {
return nil
}
err = gitclient.Pull(o.GitClient, gitDir)
if err != nil {
return errors.Wrapf(err, "failed to push changes")
}
log.Logger().Infof("pushed changes to %s in branch %s", info(o.GitURL), info(o.Branch))
return nil
}
// MirrorRepository downloads the index yaml and all the referenced charts to the given directory
func (o *Options) MirrorRepository(dir string, urls []string) error {
for _, u := range urls {
path := filepath.Join(dir, "index.yaml")
indexURL := stringhelpers.UrlJoin(u, "index.yaml")
err := downloadURLToFile(indexURL, path)
if err != nil {
log.Logger().Warnf("failed to download index for %s", indexURL)
continue
}
idx, err := repo.LoadIndexFile(path)
if err != nil {
log.Logger().Warnf("failed to load index file at %s", path)
return nil
}
log.Logger().Infof("downloaded %s", info(path))
err = o.DownloadIndex(idx, u, dir)
if err != nil {
return errors.Wrapf(err, "failed to download index for %s", dir)
}
}
return nil
}
func (o *Options) DownloadIndex(idx *repo.IndexFile, u, dir string) error {
for _, v := range idx.Entries {
for _, cv := range v {
for _, name := range cv.URLs {
path := filepath.Join(dir, name)
exists, err := files.FileExists(path)
if err != nil {
return errors.Wrapf(err, "failed to check for path %s", path)
}
if exists {
continue
}
fileURL := stringhelpers.UrlJoin(u, name)
err = downloadURLToFile(fileURL, path)
if err != nil {
log.Logger().Warnf("failed to download %s", fileURL)
continue
}
log.Logger().Infof("downloaded %s", info(path))
}
}
}
return nil
}
func downloadURLToFile(u, path string) error {
dir := filepath.Dir(path)
err := os.MkdirAll(dir, files.DefaultDirWritePermissions)
if err != nil {
return errors.Wrapf(err, "failed to create dir %s", dir)
}
client := httphelpers.GetClient()
req, err := http.NewRequest("GET", u, http.NoBody)
if err != nil {
return errors.Wrapf(err, "failed to create http request for %s", u)
}
resp, err := client.Do(req)
if err != nil {
if resp != nil {
return errors.Wrapf(err, "failed to GET endpoint %s with status %s", u, resp.Status)
}
return errors.Wrapf(err, "failed to GET endpoint %s", u)
}
defer resp.Body.Close()
body, err := io.ReadAll(resp.Body)
if err != nil {
return errors.Wrapf(err, "failed to read response from %s", u)
}
err = os.WriteFile(path, body, files.DefaultFileWritePermissions)
if err != nil {
return errors.Wrapf(err, "failed to save file %s", path)
}
return nil
}