-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcli.go
304 lines (278 loc) · 6.87 KB
/
cli.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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
package main
import (
"context"
"encoding/json"
"fmt"
"io/ioutil"
"log"
"os"
"path"
"sort"
"github.com/gertd/go-pluralize"
"github.com/iancoleman/strcase"
"github.com/maykel/gpg/entity"
"github.com/maykel/gpg/files"
"github.com/maykel/gpg/generator"
"github.com/maykel/gpg/generator/auth"
"github.com/maykel/gpg/generator/aws"
gcli "github.com/maykel/gpg/generator/cli"
"github.com/maykel/gpg/generator/core"
"github.com/maykel/gpg/generator/core/events"
"github.com/maykel/gpg/generator/core/repo"
"github.com/maykel/gpg/generator/graph"
"github.com/maykel/gpg/generator/monitoring"
"github.com/maykel/gpg/generator/proto"
"github.com/maykel/gpg/generator/web"
"github.com/urfave/cli"
"golang.org/x/sync/errgroup"
)
const (
API_PROTOCOL_ALL = "all"
API_PROTOCOL_GRAPHQL = "graphql"
API_PROTOCOL_PROTOBUF = "protobuf"
FLAG_PROTOCOL = "protocol"
FLAG_SELECT_COMBINATIONS = "enable_select_combinations"
FLAG_SKIP_SKEEMA = "skip_skeema"
)
var enableSelectCombinations bool
var skipSkeema bool
func main() {
app := cli.NewApp()
app.Name = "[GPG] Go Project Generator"
app.Flags = []cli.Flag{
&cli.BoolFlag{
Name: FLAG_SELECT_COMBINATIONS,
Usage: "Enable the generation of all select combination methods",
Destination: &enableSelectCombinations,
},
&cli.BoolFlag{
Name: FLAG_SKIP_SKEEMA,
Usage: "Use flag to disable skeem sync with DB",
Destination: &skipSkeema,
},
}
app.Commands = []cli.Command{
{
Name: "genall", // Generates API/Auth and Web management tool
Usage: "Provide a project config file and target directory",
Action: func(c *cli.Context) error {
configPath := c.Args().Get(0)
targetDir := c.Args().Get(1)
project, err := loadProject(configPath)
if err != nil {
panic(err)
}
generateAPI(targetDir, project)
generateWeb(targetDir, project)
return nil
},
},
{
Name: "genweb", // Generates Web management tool
Usage: "Provide a project config file and target directory",
Action: func(c *cli.Context) error {
configPath := c.Args().Get(0)
targetDir := c.Args().Get(1)
project, err := loadProject(configPath)
if err != nil {
panic(err)
}
generateWeb(targetDir, project)
return nil
},
},
{
Name: "genapi", // Generates API/Auth
Usage: "Provide a project config file and target directory",
Action: func(c *cli.Context) error {
configPath := c.Args().Get(0)
targetDir := c.Args().Get(1)
project, err := loadProject(configPath)
if err != nil {
panic(err)
}
generateAPI(targetDir, project)
return nil
},
},
{
Name: "sync-schema", // Generates API/Auth
Usage: "Syncs schema with DB",
Action: func(c *cli.Context) error {
configPath := c.Args().Get(0)
targetDir := c.Args().Get(1)
project, err := loadProject(configPath)
if err != nil {
panic(err)
}
ctx := context.Background()
repo.SyncSchema(ctx, targetDir, project)
return nil
},
},
}
sort.Sort(cli.FlagsByName(app.Flags))
sort.Sort(cli.CommandsByName(app.Commands))
err := app.Run(os.Args)
if err != nil {
log.Fatal(err)
}
}
func loadProject(configPath string) (entity.Project, error) {
project := entity.Project{}
// if empty try looking at the project level
if configPath == "" {
cliDir := files.AppDir()
configPath = path.Join(cliDir, "gpg/project_config.json")
}
data, err := ioutil.ReadFile(configPath)
if err != nil {
fmt.Println("reading error", err)
return project, err
}
if err := json.Unmarshal(data, &project); err != nil {
fmt.Println("unmarshal error", err)
}
res, _ := json.Marshal(project)
fmt.Printf("%v \n", string(res))
pl := pluralize.NewClient()
for _, e := range project.Entities {
for i, f := range e.Fields {
f.ParentIdentifier = e.Identifier
if f.Type == entity.JSONFieldType {
if f.JSONConfig.Identifier == "" {
e.Fields[i].JSONConfig.Identifier = pl.Singular(f.Identifier)
}
}
}
}
fmt.Printf("--[GPG] Project Loaded \n")
project.Identifier = strcase.ToSnake(project.Identifier)
return project, nil
}
type APIGenerator struct {
Name string
Func func() error
Blocking bool
}
func generateAPI(targetDir string, project entity.Project) {
ctx := context.Background()
project.DisableSelectCombinations = !enableSelectCombinations
err := generator.GenerateProjectDirectories(ctx, targetDir, project)
if err != nil {
fmt.Printf("errors generating directories: %v", err)
panic("error generating directories")
}
generators := []APIGenerator{
{
Name: "configuration",
Func: func() error {
return generator.GenerateConfig(ctx, targetDir, project)
},
Blocking: true,
},
{
Name: "core entities",
Func: func() error {
return core.GenerateCoreEntities(ctx, targetDir, project)
},
Blocking: true,
},
{
Name: "core repo",
Func: func() error {
return repo.GenerateCoreRepository(ctx, targetDir, project, skipSkeema)
},
Blocking: true,
},
{
Name: "core events",
Func: func() error {
return events.GenerateCoreEvents(ctx, targetDir, project)
},
Blocking: true,
},
{
Name: "core modules",
Func: func() error {
return core.GenerateCoreModules(ctx, targetDir, project)
},
Blocking: true,
},
{
Name: "graphql",
Func: func() error {
fmt.Printf("protocoool: %v\n", project.API.Protocol)
if project.API.Protocol == API_PROTOCOL_GRAPHQL || project.API.Protocol == API_PROTOCOL_ALL {
return graph.GenerateGraph(ctx, targetDir, project)
}
return nil
},
Blocking: true,
},
{
Name: "proto",
Func: func() error {
return proto.Generate(ctx, targetDir, project)
},
Blocking: true,
},
{
Name: "monitoring",
Func: func() error {
return monitoring.GenerateMonitoring(ctx, targetDir, project)
},
Blocking: true,
},
{
Name: "auth",
Func: func() error {
return auth.GenerateAuth(ctx, targetDir, project)
},
Blocking: true,
},
{
Name: "aws",
Func: func() error {
return aws.GenerateAWSModule(ctx, targetDir, project)
},
Blocking: true,
},
{
Name: "api",
Func: func() error {
return generator.GenerateAPIModule(ctx, targetDir, project)
},
Blocking: true,
},
{
Name: "custom",
Func: func() error {
return generator.GenerateCustom(ctx, targetDir, project)
},
Blocking: true,
},
{
Name: "cli",
Func: func() error {
return gcli.GenerateCLIModule(ctx, targetDir, project)
},
Blocking: true,
},
}
eg := errgroup.Group{}
for _, g := range generators {
eg.Go(g.Func)
}
if err := eg.Wait(); err != nil {
log.Fatalf("error: %v", err)
}
err = generator.GoModTidy(ctx, targetDir, project)
if err != nil {
fmt.Printf("error running go mod tidy: %v", err)
}
}
func generateWeb(targetDir string, project entity.Project) {
ctx := context.Background()
web.GenerateBaseWeb(ctx, targetDir, project)
}