This repository was archived by the owner on Jan 16, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 140
/
Copy pathdeploy.go
553 lines (495 loc) · 13.3 KB
/
deploy.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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
package parsecmd
import (
"crypto/md5"
"fmt"
"io"
"io/ioutil"
"mime"
"net/http"
"net/url"
"os"
"path/filepath"
"reflect"
"sort"
"strings"
"sync"
"time"
"github.com/ParsePlatform/parse-cli/parsecli"
"github.com/facebookgo/errgroup"
"github.com/facebookgo/jsonpipe"
"github.com/facebookgo/stackerr"
"github.com/facebookgo/symwalk"
"github.com/spf13/cobra"
)
const (
maxOpenFD = 24
parseIgnore = ".parseignore"
)
type deployCmd struct {
Description string
Force bool
Verbose bool
Retries int
wait func(int) time.Duration
}
func (d *deployCmd) getSourceFiles(
dirName string,
suffixes map[string]struct{},
e *parsecli.Env,
) ([]string, []string, error) {
ignoreFile := filepath.Join(e.Root, parseIgnore)
content, err := ioutil.ReadFile(ignoreFile)
if err != nil {
if !os.IsNotExist(err) {
return nil, nil, stackerr.Wrap(err)
}
content = nil
}
matcher, errors := parseIgnoreMatcher(content)
if errors != nil && d.Verbose {
fmt.Fprintf(e.Err,
"Error compiling the parseignore file:\n%s\n",
ignoreErrors(errors, e),
)
}
ignoredSet := make(map[string]struct{})
err = symwalk.Walk(dirName, func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
if !info.IsDir() {
ignoredSet[path] = struct{}{}
}
return nil
})
if err != nil {
return nil, nil, stackerr.Wrap(err)
}
var selected []string
errors, err = parseIgnoreWalk(matcher,
dirName,
func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
ok := len(suffixes) == 0
if !ok {
_, ok = suffixes[filepath.Ext(path)]
}
if ok && !info.IsDir() {
selected = append(selected, path)
delete(ignoredSet, path)
}
return nil
})
if err != nil {
return nil, nil, stackerr.Wrap(err)
}
if len(errors) != 0 && d.Verbose {
fmt.Fprintf(e.Err,
"Encountered the following errors while matching patterns:\n%s\n",
ignoreErrors(errors, e),
)
}
var ignored []string
for file := range ignoredSet {
ignored = append(ignored, file)
}
sort.Strings(selected)
sort.Strings(ignored)
return selected, ignored, nil
}
func (d *deployCmd) computeChecksums(files []string,
normalizeName func(string) string) (map[string]string, error) {
var wg errgroup.Group
maxParallel := make(chan struct{}, maxOpenFD)
wg.Add(len(files))
var mutex sync.Mutex
checksums := make(map[string]string)
computeChecksum := func(name string) {
defer func() {
wg.Done()
<-maxParallel
}()
file, err := os.Open(name)
defer file.Close()
if err != nil {
wg.Error(stackerr.Wrap(err))
return
}
h := md5.New()
if _, err := io.Copy(h, file); err != nil {
wg.Error(stackerr.Wrap(err))
return
}
if err := file.Close(); err != nil {
wg.Error(stackerr.Wrap(err))
return
}
mutex.Lock()
checksums[normalizeName(name)] = fmt.Sprintf("%x", h.Sum(nil))
defer mutex.Unlock()
}
for _, file := range files {
maxParallel <- struct{}{}
go computeChecksum(file)
}
err := wg.Wait()
if err != nil {
return checksums, err
}
return checksums, nil
}
func (d *deployCmd) uploadFile(filename, endpoint string, e *parsecli.Env,
normalizeName func(string) string) (string, error) {
content, err := ioutil.ReadFile(filename)
if err != nil {
return "", err
}
req, err := http.NewRequest(
"POST",
endpoint,
ioutil.NopCloser(
jsonpipe.Encode(
map[string]interface{}{
"name": normalizeName(filename),
"content": content,
},
),
),
)
if err != nil {
return "", stackerr.Wrap(err)
}
mimeType := mime.TypeByExtension(filepath.Ext(filename))
if mimeType == "" {
mimeType = "application/octet-stream"
}
req.Header.Add("Content-Type", mimeType)
var res struct {
Version string `json:"version"`
}
if _, err := e.ParseAPIClient.Do(req, nil, &res); err != nil {
return "", stackerr.Wrap(err)
}
if res.Version == "" {
return "", stackerr.Newf("Malformed response when trying to upload %s", filename)
}
return res.Version, nil
}
type uploader struct {
DirName string
Suffixes map[string]struct{}
EndPoint string
Env *parsecli.Env
PrevChecksums map[string]string
PrevVersions map[string]string
}
func (d *deployCmd) uploadSourceFiles(u *uploader) (map[string]string,
map[string]string, error) {
sourceFiles, ignoredFiles, err := d.getSourceFiles(filepath.Join(u.Env.Root, u.DirName), u.Suffixes, u.Env)
if err != nil {
return nil, nil, err
}
namePrefixLen := len(filepath.Join(u.Env.Root, u.DirName, "1")) - 1
normalizeName := func(name string) string {
name = filepath.ToSlash(filepath.Clean(name))
return name[namePrefixLen:]
}
currentChecksums, err := d.computeChecksums(sourceFiles, normalizeName)
if err != nil {
return nil, nil, err
}
var mutex sync.Mutex
maxParallel := make(chan struct{}, maxOpenFD)
var wg errgroup.Group
currentVersions := make(map[string]string)
uploadFile := func(sourceFile string) {
defer func() {
wg.Done()
<-maxParallel
}()
version, err := d.uploadFile(sourceFile, u.EndPoint, u.Env, normalizeName)
if err != nil {
wg.Error(err)
return
}
mutex.Lock()
currentVersions[normalizeName(sourceFile)] = version
defer mutex.Unlock()
}
changed := false
var changedFiles []string
for _, sourceFile := range sourceFiles {
if !d.Force { // if not forced, verify changed content using checksums
name := normalizeName(sourceFile)
var noUpload bool
if prevChecksum, ok := u.PrevChecksums[name]; ok {
noUpload = prevChecksum == currentChecksums[name]
}
if prevVersion, ok := u.PrevVersions[name]; ok && noUpload {
currentVersions[name] = prevVersion
continue
}
}
changed = true
wg.Add(1)
changedFiles = append(changedFiles, sourceFile)
maxParallel <- struct{}{}
go uploadFile(sourceFile)
}
if changed && d.Verbose {
var message string
switch u.DirName {
case "cloud":
message = "scripts"
case "public":
message = "hosting"
}
fmt.Fprintf(u.Env.Out,
`Uploading recent changes to %s...
The following files will be uploaded:
%s
`,
message,
strings.Join(changedFiles, "\n"),
)
if len(ignoredFiles) != 0 {
fmt.Fprintln(u.Env.Out, "The following files will be ignored:")
for _, file := range ignoredFiles {
fmt.Fprintln(u.Env.Out, file)
}
}
}
if err := wg.Wait(); err != nil {
return nil, nil, err
}
return currentChecksums, currentVersions, nil
}
type deployFileData struct {
Cloud map[string]string `json:"cloud"`
Public map[string]string `json:"public"`
}
type deployInfo struct {
ReleaseName string `json:"releaseName,omitempty"`
Description string `json:"description,omitempty"`
ParseVersion string `json:"parseVersion,omitempty"`
Checksums deployFileData `json:"checksums,omitempty"`
Versions deployFileData `json:"userFiles,omitempty"`
Warning string `json:"warning,omitempty"` // only populated by post to deploy
}
func (d *deployCmd) makeNewRelease(info *deployInfo, e *parsecli.Env) (deployInfo, error) {
var res deployInfo
u := url.URL{
Path: "deploy",
}
_, err := e.ParseAPIClient.Post(&u, info, &res)
if err != nil {
return res, stackerr.Wrap(err)
}
return res, nil
}
func (d *deployCmd) getPrevDeplInfo(e *parsecli.Env) (*deployInfo, error) {
prevDeplInfo := &deployInfo{}
if _, err := e.ParseAPIClient.Get(&url.URL{Path: "deploy"}, prevDeplInfo); err != nil {
return nil, stackerr.Wrap(err)
}
legacy := len(prevDeplInfo.Checksums.Cloud) == 0 &&
len(prevDeplInfo.Checksums.Public) == 0 &&
len(prevDeplInfo.Versions.Cloud) == 0 &&
len(prevDeplInfo.Versions.Public) == 0
if legacy {
var res struct {
ReleaseName string `json:"releaseName,omitempty"`
Description string `json:"description,omitempty"`
ParseVersion string `json:"parseVersion,omitempty"`
Checksums map[string]string `json:"checksums,omitempty"`
Versions map[string]string `json:"userFiles,omitempty"`
}
if _, err := e.ParseAPIClient.Get(&url.URL{Path: "deploy"}, &res); err != nil {
return nil, stackerr.Wrap(err)
}
prevDeplInfo.ReleaseName = res.ReleaseName
prevDeplInfo.Description = res.Description
prevDeplInfo.ParseVersion = res.ParseVersion
prevDeplInfo.Checksums.Cloud = res.Checksums
prevDeplInfo.Versions.Cloud = res.Versions
}
return prevDeplInfo, nil
}
func (d *deployCmd) deploy(
parseVersion string,
prevDeplInfo *deployInfo,
forDevelop bool,
e *parsecli.Env) (*deployInfo, error) {
if parseVersion == "" {
fmt.Fprintln(e.Err,
"JS SDK version not set, setting it to latest available JS SDK version",
)
if err := UseLatestJSSDK(e); err != nil {
return nil, err
}
}
if d.Verbose {
fmt.Fprintln(e.Out, "Uploading source files")
}
if prevDeplInfo == nil {
var err error
prevDeplInfo, err = d.getPrevDeplInfo(e)
if err != nil {
return nil, err
}
}
scriptChecksums, scriptVersions, err := d.uploadSourceFiles(&uploader{
DirName: "cloud",
Suffixes: map[string]struct{}{
".js": {},
".ejs": {},
".jade": {},
},
EndPoint: "scripts",
PrevChecksums: prevDeplInfo.Checksums.Cloud,
PrevVersions: prevDeplInfo.Versions.Cloud,
Env: e})
if err != nil && !os.IsNotExist(err) {
return nil, err
}
hostedChecksums, hostedVersions, err := d.uploadSourceFiles(&uploader{
DirName: "public",
Suffixes: map[string]struct{}{},
EndPoint: "hosted_files",
PrevChecksums: prevDeplInfo.Checksums.Public,
PrevVersions: prevDeplInfo.Versions.Public,
Env: e})
if err != nil && !os.IsNotExist(err) {
return nil, err
}
if len(scriptChecksums) == 0 && len(hostedChecksums) == 0 {
return nil, stackerr.New("No files to upload")
}
if d.Verbose {
fmt.Fprintln(e.Out, "Finished uploading files")
}
noDiff := reflect.DeepEqual(scriptChecksums, prevDeplInfo.Checksums.Cloud) &&
reflect.DeepEqual(scriptVersions, prevDeplInfo.Versions.Cloud) &&
reflect.DeepEqual(hostedChecksums, prevDeplInfo.Checksums.Public) &&
reflect.DeepEqual(hostedVersions, prevDeplInfo.Versions.Public)
noDiff = noDiff && (parseVersion == prevDeplInfo.ParseVersion)
if noDiff {
if d.Verbose {
fmt.Fprintln(e.Out, "Not creating a release because no files have changed")
}
return prevDeplInfo, nil
}
if parseVersion == "" {
parseVersion = prevDeplInfo.ParseVersion
}
newDeployInfo := &deployInfo{
ParseVersion: parseVersion,
Checksums: deployFileData{Cloud: scriptChecksums, Public: hostedChecksums},
Versions: deployFileData{Cloud: scriptVersions, Public: hostedVersions},
Description: d.Description,
}
res, err := d.makeNewRelease(newDeployInfo, e)
if err != nil {
if forDevelop {
// if the release failed but we are in develop mode, we want to return
// the old release information with new checksums so we do not keep
// uploading a broken release.
prevDeplInfo.Checksums = newDeployInfo.Checksums
return prevDeplInfo, err
}
return nil, err
}
if forDevelop {
fmt.Fprintln(e.Out, "Your changes are now live.")
} else {
if res.Warning != "" {
fmt.Fprintln(e.Err, res.Warning)
}
fmt.Fprintf(e.Out, "New release is named %s (using Parse JavaScript SDK v%s)\n", res.ReleaseName, res.ParseVersion)
}
return &deployInfo{
ParseVersion: res.ParseVersion,
Checksums: newDeployInfo.Checksums,
Versions: newDeployInfo.Versions,
}, nil
}
func (d *deployCmd) handleError(
n int,
err, prevErr error,
e *parsecli.Env,
) error {
if err == nil {
return nil
}
if n == d.Retries-1 {
return err
}
var waitTime time.Duration
if d.wait != nil {
waitTime = d.wait(n)
}
errStr := parsecli.ErrorString(e, err)
if prevErr != nil {
prevErrStr := parsecli.ErrorString(e, prevErr)
if prevErrStr == errStr {
fmt.Fprintf(
e.Err,
"Sorry, deploy failed again with same error.\nWill retry in %d seconds.\n\n",
waitTime/time.Second,
)
time.Sleep(waitTime)
return nil
}
}
fmt.Fprintf(
e.Err,
"Deploy failed with error:\n%s\nWill retry in %d seconds.\n\n",
errStr,
waitTime/time.Second,
)
time.Sleep(waitTime)
return nil
}
func (d *deployCmd) run(e *parsecli.Env, c *parsecli.Context) error {
var prevErr error
for i := 0; i < d.Retries; i++ {
parseVersion := c.Config.GetProjectConfig().Parse.JSSDK
newDeployInfo, err := d.deploy(parseVersion, nil, false, e)
if err == nil {
if parseVersion == "" && newDeployInfo != nil && newDeployInfo.ParseVersion != "" {
c.Config.GetProjectConfig().Parse.JSSDK = newDeployInfo.ParseVersion
return parsecli.StoreProjectConfig(e, c.Config)
}
return nil
}
if err := d.handleError(i, err, prevErr, e); err != nil {
return err
}
prevErr = err
}
return nil
}
func NewDeployCmd(e *parsecli.Env) *cobra.Command {
d := deployCmd{
Verbose: true,
Retries: 3,
wait: func(n int) time.Duration { return time.Duration(n) * time.Second },
}
cmd := &cobra.Command{
Use: "deploy [app]",
Short: "Deploys a Parse App",
Long: `Deploys the code to the given app.`,
Run: parsecli.RunWithClient(e, d.run),
}
cmd.Flags().StringVarP(&d.Description, "description", "d", d.Description,
"Add an optional description to the deploy")
cmd.Flags().BoolVarP(&d.Force, "force", "f", d.Force,
"Force deploy files even if their content is unchanged")
cmd.Flags().BoolVarP(&d.Verbose, "verbose", "v", d.Verbose,
"Control verbosity of cmd line logs")
cmd.Flags().IntVarP(&d.Retries, "retries", "n", d.Retries,
"Max number of retries to perform until first successful deploy")
return cmd
}