-
Notifications
You must be signed in to change notification settings - Fork 0
/
dockerhubRenewTags.go
102 lines (83 loc) · 3.15 KB
/
dockerhubRenewTags.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
/*
Copyright © 2020 Yevhen Lebid ealebed@gmail.com
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package cmd
import (
"os"
"runtime"
"github.com/fatih/color"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
"github.com/ealebed/dha/pkg/dockerhub"
)
// RenewTagsOptions represents options for list tags command
type RenewTagsOptions struct {
imageName string
allImages bool
}
// NewDockerhubRenewTagsCmd returns new docker list tags command
func NewDockerhubRenewTagsCmd() *cobra.Command {
options := RenewTagsOptions{}
cmd := &cobra.Command{
Use: "renew",
Short: "renew tags from the provided dockerhub repository (image)",
Long: "renew tags from the provided dockerhub repository (image) or all organization repositories",
Example: "dha renew [--image=...] || [--all]",
RunE: func(cmd *cobra.Command, args []string) error {
return renewImageTags(cmd.InheritedFlags(), options.imageName, options.allImages)
},
}
cmd.Flags().StringVarP(&options.imageName, "image", "i", "", "docker image name for getting tags")
cmd.Flags().BoolVar(&options.allImages, "all", false, "renew tags in all organization repositories")
return cmd
}
// renewImageTags renew tags from the provided dockerhub repository (image)
func renewImageTags(flags *pflag.FlagSet, image string, allImages bool) error {
org, dryRun, err := dockerhub.GetFlags(flags)
if err != nil {
color.Red("Error: %s", err)
}
if dryRun {
color.Yellow("[DRY-RUN] Renewing tags for docker image repository: %s/%s", dockerhub.BW(org), dockerhub.BW(image))
} else {
if !allImages && image == "" {
color.Red("You should provide image or set flag --all")
os.Exit(1)
} else if allImages && image == "" {
runtime.GOMAXPROCS(runtime.NumCPU())
availableRoutines := runtime.NumCPU()
routineReady := make(chan bool)
repositories, err := dockerhub.NewClient(org, "").ListRepositories()
if err != nil {
color.Red("Error: %s", err)
}
for repoCount, repo := range repositories {
if availableRoutines == 0 {
<-routineReady
availableRoutines = availableRoutines + 1
}
availableRoutines = availableRoutines - 1
go renewer(repoCount, len(repositories), org, repo, routineReady)
}
} else {
dockerhub.NewClient(org, "").RenewDockerImage(image)
dockerhub.BG("Done \u2714")
}
}
return nil
}
func renewer(repoCount, repositories int, org string, repo *dockerhub.Repository, routineReady chan bool) {
color.Blue("===> %s %s %s/%s ", dockerhub.BW("Processing docker image repository"), dockerhub.BG(org+"/"+repo.Name), dockerhub.BW(repoCount+1), dockerhub.BW(repositories))
dockerhub.NewClient(org, "").RenewDockerImage(repo.Name)
dockerhub.BG("Done \u2714")
routineReady <- true
}