forked from zulily/boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
253 lines (216 loc) · 6.24 KB
/
main.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
/*
* Copyright (C) 2015 zulily, Inc.
*
* 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 main
import (
"bufio"
"errors"
"flag"
"fmt"
"io/ioutil"
"os"
"os/exec"
"path"
"regexp"
"strings"
"text/template"
)
var (
validDockerName = regexp.MustCompile("^[a-z0-9-_.]+$")
)
// exists returns whether the given file or directory exists or not
func exists(path string) (bool, error) {
_, err := os.Stat(path)
if err == nil {
return true, nil
}
if os.IsNotExist(err) {
return false, nil
}
return false, err
}
// ensureGopath ensures that the $GOPATH env var is set, and that it points to
// a dir that exists
func ensureGopath() (string, error) {
gopath := os.Getenv("GOPATH")
if gopath == "" {
return "", errors.New("$GOPATH is not set")
}
if ex, err := exists(gopath); err != nil {
return "", err
} else if !ex {
return "", fmt.Errorf("GOPATH does not exist at: %s", gopath)
}
fmt.Printf("GOPATH is: %s\n", gopath)
return gopath, nil
}
// validateNames ensures that each component of the Docker repository name
// complies with the naming restrictions
func validateNames(t Target) error {
for _, name := range []string{t.Repository, t.Namespace, t.Project} {
if !validDockerName.MatchString(name) {
return fmt.Errorf("invalid name '%s'. Only [a-z0-9-_.] are allowed.", name)
}
}
return nil
}
// deployScaffold creates the directory structure for a new Go project and
// copies any required non-template files into it
func deployScaffold(root string) error {
if ex, err := exists(root); err != nil {
return err
} else if ex {
fmt.Printf("%s already exists. Overwrite existing files? [y/n]: ", root)
reader := bufio.NewReader(os.Stdin)
if text, err := reader.ReadString('\n'); err != nil {
return err
} else if !strings.EqualFold(strings.TrimSpace(text), "y") {
return fmt.Errorf("%s already exists", root)
}
}
fmt.Printf("Boilerplating the project at: %s\n", root)
if err := os.MkdirAll(path.Join(root, "build"), 0755); err != nil {
return err
}
byts, err := Asset("build/Dockerfile")
if err != nil {
return err
}
if err := ioutil.WriteFile(path.Join(root, "build", "Dockerfile"), byts, 0644); err != nil {
return err
}
return nil
}
// deployTemplate parses and executes a template to a new file under the
// specified `root` dir. Template files are assumed to end with ".template".
// A templated file named `foo.template` will be placed at `root/foo`.
func deployTemplate(root, tmpl string, target Target) error {
fm := template.FuncMap{
"ToUpper": strings.ToUpper,
}
// Get the template data from the embedded asset (using the Asset func
// provided by go-bindata)
templData, err := Asset(tmpl)
if err != nil {
return err
}
fname := tmpl[:len(tmpl)-len(".template")]
fmt.Printf("Creating new: %s\n", fname)
t := template.Must(template.New(tmpl).Funcs(fm).Parse(string(templData)))
if f, err := os.Create(path.Join(root, fname)); err != nil {
return err
} else {
defer f.Close()
return t.Execute(f, target)
}
}
// Target represents a Go build target; typically a binary
type Target struct {
// Respository is the name of the source control repository (e.g. github.com)
Repository string
// Namespace is the name of the organization/group in the repository (e.g. zulily)
Namespace string
// Project is the name of the binary or package (e.g. fizzbuzz)
Project string
}
var opts struct {
verbose bool
Target
}
func die(err error) {
fmt.Println(err.Error())
os.Exit(1)
}
func main() {
flag.StringVar(&opts.Repository, "repository", "", "the name of the git repository (e.g. github.com)")
flag.StringVar(&opts.Namespace, "namespace", "", "the name of the organization/group in the repository (e.g. zulily)")
flag.StringVar(&opts.Project, "project", "", "the name of the project (e.g. fizzbuzz)")
flag.BoolVar(&opts.verbose, "verbose", false, "toggles verbose output")
flag.Parse()
scanner := bufio.NewScanner(os.Stdin)
if opts.Repository == "" {
fmt.Printf("Enter the name of git repository (e.g. github.com): ")
if scanner.Scan() {
opts.Repository = scanner.Text()
}
}
if opts.Namespace == "" {
fmt.Printf("Enter the namespace in the repository (e.g. zulily): ")
if scanner.Scan() {
opts.Namespace = scanner.Text()
}
}
if opts.Project == "" {
fmt.Printf("Enter the name of the project (e.g. fizzbuzz): ")
if scanner.Scan() {
opts.Project = scanner.Text()
}
}
if err := validateNames(opts.Target); err != nil {
die(err)
}
gopath, err := ensureGopath()
if err != nil {
die(err)
}
// the "root" dir is at: $GOPATH/src/github.com/zulily/fizzbuzz
root := path.Join(gopath, "src", opts.Target.Repository, opts.Target.Namespace, opts.Target.Project)
err = deployScaffold(root)
if err != nil {
die(err)
}
for _, templ := range AssetNames() {
if templ == "main.go.template" {
// Only create a "main.go" if one isn't already present
if ex, err := exists(path.Join(root, "main.go")); err != nil {
die(err)
} else if ex {
continue
}
}
if err = deployTemplate(root, templ, opts.Target); err != nil {
die(err)
}
}
out := ioutil.Discard
if opts.verbose {
out = os.Stdout
}
// Initialize the git repo if it's not already present
if ex, err := exists(path.Join(root, ".git")); err != nil {
die(err)
} else if !ex {
fmt.Println("Initializing git repo")
c := exec.Command("git", "init")
c.Dir = root
c.Stdout, c.Stderr = out, out
if err = c.Run(); err != nil {
die(err)
}
}
// Initialize the godep workspace if it's not already present
if ex, err := exists(path.Join(root, "Godeps", "_workspace")); err != nil {
die(err)
} else if !ex {
fmt.Println("Initializing godeps")
c := exec.Command("make", "godep")
c.Dir = root
c.Stdout, c.Stderr = out, out
if err = c.Run(); err != nil {
die(err)
}
}
fmt.Println("Done")
}