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
|
package main
import (
"errors"
"fmt"
"io"
"os"
"os/exec"
"os/user"
"path/filepath"
"runtime"
"strings"
)
// use `go get` to download addon and add to $GOPATH/src, useful
// for IDE auto-import and code completion, then copy entire directory
// tree to project's ./addons folder
func getAddon(args []string) error {
var cmdOptions []string
var addonPath = args[1]
// Go get
cmdOptions = append(cmdOptions, "get", addonPath)
get := exec.Command(gocmd, cmdOptions...)
get.Stderr = os.Stderr
get.Stdout = os.Stdout
err := get.Start()
if err != nil {
return addError(err)
}
err = get.Wait()
if err != nil {
return addError(err)
}
// copy to ./addons folder
// resolve GOPATH
gopath, err := getGOPATH()
if err != nil {
return addError(err)
}
pwd, err := os.Getwd()
if err != nil {
return addError(err)
}
src := filepath.Join(gopath, "src", addonPath)
// Need to strip the addon name for copyAll?
last := filepath.Base(addonPath)
dest := filepath.Join(pwd, "addons", strings.Replace(addonPath, last, "", 1))
err = replicateAll(src, dest)
if err != nil {
return addError(err)
}
return nil
}
// resolve GOPATH. In 1.8 can be default, or custom. A custom GOPATH can
// also contain multiple paths, in which case 'go get' uses the first
func getGOPATH() (string, error) {
var gopath string
gopath = os.Getenv("GOPATH")
if gopath == "" {
// not set, find the default
usr, err := user.Current()
if err != nil {
return gopath, err
}
gopath = filepath.Join(usr.HomeDir, "go")
} else {
// parse out in case of multiple, retain first
if runtime.GOOS == "windows" {
gopaths := strings.Split(gopath, ";")
gopath = gopaths[0]
} else {
gopaths := strings.Split(gopath, ":")
gopath = gopaths[0]
}
}
return gopath, nil
}
// this is distinct from copyAll() in that files are copied, not moved,
// since we also need them to remain in $GOPATH/src
// thanks to @markc of stack overflow for the copyFile and copyFileContents functions
func replicateAll(src, dst string) error {
err := filepath.Walk(src, func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
sep := string(filepath.Separator)
// base == the ponzu project dir + string(filepath.Separator)
parts := strings.Split(src, sep)
base := strings.Join(parts[:len(parts)-1], sep)
base += sep
target := filepath.Join(dst, path[len(base):])
// if its a directory, make dir in dst
if info.IsDir() {
err := os.MkdirAll(target, os.ModeDir|os.ModePerm)
if err != nil {
return err
}
} else {
// if its a file, copy file to dir of dst
err = copyFile(path, target)
if err != nil {
return err
}
}
return nil
})
if err != nil {
return err
}
return nil
}
// copyFile copies a file from src to dst. if src and dst files exist, and are
// the same, then return success. Otherise, attempt to create a hard link
// between the two files. If that fail, copy the file contents from src to dst.
// thanks to Stack Overflow
func copyFile(src, dst string) (err error) {
sfi, err := os.Stat(src)
if err != nil {
return
}
if !sfi.Mode().IsRegular() {
// cannot copy non-regular files (e.g., directories,
// symlinks, devices, etc.)
return fmt.Errorf("CopyFile: non-regular source file %s (%q)", sfi.Name(), sfi.Mode().String())
}
dfi, err := os.Stat(dst)
if err != nil {
if !os.IsNotExist(err) {
return
}
} else {
if !(dfi.Mode().IsRegular()) {
return fmt.Errorf("CopyFile: non-regular destination file %s (%q)", dfi.Name(), dfi.Mode().String())
}
if os.SameFile(sfi, dfi) {
return
}
}
if err = os.Link(src, dst); err == nil {
return
}
err = copyFileContents(src, dst)
return
}
// copyFileContents copies the contents of the file named src to the file named
// by dst. The file will be created if it does not already exist. If the
// destination file exists, all it's contents will be replaced by the contents
// of the source file.
// Thanks for Stack Overflow
func copyFileContents(src, dst string) (err error) {
in, err := os.Open(src)
if err != nil {
return
}
defer in.Close()
out, err := os.Create(dst)
if err != nil {
return
}
defer func() {
cerr := out.Close()
if err == nil {
err = cerr
}
}()
if _, err = io.Copy(out, in); err != nil {
return
}
err = out.Sync()
return
}
// generic error return
func addError(err error) error {
return errors.New("Ponzu add failed. " + "\n" + err.Error())
}
|