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
|
package main
import (
"errors"
"fmt"
"os"
"os/exec"
"path/filepath"
"strings"
"github.com/spf13/cobra"
)
var newCmd = &cobra.Command{
Use: "new <projectName>",
Short: "creates a 'ponzu' directory by the name supplied as a parameter",
Long: `Creates a 'ponzu' directory by the name supplied as a parameter
immediately following the 'new' option in the $GOPATH/src directory. Note:
'new' depends on the program 'git' and possibly a network connection. If
there is no local repository to clone from at the local machine's $GOPATH,
'new' will attempt to clone the 'github.com/ponzu-cms/ponzu' package from
over the network.
Errors will be reported, but successful commands return nothing.`,
Example: `$ ponzu new myProject
> New ponzu project created at $GOPATH/src/myProject`,
RunE: func(cmd *cobra.Command, args []string) error {
if len(args) < 1 {
return errors.New("project name not supplied")
}
return newProjectInDir(args[0])
},
}
func newProjectInDir(path string) error {
// set path to be nested inside $GOPATH/src
gopath, err := getGOPATH()
if err != nil {
return err
}
path = filepath.Join(gopath, "src", path)
// check if anything exists at the path, ask if it should be overwritten
if _, err = os.Stat(path); !os.IsNotExist(err) {
fmt.Println("Path exists, overwrite contents? (y/N):")
answer, err := getAnswer()
if err != nil {
return err
}
switch answer {
case "n", "no", "\r\n", "\n", "":
fmt.Println("")
case "y", "yes":
err := os.RemoveAll(path)
if err != nil {
return fmt.Errorf("Failed to overwrite %s. \n%s", path, err)
}
return createProjectInDir(path)
default:
fmt.Println("Input not recognized. No files overwritten. Answer as 'y' or 'n' only.")
}
return nil
}
return createProjectInDir(path)
}
func createProjectInDir(path string) error {
gopath, err := getGOPATH()
if err != nil {
return err
}
repo := ponzuRepo
local := filepath.Join(gopath, "src", filepath.Join(repo...))
network := "https://" + strings.Join(repo, "/") + ".git"
if !strings.HasPrefix(path, gopath) {
path = filepath.Join(gopath, path)
}
// create the directory or overwrite it
err = os.MkdirAll(path, os.ModeDir|os.ModePerm)
if err != nil {
return err
}
if dev {
if fork != "" {
local = filepath.Join(gopath, "src", fork)
}
devClone := exec.Command("git", "clone", local, "--branch", "ponzu-dev", "--single-branch", path)
devClone.Stdout = os.Stdout
devClone.Stderr = os.Stderr
err = devClone.Start()
if err != nil {
return err
}
err = devClone.Wait()
if err != nil {
return err
}
err = vendorCorePackages(path)
if err != nil {
return err
}
fmt.Println("Dev build cloned from " + local + ":ponzu-dev")
return nil
}
// try to git clone the repository from the local machine's $GOPATH
localClone := exec.Command("git", "clone", local, path)
localClone.Stdout = os.Stdout
localClone.Stderr = os.Stderr
err = localClone.Start()
if err != nil {
return err
}
err = localClone.Wait()
if err != nil {
fmt.Println("Couldn't clone from", local, "- trying network...")
// try to git clone the repository over the network
networkClone := exec.Command("git", "clone", network, path)
networkClone.Stdout = os.Stdout
networkClone.Stderr = os.Stderr
err = networkClone.Start()
if err != nil {
fmt.Println("Network clone failed to start. Try again and make sure you have a network connection.")
return err
}
err = networkClone.Wait()
if err != nil {
fmt.Println("Network clone failure.")
// failed
return fmt.Errorf("Failed to clone files from local machine [%s] and over the network [%s].\n%s", local, network, err)
}
}
// create an internal vendor directory in ./cmd/ponzu and move content,
// management and system packages into it
err = vendorCorePackages(path)
if err != nil {
return err
}
gitDir := filepath.Join(path, ".git")
err = os.RemoveAll(gitDir)
if err != nil {
fmt.Println("Failed to remove .git directory from your project path. Consider removing it manually.")
}
fmt.Println("New ponzu project created at", path)
return nil
}
func init() {
newCmd.Flags().StringVar(&fork, "fork", "", "modify repo source for Ponzu core development")
newCmd.Flags().BoolVar(&dev, "dev", false, "modify environment for Ponzu core development")
rootCmd.AddCommand(newCmd)
}
|