forked from jenkins-x/jx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate_jhipster.go
135 lines (116 loc) · 3.4 KB
/
create_jhipster.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
package cmd
import (
"fmt"
"io"
"os"
"github.com/spf13/cobra"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
"github.com/jenkins-x/jx/pkg/log"
"github.com/jenkins-x/jx/pkg/util"
)
var (
createJHipsterLong = templates.LongDesc(`
Creates a new JHipster application and then optionally setups CI/CD pipelines and GitOps promotion.
JHipster is an application generator for gRPC services in Go with a set of tools/libraries.
This command is expected to be run within your '$GOHOME' directory. e.g. at '$GOHOME/src/github.com/myOrgOrUser/'
For more documentation about JHipster see: [https://www.jhipster.tech/](https://www.jhipster.tech/)
`)
createJHipsterExample = templates.Examples(`
# Create a JHipster application and be prompted for the folder name
jx create jhipster
# Create a JHipster application in the myname sub-folder folder
jx create jhipster myname
`)
)
// CreateJHipsterOptions the options for the create spring command
type CreateJHipsterOptions struct {
CreateProjectOptions
}
// NewCmdCreateJHipster creates a command object for the "create" command
func NewCmdCreateJHipster(f Factory, out io.Writer, errOut io.Writer) *cobra.Command {
options := &CreateJHipsterOptions{
CreateProjectOptions: CreateProjectOptions{
ImportOptions: ImportOptions{
CommonOptions: CommonOptions{
Factory: f,
Out: out,
Err: errOut,
},
},
},
}
cmd := &cobra.Command{
Use: "jhipster",
Short: "Create a new JHipster based application and import the generated code into git and Jenkins for CI/CD",
Long: createJHipsterLong,
Example: createJHipsterExample,
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
CheckErr(err)
},
}
options.addCreateAppFlags(cmd)
return cmd
}
// checkJHipsterInstalled lazily install JHipster if its not installed already
func (o CreateJHipsterOptions) checkJHipsterInstalled() error {
_, err := o.getCommandOutput("", "jhipster", "--version")
if err != nil {
log.Infoln("Installing JHipster..")
_, err = o.getCommandOutput("", "rimraf", "--version")
if err != nil {
log.Infoln("Installing rimraf..")
_, err = o.getCommandOutput("", "npm", "install", "-g", "rimraf")
if err != nil {
return err
}
}
err = o.RunCommand("yarn", "global", "add", "generator-jhipster")
if err != nil {
return err
}
log.Infoln("Installed JHipster")
}
return err
}
// GenerateJHipster creates a fresh JHipster project by running jhipster on local shell
func (o CreateJHipsterOptions) GenerateJHipster(dir string) error {
err := os.MkdirAll(dir, DefaultWritePermissions)
if err != nil {
return err
}
return o.runCommandInteractiveInDir(!o.BatchMode, dir, "jhipster")
}
// Run implements the command
func (o *CreateJHipsterOptions) Run() error {
err := o.checkJHipsterInstalled()
if err != nil {
return err
}
dir := ""
args := o.Args
if len(args) > 0 {
dir = args[0]
}
if dir == "" {
if o.BatchMode {
return util.MissingOption(optionOutputDir)
}
dir, err = util.PickValue("Pick the name of the new project:", "myhipster", true)
if err != nil {
return err
}
if dir == "" || dir == "." {
return fmt.Errorf("Invalid project name: %s", dir)
}
}
log.Blank()
err = o.GenerateJHipster(dir)
if err != nil {
return err
}
log.Infof("Created JHipster project at %s\n\n", util.ColorInfo(dir))
return o.ImportCreatedProject(dir)
}