-
Notifications
You must be signed in to change notification settings - Fork 375
/
theme.go
179 lines (146 loc) · 5.78 KB
/
theme.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
package cmd
import (
"os"
"path/filepath"
"strings"
"sync"
"github.com/spf13/cobra"
"github.com/Shopify/themekit/kit"
)
const updateAvailableMessage string = `
----------------------------------------
| An update for Theme Kit is available |
| |
| To apply the update simply type |
| the following command: |
| |
| theme update |
----------------------------------------
`
type flagArray struct {
values []string
}
func (fa *flagArray) String() string {
return strings.Join(fa.values, ",")
}
func (fa *flagArray) Set(value string) error {
if len(value) > 0 {
fa.values = append(fa.values, value)
}
return nil
}
func (fa *flagArray) Type() string {
return "string"
}
func (fa *flagArray) Value() []string {
if len(fa.values) == 0 {
return nil
}
return fa.values
}
var (
configPath string
allenvs bool
environment string
notifyFile string
noUpdateNotifier bool
flagConfig = kit.Configuration{}
ignoredFiles flagArray
ignores flagArray
bootstrapVersion string
bootstrapPrefix string
setThemeID bool
updateVersion string
)
// ThemeCmd is the main entry point to the theme kit command line interface.
var ThemeCmd = &cobra.Command{
Use: "theme",
Short: "Theme Kit is a tool kit for manipulating shopify themes",
Long: `Theme Kit is a tool kit for manipulating shopify themes
Theme Kit is a fast and cross platform tool that enables you
to build shopify themes with ease.
Complete documentation is available at https://shopify.github.io/themekit/`,
}
func init() {
pwd, _ := os.Getwd()
configPath = filepath.Join(pwd, "config.yml")
ThemeCmd.PersistentFlags().StringVarP(&configPath, "config", "c", configPath, "path to config.yml")
ThemeCmd.PersistentFlags().StringVarP(&environment, "env", "e", kit.DefaultEnvironment, "envionment to run the command")
ThemeCmd.PersistentFlags().StringVarP(&flagConfig.Directory, "dir", "d", "", "directory that command will take effect. (default current directory)")
ThemeCmd.PersistentFlags().StringVarP(&flagConfig.Password, "password", "p", "", "theme password. This will override what is in your config.yml")
ThemeCmd.PersistentFlags().StringVarP(&flagConfig.ThemeID, "themeid", "t", "", "theme id. This will override what is in your config.yml")
ThemeCmd.PersistentFlags().StringVarP(&flagConfig.Domain, "store", "s", "", "your shopify domain. This will override what is in your config.yml")
ThemeCmd.PersistentFlags().StringVar(&flagConfig.Proxy, "proxy", "", "proxy for all theme requests. This will override what is in your config.yml")
ThemeCmd.PersistentFlags().DurationVar(&flagConfig.Timeout, "timeout", 0, "the timeout to kill any stalled processes. This will override what is in your config.yml")
ThemeCmd.PersistentFlags().BoolVarP(&noUpdateNotifier, "no-update-notifier", "", false, "Stop theme kit from notifying about updates.")
ThemeCmd.PersistentFlags().Var(&ignoredFiles, "ignored-file", "A single file to ignore, use the flag multiple times to add multiple.")
ThemeCmd.PersistentFlags().Var(&ignores, "ignores", "A path to a file that contains ignore patterns.")
watchCmd.Flags().StringVarP(¬ifyFile, "notify", "n", "", "file to touch when workers have gone idle")
watchCmd.Flags().BoolVarP(&allenvs, "allenvs", "a", false, "run command with all environments")
removeCmd.Flags().BoolVarP(&allenvs, "allenvs", "a", false, "run command with all environments")
replaceCmd.Flags().BoolVarP(&allenvs, "allenvs", "a", false, "run command with all environments")
uploadCmd.Flags().BoolVarP(&allenvs, "allenvs", "a", false, "run command with all environments")
openCmd.Flags().BoolVarP(&allenvs, "allenvs", "a", false, "run command with all environments")
bootstrapCmd.Flags().StringVar(&bootstrapVersion, "version", latestRelease, "version of Shopify Timber to use")
bootstrapCmd.Flags().StringVar(&bootstrapPrefix, "prefix", "", "prefix to the Timber theme being created")
updateCmd.Flags().StringVar(&updateVersion, "version", "latest", "version of themekit to install")
ThemeCmd.AddCommand(bootstrapCmd, removeCmd, replaceCmd, uploadCmd, watchCmd, downloadCmd, versionCmd, updateCmd, configureCmd, openCmd)
}
func generateThemeClients() ([]kit.ThemeClient, error) {
themeClients := []kit.ThemeClient{}
if !noUpdateNotifier && kit.IsNewUpdateAvailable() {
kit.Print(kit.YellowText(updateAvailableMessage))
}
setFlagConfig()
environments, err := kit.LoadEnvironments(configPath)
if err != nil {
return themeClients, err
}
if !allenvs {
config, err := environments.GetConfiguration(environment)
if err != nil {
return themeClients, err
}
environments = map[string]*kit.Configuration{environment: config}
}
for env := range environments {
config, err := environments.GetConfiguration(env)
if err != nil {
return themeClients, err
}
client, err := kit.NewThemeClient(config)
if err != nil {
return themeClients, err
}
themeClients = append(themeClients, client)
}
return themeClients, nil
}
type cobraCommandE func(*cobra.Command, []string) error
type allEnvsCommand func(kit.ThemeClient, []string, *sync.WaitGroup)
func forEachClient(handler allEnvsCommand, callbacks ...allEnvsCommand) cobraCommandE {
return func(cmd *cobra.Command, args []string) error {
themeClients, err := generateThemeClients()
if err != nil {
return err
}
wg := sync.WaitGroup{}
for _, client := range themeClients {
wg.Add(1)
go handler(client, args, &wg)
}
wg.Wait()
for _, client := range themeClients {
for _, callback := range callbacks {
callback(client, args, &wg)
}
}
wg.Wait()
return nil
}
}
func setFlagConfig() {
flagConfig.IgnoredFiles = ignoredFiles.Value()
flagConfig.Ignores = ignores.Value()
kit.SetFlagConfig(flagConfig)
}