-
Notifications
You must be signed in to change notification settings - Fork 0
/
gen.go
360 lines (287 loc) · 8.46 KB
/
gen.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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
package gen
import (
"errors"
"fmt"
"github.com/macinnir/dvc/core/lib"
"github.com/macinnir/dvc/core/lib/gen"
"github.com/macinnir/dvc/core/lib/gen/routes"
"github.com/macinnir/dvc/core/lib/gen/typescript"
"go.uber.org/zap"
)
const CommandName = "gen"
// Gen handles the `gen` command
func Cmd(log *zap.Logger, config *lib.Config, args []string) error {
if len(args) == 0 {
log.Warn("Missing gen type")
return errors.New("Missing gen type")
}
cmd := args[0]
force := false
clean := false
for k := range args {
switch args[k] {
case "-f", "--force":
force = true
case "-c", "--clean":
clean = true
}
}
switch cmd {
case "models":
gen.GenModels(config, force, clean)
case "dals":
gen.GenDALs("gen/dal", config, force, clean)
case "interfaces":
gen.GenServicesBootstrap(config)
gen.GenInterfaces("gen/dal", "gen/definitions/dal")
gen.GenInterfaces("core/services", "gen/definitions/services")
gen.GenInterfaces("app/services", "gen/definitions/services")
case "routes":
if e := routes.GenRoutesAndPermissions(config); e != nil {
return e
}
case "ts":
if e := typescript.GenerateTypescriptModels(config); e != nil {
return e
}
case "tsdtos":
fmt.Println("Generating Typescript DTOs")
typescript.GenerateTypesriptDTOs(config)
case "tsperms":
if e := gen.GenTSPerms(config); e != nil {
return e
}
case "goperms":
if e := gen.GenGoPerms(config); e != nil {
return e
}
default:
return errors.New("unknown gen type")
}
return nil
}
// var e error
// // fmt.Printf("Args: %v", args)
// if len(args) < 1 {
// lib.Error("Missing gen type [schema | models | repos | caches | ts] [[--force|-f]] [[--clean|-c]]", c.Options)
// os.Exit(1)
// }
// subCmd := Command(args[0])
// cwd, _ := os.Getwd()
// if len(args) > 0 {
// args = args[1:]
// }
// argLen := len(args)
// g := &gen.Gen{
// Config: config,
// }
// database := c.loadDatabase()
// c.genTableCache(database)
// switch subCmd {
// // case CommandGenCaches:
// // fmt.Println("CommandGenCaches")
// // e = g.GenerateGoCacheFiles(c.Config.Dirs.Cache, database)
// // if e != nil {
// // lib.Error(e.Error(), c.Options)
// // os.Exit(1)
// // }
// case "dals":
// c.GenDals(g, database)
// case CommandGenDal:
// if argLen == 0 {
// lib.Error("Missing dal name", c.Options)
// os.Exit(1)
// }
// // lib.Error(fmt.Sprintf("Args: %s", args[0]), c.Options)
// table, e := database.FindTableByName(args[0])
// if e != nil {
// lib.Error(e.Error(), c.Options)
// os.Exit(1)
// }
// e = g.GenerateGoDAL(table, c.Config.Dirs.Dal)
// if e != nil {
// lib.Error(e.Error(), c.Options)
// os.Exit(1)
// }
// // if c.Options&lib.OptClean == lib.OptClean {
// // g.CleanGoDALs(c.Config.Dirs.Dal, database)
// // }
// // for _, table := range database.Tables {
// // lib.Debugf("Generating dal %s", g.Options, table.Name)
// // e = g.GenerateGoDAL(table, c.Config.Dirs.Dal)
// // if e != nil {
// // return
// // }
// // }
// // if e != nil {
// // lib.Error(e.Error(), c.Options)
// // os.Exit(1)
// // }
// // Create the dal bootstrap file in the dal repo
// e = g.GenerateDALsBootstrapFile(c.Config.Dirs.Dal, database)
// if e != nil {
// lib.Error(e.Error(), c.Options)
// os.Exit(1)
// }
// // e = g.GenerateDALSQL(c.Config.Dirs.Dal, database)
// // if e != nil {
// // lib.Error(e.Error(), c.Options)
// // os.Exit(1)
// // }
// case CommandGenInterfaces:
// c.GenInterfaces(g)
// // result, err := interfaces.Make(files, args.StructType, args.Comment, args.PkgName, args.IfaceName, args.IfaceComment, args.copyDocs, args.CopyTypeDoc)
// case CommandGenRoutes:
// c.GenRoutes(g)
// case CommandGenTests:
// serviceSuffix := "Service"
// srcDir := c.Config.Dirs.Services
// fmt.Println(srcDir)
// var files []os.FileInfo
// // DAL
// if files, e = ioutil.ReadDir(srcDir); e != nil {
// fmt.Println("ERROR", e.Error())
// return
// }
// for _, f := range files {
// // Filter out files that don't have upper case first letter names
// if !unicode.IsUpper([]rune(f.Name())[0]) {
// continue
// }
// srcFile := path.Join(srcDir, f.Name())
// // Remove the go extension
// baseName := f.Name()[0 : len(f.Name())-3]
// // Skip over EXT files
// if baseName[len(baseName)-3:] == "Ext" {
// continue
// }
// // Skip over test files
// if baseName[len(baseName)-5:] == "_test" {
// continue
// }
// // fmt.Println(baseName)
// if baseName == "DesignationService" {
// e = g.GenServiceTest(baseName[0:len(baseName)-len(serviceSuffix)], srcFile)
// if e != nil {
// panic(e)
// }
// }
// }
// case CommandGenModels:
// c.GenModels(g, database)
// // // Config.go
// // if _, e = os.Stat(path.Join(modelsDir, "Config.go")); os.IsNotExist(e) {
// // lib.Debugf("Generating default Config.go file at %s", c.Options, path.Join(modelsDir, "Config.go"))
// // g.GenerateDefaultConfigModelFile(modelsDir)
// // }
// // config.json
// // if _, e = os.Stat(path.Join(cwd, "config.json")); os.IsNotExist(e) {
// // lib.Debugf("Generating default config.json file at %s", c.Options, path.Join(cwd, "config.json"))
// // g.GenerateDefaultConfigJsonFile(cwd)
// // }
// case CommandGenServices:
// g.GenerateServiceInterfaces(c.Config.Dirs.Definitions, c.Config.Dirs.Services)
// g.GenerateServiceBootstrapFile(c.Config.Dirs.Services)
// case CommandGenApp:
// g.GenerateGoApp(cwd)
// // case CommandGenCLI:
// // g.GenerateGoCLI(cwd)
// case CommandGenAPI:
// // g.GenerateGoAPI(cwd)
// g.GenerateAPIRoutes(c.Config.Dirs.API)
// case CommandGenTSPerms:
// tsFile := g.BuildTypescriptPermissions()
// fmt.Println(tsFile)
// case CommandGenAPITests:
// c.GenAPITests(g)
// case "ts":
// g.GenerateTypescriptTypesFile(c.Config.Dirs.Typescript, database)
// default:
// lib.Errorf("Unknown output type: `%s`", c.Options, subCmd)
// os.Exit(1)
// }
// }
// g.GenMeta("meta", database)
// c.saveTableCache()
// // e = g.GenerateDALSQL(c.Config.Dirs.Dal, database)
// // if e != nil {
// // lib.Error(e.Error(), c.Options)
// // os.Exit(1)
// // }
// }
// // GenDals generates dals
// func (c *Cmd) GenDals(g *gen.Gen, database *schema.Schema) {
// force := c.Options&lib.OptForce == lib.OptForce
// clean := c.Options&lib.OptClean == lib.OptClean
// if clean {
// g.CleanGoDALs(c.Config.Dirs.Dal, database)
// }
// fmt.Println("Generating dals...")
// var e error
// // Loop through the schema's tables and build md5 hashes of each to check against
// for _, table := range database.Tables {
// // If the model has been hashed before...
// if _, ok := c.existingModels.Dals[table.Name]; ok {
// // And the hash hasn't changed, skip...
// if c.newModels[table.Name] == c.existingModels.Dals[table.Name] && !force {
// // fmt.Printf("Table `%s` hasn't changed! Skipping...\n", table.Name)
// continue
// }
// }
// // Update the dals cache
// c.existingModels.Dals[table.Name] = c.newModels[table.Name]
// fmt.Printf("Generating %sDAL...\n", table.Name)
// e = g.GenerateGoDAL(table, c.Config.Dirs.Dal)
// if e != nil {
// lib.Error(e.Error(), c.Options)
// os.Exit(1)
// }
// }
// c.saveTableCache()
// // Create the dal bootstrap file in the dal repo
// e = g.GenerateDALsBootstrapFile(c.Config.Dirs.Dal, database)
// if e != nil {
// lib.Error(e.Error(), c.Options)
// os.Exit(1)
// }
// // e = g.GenerateDALSQL(c.Config.Dirs.Dal, database)
// // if e != nil {
// // lib.Error(e.Error(), c.Options)
// // os.Exit(1)
// // }
// }
// // GenInterfaces generates interfaces
// func (c *Cmd) GenInterfaces(g *gen.Gen) {
// fmt.Println("Generating interfaces...")
// var e error
// e = genInterfaces(c.Config.Dirs.Dal, "dal")
// if e != nil {
// fmt.Println("ERROR", e.Error())
// os.Exit(1)
// }
// e = genInterfaces(c.Config.Dirs.Services, "services")
// if e != nil {
// fmt.Println("ERROR", e.Error())
// os.Exit(1)
// }
// }
// // GenRoutes generates routes
// func (c *Cmd) GenRoutes(g *gen.Gen) {
// fmt.Println("Generating routes...")
// var e error
// e = g.GenRoutes()
// if e != nil {
// lib.Error(e.Error(), c.Options)
// os.Exit(1)
// }
// }
// // GenAPITests generates routes
// func (c *Cmd) GenAPITests(g *gen.Gen) {
// fmt.Println("Generating api tests...")
// var e error
// e = g.GenAPITests()
// if e != nil {
// lib.Error(e.Error(), c.Options)
// os.Exit(1)
// }
// }