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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
|
// Copyright 2015 go-swagger maintainers
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package generator
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"log"
"os"
"path"
"path/filepath"
"reflect"
"sort"
"strings"
"text/template"
"github.com/go-openapi/analysis"
"github.com/go-openapi/loads"
"github.com/go-openapi/runtime"
"github.com/go-openapi/spec"
"github.com/go-openapi/swag"
)
//go:generate go-bindata -mode 420 -modtime 1482416923 -pkg=generator -ignore=.*\.sw? -ignore=.*\.md ./templates/...
const (
// default generation targets structure
defaultModelsTarget = "models"
defaultServerTarget = "restapi"
defaultClientTarget = "client"
defaultOperationsTarget = "operations"
defaultClientName = "rest"
defaultServerName = "swagger"
defaultScheme = "http"
)
func init() {
// all initializations for the generator package
debugOptions()
initLanguage()
initTemplateRepo()
initTypes()
}
// DefaultSectionOpts for a given opts, this is used when no config file is passed
// and uses the embedded templates when no local override can be found
func DefaultSectionOpts(gen *GenOpts) {
sec := gen.Sections
if len(sec.Models) == 0 {
sec.Models = []TemplateOpts{
{
Name: "definition",
Source: "asset:model",
Target: "{{ joinFilePath .Target (toPackagePath .ModelPackage) }}",
FileName: "{{ (snakize (pascalize .Name)) }}.go",
},
}
}
if len(sec.Operations) == 0 {
if gen.IsClient {
sec.Operations = []TemplateOpts{
{
Name: "parameters",
Source: "asset:clientParameter",
Target: "{{ joinFilePath .Target (toPackagePath .ClientPackage) (toPackagePath .Package) }}",
FileName: "{{ (snakize (pascalize .Name)) }}_parameters.go",
},
{
Name: "responses",
Source: "asset:clientResponse",
Target: "{{ joinFilePath .Target (toPackagePath .ClientPackage) (toPackagePath .Package) }}",
FileName: "{{ (snakize (pascalize .Name)) }}_responses.go",
},
}
} else {
ops := []TemplateOpts{}
if gen.IncludeParameters {
ops = append(ops, TemplateOpts{
Name: "parameters",
Source: "asset:serverParameter",
Target: "{{ if .UseTags }}{{ joinFilePath .Target (toPackagePath .ServerPackage) (toPackagePath .APIPackage) (toPackagePath .Package) }}{{ else }}{{ joinFilePath .Target (toPackagePath .ServerPackage) (toPackagePath .Package) }}{{ end }}",
FileName: "{{ (snakize (pascalize .Name)) }}_parameters.go",
})
}
if gen.IncludeURLBuilder {
ops = append(ops, TemplateOpts{
Name: "urlbuilder",
Source: "asset:serverUrlbuilder",
Target: "{{ if .UseTags }}{{ joinFilePath .Target (toPackagePath .ServerPackage) (toPackagePath .APIPackage) (toPackagePath .Package) }}{{ else }}{{ joinFilePath .Target (toPackagePath .ServerPackage) (toPackagePath .Package) }}{{ end }}",
FileName: "{{ (snakize (pascalize .Name)) }}_urlbuilder.go",
})
}
if gen.IncludeResponses {
ops = append(ops, TemplateOpts{
Name: "responses",
Source: "asset:serverResponses",
Target: "{{ if .UseTags }}{{ joinFilePath .Target (toPackagePath .ServerPackage) (toPackagePath .APIPackage) (toPackagePath .Package) }}{{ else }}{{ joinFilePath .Target (toPackagePath .ServerPackage) (toPackagePath .Package) }}{{ end }}",
FileName: "{{ (snakize (pascalize .Name)) }}_responses.go",
})
}
if gen.IncludeHandler {
ops = append(ops, TemplateOpts{
Name: "handler",
Source: "asset:serverOperation",
Target: "{{ if .UseTags }}{{ joinFilePath .Target (toPackagePath .ServerPackage) (toPackagePath .APIPackage) (toPackagePath .Package) }}{{ else }}{{ joinFilePath .Target (toPackagePath .ServerPackage) (toPackagePath .Package) }}{{ end }}",
FileName: "{{ (snakize (pascalize .Name)) }}.go",
})
}
sec.Operations = ops
}
}
if len(sec.OperationGroups) == 0 {
if gen.IsClient {
sec.OperationGroups = []TemplateOpts{
{
Name: "client",
Source: "asset:clientClient",
Target: "{{ joinFilePath .Target (toPackagePath .ClientPackage) (toPackagePath .Name)}}",
FileName: "{{ (snakize (pascalize .Name)) }}_client.go",
},
}
} else {
sec.OperationGroups = []TemplateOpts{}
}
}
if len(sec.Application) == 0 {
if gen.IsClient {
sec.Application = []TemplateOpts{
{
Name: "facade",
Source: "asset:clientFacade",
Target: "{{ joinFilePath .Target (toPackagePath .ClientPackage) }}",
FileName: "{{ snakize .Name }}Client.go",
},
}
} else {
sec.Application = []TemplateOpts{
{
Name: "configure",
Source: "asset:serverConfigureapi",
Target: "{{ joinFilePath .Target (toPackagePath .ServerPackage) }}",
FileName: "configure_{{ (snakize (pascalize .Name)) }}.go",
SkipExists: !gen.RegenerateConfigureAPI,
},
{
Name: "main",
Source: "asset:serverMain",
Target: "{{ joinFilePath .Target \"cmd\" .MainPackage }}",
FileName: "main.go",
},
{
Name: "embedded_spec",
Source: "asset:swaggerJsonEmbed",
Target: "{{ joinFilePath .Target (toPackagePath .ServerPackage) }}",
FileName: "embedded_spec.go",
},
{
Name: "server",
Source: "asset:serverServer",
Target: "{{ joinFilePath .Target (toPackagePath .ServerPackage) }}",
FileName: "server.go",
},
{
Name: "builder",
Source: "asset:serverBuilder",
Target: "{{ joinFilePath .Target (toPackagePath .ServerPackage) (toPackagePath .APIPackage) }}",
FileName: "{{ snakize (pascalize .Name) }}_api.go",
},
{
Name: "doc",
Source: "asset:serverDoc",
Target: "{{ joinFilePath .Target (toPackagePath .ServerPackage) }}",
FileName: "doc.go",
},
}
}
}
gen.Sections = sec
}
// TemplateOpts allows for codegen customization
type TemplateOpts struct {
Name string `mapstructure:"name"`
Source string `mapstructure:"source"`
Target string `mapstructure:"target"`
FileName string `mapstructure:"file_name"`
SkipExists bool `mapstructure:"skip_exists"`
SkipFormat bool `mapstructure:"skip_format"`
}
// SectionOpts allows for specifying options to customize the templates used for generation
type SectionOpts struct {
Application []TemplateOpts `mapstructure:"application"`
Operations []TemplateOpts `mapstructure:"operations"`
OperationGroups []TemplateOpts `mapstructure:"operation_groups"`
Models []TemplateOpts `mapstructure:"models"`
}
// GenOpts the options for the generator
type GenOpts struct {
IncludeModel bool
IncludeValidator bool
IncludeHandler bool
IncludeParameters bool
IncludeResponses bool
IncludeURLBuilder bool
IncludeMain bool
IncludeSupport bool
ExcludeSpec bool
DumpData bool
ValidateSpec bool
FlattenOpts *analysis.FlattenOpts
IsClient bool
defaultsEnsured bool
PropertiesSpecOrder bool
StrictAdditionalProperties bool
AllowTemplateOverride bool
Spec string
APIPackage string
ModelPackage string
ServerPackage string
ClientPackage string
Principal string
Target string
Sections SectionOpts
LanguageOpts *LanguageOpts
TypeMapping map[string]string
Imports map[string]string
DefaultScheme string
DefaultProduces string
DefaultConsumes string
WithXML bool
TemplateDir string
Template string
RegenerateConfigureAPI bool
Operations []string
Models []string
Tags []string
StructTags []string
Name string
FlagStrategy string
CompatibilityMode string
ExistingModels string
Copyright string
SkipTagPackages bool
MainPackage string
IgnoreOperations bool
AllowEnumCI bool
StrictResponders bool
AcceptDefinitionsOnly bool
}
// CheckOpts carries out some global consistency checks on options.
func (g *GenOpts) CheckOpts() error {
if g == nil {
return errors.New("gen opts are required")
}
if !filepath.IsAbs(g.Target) {
if _, err := filepath.Abs(g.Target); err != nil {
return fmt.Errorf("could not locate target %s: %v", g.Target, err)
}
}
if filepath.IsAbs(g.ServerPackage) {
return fmt.Errorf("you shouldn't specify an absolute path in --server-package: %s", g.ServerPackage)
}
if strings.HasPrefix(g.Spec, "http://") || strings.HasPrefix(g.Spec, "https://") {
return nil
}
pth, err := findSwaggerSpec(g.Spec)
if err != nil {
return err
}
// ensure spec path is absolute
g.Spec, err = filepath.Abs(pth)
if err != nil {
return fmt.Errorf("could not locate spec: %s", g.Spec)
}
return nil
}
// TargetPath returns the target generation path relative to the server package.
// This method is used by templates, e.g. with {{ .TargetPath }}
//
// Errors cases are prevented by calling CheckOpts beforehand.
//
// Example:
// Target: ${PWD}/tmp
// ServerPackage: abc/efg
//
// Server is generated in ${PWD}/tmp/abc/efg
// relative TargetPath returned: ../../../tmp
//
func (g *GenOpts) TargetPath() string {
var tgt string
if g.Target == "" {
tgt = "." // That's for windows
} else {
tgt = g.Target
}
tgtAbs, _ := filepath.Abs(tgt)
srvPkg := filepath.FromSlash(g.LanguageOpts.ManglePackagePath(g.ServerPackage, "server"))
srvrAbs := filepath.Join(tgtAbs, srvPkg)
tgtRel, _ := filepath.Rel(srvrAbs, filepath.Dir(tgtAbs))
tgtRel = filepath.Join(tgtRel, filepath.Base(tgtAbs))
return tgtRel
}
// SpecPath returns the path to the spec relative to the server package.
// If the spec is remote keep this absolute location.
//
// If spec is not relative to server (e.g. lives on a different drive on windows),
// then the resolved path is absolute.
//
// This method is used by templates, e.g. with {{ .SpecPath }}
//
// Errors cases are prevented by calling CheckOpts beforehand.
func (g *GenOpts) SpecPath() string {
if strings.HasPrefix(g.Spec, "http://") || strings.HasPrefix(g.Spec, "https://") {
return g.Spec
}
// Local specifications
specAbs, _ := filepath.Abs(g.Spec)
var tgt string
if g.Target == "" {
tgt = "." // That's for windows
} else {
tgt = g.Target
}
tgtAbs, _ := filepath.Abs(tgt)
srvPkg := filepath.FromSlash(g.LanguageOpts.ManglePackagePath(g.ServerPackage, "server"))
srvAbs := filepath.Join(tgtAbs, srvPkg)
specRel, err := filepath.Rel(srvAbs, specAbs)
if err != nil {
return specAbs
}
return specRel
}
// EnsureDefaults for these gen opts
func (g *GenOpts) EnsureDefaults() error {
if g.defaultsEnsured {
return nil
}
if g.LanguageOpts == nil {
g.LanguageOpts = DefaultLanguageFunc()
}
DefaultSectionOpts(g)
// set defaults for flattening options
if g.FlattenOpts == nil {
g.FlattenOpts = &analysis.FlattenOpts{
Minimal: true,
Verbose: true,
RemoveUnused: false,
Expand: false,
}
}
if g.DefaultScheme == "" {
g.DefaultScheme = defaultScheme
}
if g.DefaultConsumes == "" {
g.DefaultConsumes = runtime.JSONMime
}
if g.DefaultProduces == "" {
g.DefaultProduces = runtime.JSONMime
}
// always include validator with models
g.IncludeValidator = true
if g.Principal == "" {
g.Principal = iface
}
g.defaultsEnsured = true
return nil
}
func (g *GenOpts) location(t *TemplateOpts, data interface{}) (string, string, error) {
v := reflect.Indirect(reflect.ValueOf(data))
fld := v.FieldByName("Name")
var name string
if fld.IsValid() {
log.Println("name field", fld.String())
name = fld.String()
}
fldpack := v.FieldByName("Package")
pkg := g.APIPackage
if fldpack.IsValid() {
log.Println("package field", fldpack.String())
pkg = fldpack.String()
}
var tags []string
tagsF := v.FieldByName("Tags")
if tagsF.IsValid() {
tags = tagsF.Interface().([]string)
}
var useTags bool
useTagsF := v.FieldByName("UseTags")
if useTagsF.IsValid() {
useTags = useTagsF.Interface().(bool)
}
funcMap := FuncMapFunc(g.LanguageOpts)
pthTpl, err := template.New(t.Name + "-target").Funcs(funcMap).Parse(t.Target)
if err != nil {
return "", "", err
}
fNameTpl, err := template.New(t.Name + "-filename").Funcs(funcMap).Parse(t.FileName)
if err != nil {
return "", "", err
}
d := struct {
Name, Package, APIPackage, ServerPackage, ClientPackage, ModelPackage, MainPackage, Target string
Tags []string
UseTags bool
Context interface{}
}{
Name: name,
Package: pkg,
APIPackage: g.APIPackage,
ServerPackage: g.ServerPackage,
ClientPackage: g.ClientPackage,
ModelPackage: g.ModelPackage,
MainPackage: g.MainPackage,
Target: g.Target,
Tags: tags,
UseTags: useTags,
Context: data,
}
var pthBuf bytes.Buffer
if e := pthTpl.Execute(&pthBuf, d); e != nil {
return "", "", e
}
var fNameBuf bytes.Buffer
if e := fNameTpl.Execute(&fNameBuf, d); e != nil {
return "", "", e
}
return pthBuf.String(), fileName(fNameBuf.String()), nil
}
func (g *GenOpts) render(t *TemplateOpts, data interface{}) ([]byte, error) {
var templ *template.Template
if strings.HasPrefix(strings.ToLower(t.Source), "asset:") {
tt, err := templates.Get(strings.TrimPrefix(t.Source, "asset:"))
if err != nil {
return nil, err
}
templ = tt
}
if templ == nil {
// try to load from repository (and enable dependencies)
name := swag.ToJSONName(strings.TrimSuffix(t.Source, ".gotmpl"))
tt, err := templates.Get(name)
if err == nil {
templ = tt
}
}
if templ == nil {
// try to load template from disk, in TemplateDir if specified
// (dependencies resolution is limited to preloaded assets)
var templateFile string
if g.TemplateDir != "" {
templateFile = filepath.Join(g.TemplateDir, t.Source)
} else {
templateFile = t.Source
}
content, err := ioutil.ReadFile(templateFile)
if err != nil {
return nil, fmt.Errorf("error while opening %s template file: %v", templateFile, err)
}
tt, err := template.New(t.Source).Funcs(FuncMapFunc(g.LanguageOpts)).Parse(string(content))
if err != nil {
return nil, fmt.Errorf("template parsing failed on template %s: %v", t.Name, err)
}
templ = tt
}
if templ == nil {
return nil, fmt.Errorf("template %q not found", t.Source)
}
var tBuf bytes.Buffer
if err := templ.Execute(&tBuf, data); err != nil {
return nil, fmt.Errorf("template execution failed for template %s: %v", t.Name, err)
}
log.Printf("executed template %s", t.Source)
return tBuf.Bytes(), nil
}
// Render template and write generated source code
// generated code is reformatted ("linted"), which gives an
// additional level of checking. If this step fails, the generated
// code is still dumped, for template debugging purposes.
func (g *GenOpts) write(t *TemplateOpts, data interface{}) error {
dir, fname, err := g.location(t, data)
if err != nil {
return fmt.Errorf("failed to resolve template location for template %s: %v", t.Name, err)
}
if t.SkipExists && fileExists(dir, fname) {
debugLog("skipping generation of %s because it already exists and skip_exist directive is set for %s",
filepath.Join(dir, fname), t.Name)
return nil
}
log.Printf("creating generated file %q in %q as %s", fname, dir, t.Name)
content, err := g.render(t, data)
if err != nil {
return fmt.Errorf("failed rendering template data for %s: %v", t.Name, err)
}
if dir != "" {
_, exists := os.Stat(dir)
if os.IsNotExist(exists) {
debugLog("creating directory %q for \"%s\"", dir, t.Name)
// Directory settings consistent with file privileges.
// Environment's umask may alter this setup
if e := os.MkdirAll(dir, 0755); e != nil {
return e
}
}
}
// Conditionally format the code, unless the user wants to skip
formatted := content
var writeerr error
if !t.SkipFormat {
formatted, err = g.LanguageOpts.FormatContent(filepath.Join(dir, fname), content)
if err != nil {
log.Printf("source formatting failed on template-generated source (%q for %s). Check that your template produces valid code", filepath.Join(dir, fname), t.Name)
writeerr = ioutil.WriteFile(filepath.Join(dir, fname), content, 0644) // #nosec
if writeerr != nil {
return fmt.Errorf("failed to write (unformatted) file %q in %q: %v", fname, dir, writeerr)
}
log.Printf("unformatted generated source %q has been dumped for template debugging purposes. DO NOT build on this source!", fname)
return fmt.Errorf("source formatting on generated source %q failed: %v", t.Name, err)
}
}
writeerr = ioutil.WriteFile(filepath.Join(dir, fname), formatted, 0644) // #nosec
if writeerr != nil {
return fmt.Errorf("failed to write file %q in %q: %v", fname, dir, writeerr)
}
return err
}
func fileName(in string) string {
ext := filepath.Ext(in)
return swag.ToFileName(strings.TrimSuffix(in, ext)) + ext
}
func (g *GenOpts) shouldRenderApp(t *TemplateOpts, app *GenApp) bool {
switch swag.ToFileName(swag.ToGoName(t.Name)) {
case "main":
return g.IncludeMain
case "embedded_spec":
return !g.ExcludeSpec
default:
return true
}
}
func (g *GenOpts) shouldRenderOperations() bool {
return g.IncludeHandler || g.IncludeParameters || g.IncludeResponses
}
func (g *GenOpts) renderApplication(app *GenApp) error {
log.Printf("rendering %d templates for application %s", len(g.Sections.Application), app.Name)
for _, templ := range g.Sections.Application {
if !g.shouldRenderApp(&templ, app) {
continue
}
if err := g.write(&templ, app); err != nil {
return err
}
}
return nil
}
func (g *GenOpts) renderOperationGroup(gg *GenOperationGroup) error {
log.Printf("rendering %d templates for operation group %s", len(g.Sections.OperationGroups), g.Name)
for _, templ := range g.Sections.OperationGroups {
if !g.shouldRenderOperations() {
continue
}
if err := g.write(&templ, gg); err != nil {
return err
}
}
return nil
}
func (g *GenOpts) renderOperation(gg *GenOperation) error {
log.Printf("rendering %d templates for operation %s", len(g.Sections.Operations), g.Name)
for _, templ := range g.Sections.Operations {
if !g.shouldRenderOperations() {
continue
}
if err := g.write(&templ, gg); err != nil {
return err
}
}
return nil
}
func (g *GenOpts) renderDefinition(gg *GenDefinition) error {
log.Printf("rendering %d templates for model %s", len(g.Sections.Models), gg.Name)
for _, templ := range g.Sections.Models {
if !g.IncludeModel {
continue
}
if err := g.write(&templ, gg); err != nil {
return err
}
}
return nil
}
func (g *GenOpts) setTemplates() error {
templates.LoadDefaults()
if g.Template != "" {
// set contrib templates
if err := templates.LoadContrib(g.Template); err != nil {
return err
}
}
templates.SetAllowOverride(g.AllowTemplateOverride)
if g.TemplateDir != "" {
// set custom templates
if err := templates.LoadDir(g.TemplateDir); err != nil {
return err
}
}
return nil
}
// defaultImports produces a default map for imports with models
func (g *GenOpts) defaultImports() map[string]string {
baseImport := g.LanguageOpts.baseImport(g.Target)
defaultImports := make(map[string]string, 50)
if g.ExistingModels == "" {
// generated models
importPath := path.Join(
baseImport,
g.LanguageOpts.ManglePackagePath(g.ModelPackage, defaultModelsTarget))
defaultImports[g.LanguageOpts.ManglePackageName(g.ModelPackage, defaultModelsTarget)] = importPath
} else {
// external models
importPath := g.LanguageOpts.ManglePackagePath(g.ExistingModels, "")
defaultImports["models"] = importPath
}
alias, _, target := g.resolvePrincipal()
if alias != "" {
if pth, _ := path.Split(target); pth != "" {
// if principal is specified with an path, generate this import
defaultImports[alias] = target
} else {
// if principal is specified with a relative path, assume it is located in generated target
defaultImports[alias] = path.Join(baseImport, target)
}
}
return defaultImports
}
// initImports produces a default map for import with the specified root for operations
func (g *GenOpts) initImports(operationsPackage string) map[string]string {
baseImport := g.LanguageOpts.baseImport(g.Target)
imports := make(map[string]string, 50)
imports[g.LanguageOpts.ManglePackageName(operationsPackage, defaultOperationsTarget)] = path.Join(
baseImport,
g.LanguageOpts.ManglePackagePath(operationsPackage, defaultOperationsTarget))
return imports
}
// PrincipalAlias returns an aliased type to the principal
func (g *GenOpts) PrincipalAlias() string {
_, principal, _ := g.resolvePrincipal()
return principal
}
func (g *GenOpts) resolvePrincipal() (string, string, string) {
dotLocation := strings.LastIndex(g.Principal, ".")
if dotLocation < 0 {
return "", g.Principal, ""
}
// handle possible conflicts with injected principal package
// NOTE(fred): we do not check here for conflicts with packages created from operation tags, only standard imports
alias := deconflictPrincipal(importAlias(g.Principal[:dotLocation]))
return alias, alias + g.Principal[dotLocation:], g.Principal[:dotLocation]
}
func fileExists(target, name string) bool {
_, err := os.Stat(filepath.Join(target, name))
return !os.IsNotExist(err)
}
func gatherModels(specDoc *loads.Document, modelNames []string) (map[string]spec.Schema, error) {
modelNames = pruneEmpty(modelNames)
models, mnc := make(map[string]spec.Schema), len(modelNames)
defs := specDoc.Spec().Definitions
if mnc > 0 {
var unknownModels []string
for _, m := range modelNames {
_, ok := defs[m]
if !ok {
unknownModels = append(unknownModels, m)
}
}
if len(unknownModels) != 0 {
return nil, fmt.Errorf("unknown models: %s", strings.Join(unknownModels, ", "))
}
}
for k, v := range defs {
if mnc == 0 {
models[k] = v
}
for _, nm := range modelNames {
if k == nm {
models[k] = v
}
}
}
return models, nil
}
// titleOrDefault infers a name for the app from the title of the spec
func titleOrDefault(specDoc *loads.Document, name, defaultName string) string {
if strings.TrimSpace(name) == "" {
if specDoc.Spec().Info != nil && strings.TrimSpace(specDoc.Spec().Info.Title) != "" {
name = specDoc.Spec().Info.Title
} else {
name = defaultName
}
}
return swag.ToGoName(name)
}
func mainNameOrDefault(specDoc *loads.Document, name, defaultName string) string {
// *_test won't do as main server name
return strings.TrimSuffix(titleOrDefault(specDoc, name, defaultName), "Test")
}
func appNameOrDefault(specDoc *loads.Document, name, defaultName string) string {
// *_test won't do as app names
name = strings.TrimSuffix(titleOrDefault(specDoc, name, defaultName), "Test")
if name == "" {
name = swag.ToGoName(defaultName)
}
return name
}
type opRef struct {
Method string
Path string
Key string
ID string
Op *spec.Operation
}
type opRefs []opRef
func (o opRefs) Len() int { return len(o) }
func (o opRefs) Swap(i, j int) { o[i], o[j] = o[j], o[i] }
func (o opRefs) Less(i, j int) bool { return o[i].Key < o[j].Key }
func gatherOperations(specDoc *analysis.Spec, operationIDs []string) map[string]opRef {
operationIDs = pruneEmpty(operationIDs)
var oprefs opRefs
for method, pathItem := range specDoc.Operations() {
for path, operation := range pathItem {
vv := *operation
oprefs = append(oprefs, opRef{
Key: swag.ToGoName(strings.ToLower(method) + " " + strings.Title(path)),
Method: method,
Path: path,
ID: vv.ID,
Op: &vv,
})
}
}
sort.Sort(oprefs)
operations := make(map[string]opRef)
for _, opr := range oprefs {
nm := opr.ID
if nm == "" {
nm = opr.Key
}
oo, found := operations[nm]
if found && oo.Method != opr.Method && oo.Path != opr.Path {
nm = opr.Key
}
if len(operationIDs) == 0 || swag.ContainsStrings(operationIDs, opr.ID) || swag.ContainsStrings(operationIDs, nm) {
opr.ID = nm
opr.Op.ID = nm
operations[nm] = opr
}
}
return operations
}
func pruneEmpty(in []string) (out []string) {
for _, v := range in {
if v != "" {
out = append(out, v)
}
}
return
}
func trimBOM(in string) string {
return strings.Trim(in, "\xef\xbb\xbf")
}
// gatherSecuritySchemes produces a sorted representation from a map of spec security schemes
func gatherSecuritySchemes(securitySchemes map[string]spec.SecurityScheme, appName, principal, receiver string) (security GenSecuritySchemes) {
for scheme, req := range securitySchemes {
isOAuth2 := strings.ToLower(req.Type) == "oauth2"
var scopes []string
if isOAuth2 {
for k := range req.Scopes {
scopes = append(scopes, k)
}
}
sort.Strings(scopes)
security = append(security, GenSecurityScheme{
AppName: appName,
ID: scheme,
ReceiverName: receiver,
Name: req.Name,
IsBasicAuth: strings.ToLower(req.Type) == "basic",
IsAPIKeyAuth: strings.ToLower(req.Type) == "apikey",
IsOAuth2: isOAuth2,
Scopes: scopes,
Principal: principal,
Source: req.In,
// from original spec
Description: req.Description,
Type: strings.ToLower(req.Type),
In: req.In,
Flow: req.Flow,
AuthorizationURL: req.AuthorizationURL,
TokenURL: req.TokenURL,
Extensions: req.Extensions,
})
}
sort.Sort(security)
return
}
// gatherExtraSchemas produces a sorted list of extra schemas.
//
// ExtraSchemas are inlined types rendered in the same model file.
func gatherExtraSchemas(extraMap map[string]GenSchema) (extras GenSchemaList) {
var extraKeys []string
for k := range extraMap {
extraKeys = append(extraKeys, k)
}
sort.Strings(extraKeys)
for _, k := range extraKeys {
// figure out if top level validations are needed
p := extraMap[k]
p.HasValidations = shallowValidationLookup(p)
extras = append(extras, p)
}
return
}
func sharedValidationsFromSimple(v spec.CommonValidations, isRequired bool) (sh sharedValidations) {
sh = sharedValidations{
Required: isRequired,
Maximum: v.Maximum,
ExclusiveMaximum: v.ExclusiveMaximum,
Minimum: v.Minimum,
ExclusiveMinimum: v.ExclusiveMinimum,
MaxLength: v.MaxLength,
MinLength: v.MinLength,
Pattern: v.Pattern,
MaxItems: v.MaxItems,
MinItems: v.MinItems,
UniqueItems: v.UniqueItems,
MultipleOf: v.MultipleOf,
Enum: v.Enum,
}
return
}
func sharedValidationsFromSchema(v spec.Schema, isRequired bool) (sh sharedValidations) {
sh = sharedValidations{
Required: isRequired,
Maximum: v.Maximum,
ExclusiveMaximum: v.ExclusiveMaximum,
Minimum: v.Minimum,
ExclusiveMinimum: v.ExclusiveMinimum,
MaxLength: v.MaxLength,
MinLength: v.MinLength,
Pattern: v.Pattern,
MaxItems: v.MaxItems,
MinItems: v.MinItems,
UniqueItems: v.UniqueItems,
MultipleOf: v.MultipleOf,
Enum: v.Enum,
}
return
}
func dumpData(data interface{}) error {
bb, err := json.MarshalIndent(data, "", " ")
if err != nil {
return err
}
fmt.Fprintln(os.Stdout, string(bb))
return nil
}
func importAlias(pkg string) string {
_, k := path.Split(pkg)
return k
}
|