-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsqlboiler_graphql_schema.go
987 lines (823 loc) · 24 KB
/
sqlboiler_graphql_schema.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
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
981
982
983
984
985
986
987
// TODO: needs big refactor
package gbgen
import (
"fmt"
"os"
"os/exec"
"path"
"strings"
"github.com/web-ridge/gqlgen-sqlboiler/v3/structs"
"github.com/rs/zerolog/log"
"github.com/web-ridge/gqlgen-sqlboiler/v3/cache"
"github.com/iancoleman/strcase"
)
const (
indent = " "
lineBreak = "\n"
)
type SchemaConfig struct {
BoilerCache *cache.BoilerCache
Directives []string
SkipInputFields []string
GenerateBatchCreate bool
GenerateMutations bool
GenerateBatchDelete bool
GenerateBatchUpdate bool
HookShouldAddModel func(model SchemaModel) bool
HookShouldAddField func(model SchemaModel, field SchemaField) bool
HookChangeField func(model *SchemaModel, field *SchemaField)
HookChangeFields func(model *SchemaModel, fields []*SchemaField, parenType ParentType) []*SchemaField
HookChangeModel func(model *SchemaModel)
}
type SchemaGenerateConfig struct {
MergeSchema bool
}
type SchemaModel struct {
Name string
IsView bool
Fields []*SchemaField
}
type SchemaField struct {
Name string
Type string // String, ID, Integer
InputWhereType string
InputCreateType string
InputUpdateType string
InputBatchUpdateType string
InputBatchCreateType string
BoilerField *structs.BoilerField
SkipInput bool
SkipWhere bool
SkipCreate bool
SkipUpdate bool
SkipBatchUpdate bool
SkipBatchCreate bool
InputDirectives []string
Directives []string
}
func NewSchemaField(name string, typ string, boilerField *structs.BoilerField) *SchemaField {
return &SchemaField{
Name: name,
Type: typ,
InputWhereType: typ,
InputCreateType: typ,
InputUpdateType: typ,
InputBatchUpdateType: typ,
InputBatchCreateType: typ,
BoilerField: boilerField,
}
}
func (s *SchemaField) SetInputTypeForAllInputs(v string) {
s.InputWhereType = v
s.InputCreateType = v
s.InputUpdateType = v
s.InputBatchUpdateType = v
s.InputBatchCreateType = v
}
func (s *SchemaField) SetSkipForAllInputs(v bool) {
s.SkipInput = v
s.SkipWhere = v
s.SkipCreate = v
s.SkipUpdate = v
s.SkipBatchUpdate = v
s.SkipBatchCreate = v
}
type ParentType string
const (
ParentTypeNormal ParentType = "Normal"
ParentTypeWhere ParentType = "Where"
ParentTypeCreate ParentType = "Create"
ParentTypeUpdate ParentType = "Update"
ParentTypeBatchUpdate ParentType = "BatchUpdate"
ParentTypeBatchCreate ParentType = "BatchCreate"
)
func SchemaWrite(config SchemaConfig, outputFile string, generateOptions SchemaGenerateConfig) error {
// Generate schema based on config
schema := SchemaGet(config)
// TODO: Write schema to the configured location
if fileExists(outputFile) && generateOptions.MergeSchema {
if err := mergeContentInFile(schema, outputFile); err != nil {
log.Err(err).Msg("Could not write schema to disk")
return err
}
} else {
log.Debug().Int("bytes", len(schema)).Str("file", outputFile).Msg("write GraphQL schema to disk")
if err := writeContentToFile(schema, outputFile); err != nil {
log.Err(err).Msg("Could not write schema to disk")
return err
}
log.Debug().Msg("formatting GraphQL schema")
err := formatFile(outputFile)
log.Debug().Msg("formatted GraphQL schema")
return err
}
return nil
}
func getDirectivesAsString(va []string) string {
a := make([]string, len(va))
for i, v := range va {
a[i] = "@" + v
}
return strings.Join(a, " ")
}
//nolint:gocognit,gocyclo
func SchemaGet(
config SchemaConfig,
) string {
w := &SimpleWriter{}
// Parse structs and their fields based on the sqlboiler model directory
models := executeHooksOnModels(boilerModelsToModels(config.BoilerCache.BoilerModels), config)
fullDirectives := make([]string, len(config.Directives))
for i, defaultDirective := range config.Directives {
fullDirectives[i] = "@" + defaultDirective
w.l(fmt.Sprintf("directive @%v on FIELD_DEFINITION", defaultDirective))
}
w.br()
joinedDirectives := strings.Join(fullDirectives, " ")
w.l(`schema {`)
w.tl(`query: Query`)
if config.GenerateMutations {
w.tl(`mutation: Mutation`)
}
w.l(`}`)
w.br()
w.l(`interface Node {`)
w.tl(`id: ID!`)
w.l(`}`)
w.br()
w.l(`type PageInfo {`)
w.tl(`hasNextPage: Boolean!`)
w.tl(`hasPreviousPage: Boolean!`)
w.tl(`startCursor: String`)
w.tl(`endCursor: String`)
w.l(`}`)
w.br()
// Add helpers for filtering lists
w.l(queryHelperStructs)
for _, enum := range config.BoilerCache.BoilerEnums {
// enum UserRoleFilter { ADMIN, USER }
w.l(fmt.Sprintf(enumFilterHelper, enum.Name))
// enum UserRole { ADMIN, USER }
w.l("enum " + enum.Name + " {")
for _, v := range enum.Values {
w.tl(strcase.ToScreamingSnake(strings.TrimPrefix(v.Name, enum.Name)))
}
w.l("}")
w.br()
}
// Generate sorting helpers
w.l("enum SortDirection { ASC, DESC }")
w.br()
for _, model := range models {
// enum UserSort { FIRST_NAME, LAST_NAME }
w.l("enum " + model.Name + "Sort {")
for _, v := range fieldAsEnumStrings(model.Fields) {
w.tl(v)
}
w.l("}")
w.br()
// input UserOrdering {
// sort: UserSort!
// direction: SortDirection! = ASC
// }
w.l("input " + model.Name + "Ordering {")
w.tl("sort: " + model.Name + "Sort!")
w.tl("direction: SortDirection! = ASC")
w.l("}")
w.br()
// Create basic structs e.g.
// type User {
// firstName: String!
// lastName: String
// isProgrammer: Boolean!
// organization: Organization!
// }
w.l("type " + model.Name + " implements Node {")
for _, field := range enhanceFields(config, model, model.Fields, ParentTypeNormal) {
directives := getDirectivesAsString(field.Directives)
// e.g we have foreign key from user to organization
// organizationID is clutter in your scheme
// you only want Organization and OrganizationID should be skipped
if field.BoilerField.IsRelation {
w.tl(
getRelationName(field) + ": " +
getFinalFullTypeWithRelation(field, ParentTypeNormal) + directives,
)
} else {
fullType := getFinalFullType(field, ParentTypeNormal)
w.tl(field.Name + ": " + fullType + directives)
}
}
w.l("}")
w.br()
//type UserEdge {
// cursor: String!
// node: User
//}
w.l("type " + model.Name + "Edge {")
w.tl(`cursor: String!`)
w.tl(`node: ` + model.Name)
w.l("}")
w.br()
//type UserConnection {
// edges: [UserEdge]
// pageInfo: PageInfo!
//}
w.l("type " + model.Name + "Connection {")
w.tl(`edges: [` + model.Name + `Edge]`)
w.tl(`pageInfo: PageInfo!`)
w.l("}")
w.br()
// generate filter structs per model
// Ignore some specified input fields
// Generate a type safe grapql filter
// Generate the base filter
// type UserFilter {
// search: String
// where: UserWhere
// }
w.l("input " + model.Name + "Filter {")
w.tl("search: String")
w.tl("where: " + model.Name + "Where")
w.l("}")
w.br()
// Generate a where struct
// type UserWhere {
// id: IDFilter
// title: StringFilter
// organization: OrganizationWhere
// or: FlowBlockWhere
// and: FlowBlockWhere
// }
w.l("input " + model.Name + "Where {")
for _, field := range enhanceFields(config, model, model.Fields, ParentTypeWhere) {
if field.SkipInput || field.SkipWhere {
continue
}
directives := getDirectivesAsString(field.InputDirectives)
if field.BoilerField.IsRelation {
// Support filtering in relationships (at least schema wise)
relationName := getRelationName(field)
w.tl(relationName + ": " + field.BoilerField.Relationship.Name + "Where" + directives)
} else {
w.tl(field.Name + ": " + getFilterType(field) + "Filter" + directives)
}
}
w.tl("withDeleted: Boolean")
w.tl("or: " + model.Name + "Where")
w.tl("and: " + model.Name + "Where")
w.l("}")
w.br()
}
w.l("type Query {")
w.tl("node(id: ID!): Node" + joinedDirectives)
for _, model := range models {
// single structs
w.tl(strcase.ToLowerCamel(model.Name) + "(id: ID!): " + model.Name + "!" + joinedDirectives)
// lists
modelPluralName := cache.Plural(model.Name)
arguments := []string{
"first: Int!",
"after: String",
"ordering: [" + model.Name + "Ordering!]",
"filter: " + model.Name + "Filter",
}
w.tl(
strcase.ToLowerCamel(modelPluralName) + "(" + strings.Join(arguments, ", ") + "): " +
model.Name + "Connection!" + joinedDirectives)
}
w.l("}")
w.br()
// Generate input and payloads for mutations
if config.GenerateMutations { //nolint:nestif
for _, model := range models {
if model.IsView {
continue
}
filteredFields := fieldsWithout(model.Fields, config.SkipInputFields)
modelPluralName := cache.Plural(model.Name)
// input UserCreateInput {
// firstName: String!
// lastName: String
// organizationId: ID!
// }
w.l("input " + model.Name + "CreateInput {")
for _, field := range enhanceFields(config, model, filteredFields, ParentTypeCreate) {
if field.SkipInput || field.SkipCreate {
continue
}
// id is not required in create and will be specified in update resolver
if field.Name == "id" {
continue
}
// not possible yet in input
// TODO: make this possible for one-to-one structs?
// only for foreign keys inside model itself
if field.BoilerField.IsRelation && field.BoilerField.IsArray ||
field.BoilerField.IsRelation && !strings.HasSuffix(field.BoilerField.Name, "ID") {
continue
}
directives := getDirectivesAsString(field.InputDirectives)
fullType := getFinalFullType(field, ParentTypeCreate)
w.tl(field.Name + ": " + fullType + directives)
}
w.l("}")
w.br()
// input UserUpdateInput {
// firstName: String!
// lastName: String
// organizationId: ID!
// }
w.l("input " + model.Name + "UpdateInput {")
for _, field := range enhanceFields(config, model, filteredFields, ParentTypeUpdate) {
if field.SkipInput || field.SkipUpdate {
continue
}
// id is not required in create and will be specified in update resolver
if field.Name == "id" {
continue
}
// not possible yet in input
// TODO: make this possible for one-to-one structs?
// only for foreign keys inside model itself
if field.BoilerField.IsRelation && field.BoilerField.IsArray ||
field.BoilerField.IsRelation && !strings.HasSuffix(field.BoilerField.Name, "ID") {
continue
}
directives := getDirectivesAsString(field.InputDirectives)
w.tl(field.Name + ": " + getFinalFullType(field, ParentTypeUpdate) + directives)
}
w.l("}")
w.br()
if config.GenerateBatchCreate {
w.l("input " + modelPluralName + "CreateInput {")
w.tl(strcase.ToLowerCamel(modelPluralName) + ": [" + model.Name + "CreateInput!]!")
w.l("}")
w.br()
}
// if batchUpdate {
// w.l("input " + modelPluralName + "UpdateInput {")
// w.tl(strcase.ToLowerCamel(modelPluralName) + ": [" + model.Name + "UpdateInput!]!")
// w.l("}")
// w.br()
// }
// type UserPayload {
// user: User!
// }
w.l("type " + model.Name + "Payload {")
w.tl(strcase.ToLowerCamel(model.Name) + ": " + model.Name + "!")
w.l("}")
w.br()
// TODO batch, delete input and payloads
// type UserDeletePayload {
// id: ID!
// }
w.l("type " + model.Name + "DeletePayload {")
w.tl("id: ID!")
w.l("}")
w.br()
// type UsersPayload {
// users: [User!]!
// }
if config.GenerateBatchCreate {
w.l("type " + modelPluralName + "Payload {")
w.tl(strcase.ToLowerCamel(modelPluralName) + ": [" + model.Name + "!]!")
w.l("}")
w.br()
}
// type UsersDeletePayload {
// ids: [ID!]!
// }
if config.GenerateBatchDelete {
w.l("type " + modelPluralName + "DeletePayload {")
w.tl("ids: [ID!]!")
w.l("}")
w.br()
}
// type UsersUpdatePayload {
// ok: Boolean!
// }
if config.GenerateBatchUpdate {
w.l("type " + modelPluralName + "UpdatePayload {")
w.tl("ok: Boolean!")
w.l("}")
w.br()
}
}
// Generate mutation queries
w.l("type Mutation {")
for _, model := range models {
if model.IsView {
continue
}
modelPluralName := cache.Plural(model.Name)
// create single
// e.g createUser(input: UserInput!): UserPayload!
w.tl("create" + model.Name + "(input: " + model.Name + "CreateInput!): " +
model.Name + "Payload!" + joinedDirectives)
// create multiple
// e.g createUsers(input: [UsersInput!]!): UsersPayload!
if config.GenerateBatchCreate {
w.tl("create" + modelPluralName + "(input: " + modelPluralName + "CreateInput!): " +
modelPluralName + "Payload!" + joinedDirectives)
}
// update single
// e.g updateUser(id: ID!, input: UserInput!): UserPayload!
w.tl("update" + model.Name + "(id: ID!, input: " + model.Name + "UpdateInput!): " +
model.Name + "Payload!" + joinedDirectives)
// update multiple (batch update)
// e.g updateUsers(filter: UserFilter, input: UsersInput!): UsersPayload!
if config.GenerateBatchUpdate {
w.tl("update" + modelPluralName + "(filter: " + model.Name + "Filter, input: " +
model.Name + "UpdateInput!): " + modelPluralName + "UpdatePayload!" + joinedDirectives)
}
// delete single
// e.g deleteUser(id: ID!): UserPayload!
w.tl("delete" + model.Name + "(id: ID!): " + model.Name + "DeletePayload!" + joinedDirectives)
// delete multiple
// e.g deleteUsers(filter: UserFilter, input: [UsersInput!]!): UsersPayload!
if config.GenerateBatchDelete {
w.tl("delete" + modelPluralName + "(filter: " + model.Name + "Filter): " +
modelPluralName + "DeletePayload!" + joinedDirectives)
}
}
w.l("}")
w.br()
}
return w.s.String()
}
func getFilterType(field *SchemaField) string {
boilerType := field.BoilerField.Type
if boilerType == "null.Time" || boilerType == "time.Time" {
return "TimeUnix"
}
return field.Type
}
func enhanceFields(config SchemaConfig, model *SchemaModel, fields []*SchemaField, parentType ParentType) []*SchemaField {
if config.HookChangeFields != nil {
return config.HookChangeFields(model, fields, parentType)
}
return fields
}
func fieldAsEnumStrings(fields []*SchemaField) []string {
var enums []string
for _, field := range fields {
if field.BoilerField != nil && (!field.BoilerField.IsRelation && !field.BoilerField.IsForeignKey) {
enums = append(enums, strcase.ToScreamingSnake(field.Name))
}
}
return enums
}
func getFullType(fieldType string, isArray bool, isRequired bool) string {
gType := fieldType
if isArray {
// To use a list type, surround the type in square brackets, so [Int] is a list of integers.
gType = "[" + gType + "!]"
}
if isRequired {
// Use an exclamation point to indicate a type cannot be nullable,
// so String! is a non-nullable string.
gType += "!"
}
return gType
}
func boilerModelsToModels(boilerModels []*structs.BoilerModel) []*SchemaModel {
a := make([]*SchemaModel, len(boilerModels))
for i, boilerModel := range boilerModels {
a[i] = &SchemaModel{
Name: boilerModel.Name,
Fields: boilerFieldsToFields(boilerModel.Fields),
IsView: boilerModel.IsView,
}
}
return a
}
// executeHooksOnModels removes structs and fields which the user hooked in into + it can change values
func executeHooksOnModels(models []*SchemaModel, config SchemaConfig) []*SchemaModel {
var a []*SchemaModel
for _, m := range models {
if config.HookShouldAddModel != nil && !config.HookShouldAddModel(*m) {
continue
}
var af []*SchemaField
for _, f := range m.Fields {
if config.HookShouldAddField != nil && !config.HookShouldAddField(*m, *f) {
continue
}
if config.HookChangeField != nil {
config.HookChangeField(m, f)
}
af = append(af, f)
}
m.Fields = af
if config.HookChangeModel != nil {
config.HookChangeModel(m)
}
a = append(a, m)
}
return a
}
func boilerFieldsToFields(boilerFields []*structs.BoilerField) []*SchemaField {
fields := make([]*SchemaField, len(boilerFields))
for i, boilerField := range boilerFields {
fields[i] = boilerFieldToField(boilerField)
}
return fields
}
func getRelationName(schemaField *SchemaField) string {
return strcase.ToLowerCamel(schemaField.BoilerField.RelationshipName)
}
func getAlwaysOptional(parentType ParentType) bool {
return parentType == ParentTypeUpdate || parentType == ParentTypeWhere || parentType == ParentTypeBatchUpdate
}
func getFinalFullTypeWithRelation(schemaField *SchemaField, parentType ParentType) string {
boilerField := schemaField.BoilerField
alwaysOptional := getAlwaysOptional(parentType)
if boilerField.Relationship != nil {
relationType := boilerField.Relationship.Name
if alwaysOptional {
return getFullType(
relationType,
boilerField.IsArray,
false,
)
}
return getFullType(
relationType,
boilerField.IsArray,
boilerField.IsRequired,
)
}
return getFinalFullType(schemaField, parentType)
}
func getFinalFullType(schemaField *SchemaField, parentType ParentType) string {
alwaysOptional := getAlwaysOptional(parentType)
boilerField := schemaField.BoilerField
isRequired := boilerField.IsRequired
if alwaysOptional {
isRequired = false
}
return getFullType(getFieldType(schemaField, parentType), boilerField.IsArray, isRequired)
}
func getFieldType(schemaField *SchemaField, parentType ParentType) string {
switch parentType {
case ParentTypeNormal:
return schemaField.Type
case ParentTypeWhere:
return schemaField.InputWhereType
case ParentTypeCreate:
return schemaField.InputCreateType
case ParentTypeUpdate:
return schemaField.InputUpdateType
case ParentTypeBatchUpdate:
return schemaField.InputBatchUpdateType
case ParentTypeBatchCreate:
return schemaField.InputBatchCreateType
default:
return ""
}
}
func boilerFieldToField(boilerField *structs.BoilerField) *SchemaField {
t := toGraphQLType(boilerField)
return NewSchemaField(toGraphQLName(boilerField.Name), t, boilerField)
}
func toGraphQLName(fieldName string) string {
graphqlName := fieldName
// Golang ID to Id the right way
// Primary key
if graphqlName == "ID" {
graphqlName = "id"
}
if graphqlName == "URL" {
graphqlName = "url"
}
// e.g. OrganizationID, TODO: more robust solution?
graphqlName = strings.Replace(graphqlName, "ID", "Id", -1)
graphqlName = strings.Replace(graphqlName, "URL", "Url", -1)
return strcase.ToLowerCamel(graphqlName)
}
func toGraphQLType(boilerField *structs.BoilerField) string {
lowerBoilerType := strings.ToLower(boilerField.Type)
if boilerField.IsEnum {
return boilerField.Enum.Name
}
if strings.HasSuffix(boilerField.Name, "ID") {
return "ID"
}
if strings.Contains(lowerBoilerType, "string") {
return "String"
}
if strings.Contains(lowerBoilerType, "int") {
return "Int"
}
if strings.Contains(lowerBoilerType, "byte") {
return "String"
}
if strings.Contains(lowerBoilerType, "decimal") || strings.Contains(lowerBoilerType, "float") {
return "Float"
}
if strings.Contains(lowerBoilerType, "bool") {
return "Boolean"
}
// TODO: make this a scalar or something configurable?
// I like to use unix here
// make sure TimeUnixFilter keeps working
if strings.Contains(lowerBoilerType, "time") {
return "Int"
}
// e.g. null.JSON let user define how it looks with their own struct
return strcase.ToCamel(boilerField.Name)
}
func fieldsWithout(fields []*SchemaField, skipFieldNames []string) []*SchemaField {
var filteredFields []*SchemaField
for _, field := range fields {
if !cache.SliceContains(skipFieldNames, field.Name) {
filteredFields = append(filteredFields, field)
}
}
return filteredFields
}
func mergeContentInFile(content, outputFile string) error {
baseFile := filenameWithoutExtension(outputFile) +
"-empty" +
getFilenameExtension(outputFile)
newOutputFile := filenameWithoutExtension(outputFile) +
"-new" +
getFilenameExtension(outputFile)
// remove previous files if exist
_ = os.Remove(baseFile)
_ = os.Remove(newOutputFile)
if err := writeContentToFile(content, newOutputFile); err != nil {
return fmt.Errorf("could not write schema to disk: %v", err)
}
//if err := formatFile(outputFile); err != nil {
// return fmt.Errorf("could not format with prettier %v", err)
//}
//if err := formatFile(newOutputFile); err != nil {
// return fmt.Errorf("could not format with prettier%v", err)
//}
// Three way merging done based on this answer
// https://stackoverflow.com/a/9123563/2508481
// Empty file as base per the stackoverflow answer
name := "touch"
args := []string{baseFile}
out, err := exec.Command(name, args...).Output()
if err != nil {
log.Err(err).Str("name", name).Str("args", strings.Join(args, " ")).Msg("merging failed")
return fmt.Errorf("merging failed %v: %v", err, out)
}
// Let's do the merge
name = "git"
args = []string{"merge-file", outputFile, baseFile, newOutputFile}
out, err = exec.Command(name, args...).Output()
if err != nil {
log.Err(err).Str("name", name).Str("args", strings.Join(args, " ")).Msg("executing command failed")
// remove base file
_ = os.Remove(baseFile)
return fmt.Errorf("merging failed or had conflicts %v: %v", err, out)
}
log.Info().Msg("merging done without conflicts")
// remove files
_ = os.Remove(baseFile)
_ = os.Remove(newOutputFile)
return nil
}
func getFilenameExtension(fn string) string {
return path.Ext(fn)
}
func filenameWithoutExtension(fn string) string {
return strings.TrimSuffix(fn, path.Ext(fn))
}
func formatFile(filename string) error {
name := "prettier"
args := []string{filename, "--write"}
cmd := exec.Command(name, args...)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
err := cmd.Run()
if err != nil {
return fmt.Errorf("executing command: '%v %v' failed with: %v", name, strings.Join(args, " "), err)
}
// fmt.Println(fmt.Sprintf("Formatting of %v done", filename))
return nil
}
func writeContentToFile(content string, filename string) error {
file, err := os.Create(filename)
if err != nil {
return fmt.Errorf("could not write %v to disk: %v", filename, err)
}
// Close file if this functions returns early or at the end
defer func() {
closeErr := file.Close()
if closeErr != nil {
log.Err(closeErr).Msg("error while closing file")
}
}()
if _, err := file.WriteString(content); err != nil {
return fmt.Errorf("could not write content to file %v: %v", filename, err)
}
return nil
}
type SimpleWriter struct {
s strings.Builder
}
func (sw *SimpleWriter) l(v string) {
sw.s.WriteString(v + lineBreak)
}
func (sw *SimpleWriter) br() {
sw.s.WriteString(lineBreak)
}
func (sw *SimpleWriter) tl(v string) {
sw.s.WriteString(indent + v + lineBreak)
}
const enumFilterHelper = `
input %[1]vFilter {
isNull: Boolean
notNull: Boolean
equalTo: %[1]v
notEqualTo: %[1]v
in: [%[1]v!]
notIn: [%[1]v!]
}
`
// TODO: only generate these if they are set
const queryHelperStructs = `
input IDFilter {
isNull: Boolean
notNull: Boolean
equalTo: ID
notEqualTo: ID
in: [ID!]
notIn: [ID!]
}
input StringFilter {
isNullOrEmpty: Boolean
isEmpty: Boolean
isNull: Boolean
notNullOrEmpty: Boolean
notEmpty: Boolean
notNull: Boolean
equalTo: String
notEqualTo: String
in: [String!]
notIn: [String!]
startWith: String
notStartWith: String
endWith: String
notEndWith: String
contain: String
notContain: String
startWithStrict: String # Camel sensitive
notStartWithStrict: String # Camel sensitive
endWithStrict: String # Camel sensitive
notEndWithStrict: String # Camel sensitive
containStrict: String # Camel sensitive
notContainStrict: String # Camel sensitive
}
input IntFilter {
isNullOrZero: Boolean
isNull: Boolean
notNullOrZero: Boolean
notNull: Boolean
equalTo: Int
notEqualTo: Int
lessThan: Int
lessThanOrEqualTo: Int
moreThan: Int
moreThanOrEqualTo: Int
in: [Int!]
notIn: [Int!]
}
input TimeUnixFilter {
isNullOrZero: Boolean
isNull: Boolean
notNullOrZero: Boolean
notNull: Boolean
equalTo: Int
notEqualTo: Int
lessThan: Int
lessThanOrEqualTo: Int
moreThan: Int
moreThanOrEqualTo: Int
}
input FloatFilter {
isNullOrZero: Boolean
isNull: Boolean
notNullOrZero: Boolean
notNull: Boolean
equalTo: Float
notEqualTo: Float
lessThan: Float
lessThanOrEqualTo: Float
moreThan: Float
moreThanOrEqualTo: Float
in: [Float!]
notIn: [Float!]
}
input BooleanFilter {
isNull: Boolean
notNull: Boolean
equalTo: Boolean
notEqualTo: Boolean
}
`