-
Notifications
You must be signed in to change notification settings - Fork 1
/
condition.pb.parentname.go
689 lines (604 loc) · 15.5 KB
/
condition.pb.parentname.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
// Code generated by protoc-gen-goten-resource
// Resource: Condition
// DO NOT EDIT!!!
package condition
import (
"fmt"
"net/url"
"reflect"
"regexp"
"strings"
"github.com/google/cel-go/common/types"
"github.com/google/cel-go/common/types/ref"
"github.com/google/cel-go/common/types/traits"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
"google.golang.org/protobuf/proto"
"github.com/cloudwan/goten-sdk/runtime/goten"
gotenresource "github.com/cloudwan/goten-sdk/runtime/resource"
)
// proto imports
import (
ntt_meta "github.com/cloudwan/edgelq-sdk/common/types/meta"
organization "github.com/cloudwan/edgelq-sdk/iam/resources/v1alpha2/organization"
project "github.com/cloudwan/edgelq-sdk/iam/resources/v1alpha2/project"
)
// ensure the imports are used
var (
_ = codes.NotFound
_ = fmt.Stringer(nil)
_ = proto.Message(nil)
_ = status.Status{}
_ = url.URL{}
_ = strings.Builder{}
_ = goten.GotenMessage(nil)
_ = gotenresource.ListQuery(nil)
)
// make sure we're using proto imports
var (
_ = &ntt_meta.Meta{}
_ = &organization.Organization{}
_ = &project.Project{}
)
var parentRegexPath = regexp.MustCompile("^$")
var parentRegexPath_Project = regexp.MustCompile("^projects/(?P<project_id>-|[\\w][\\w.-]{0,127})$")
var parentRegexPath_Organization = regexp.MustCompile("^organizations/(?P<organization_id>-|[\\w][\\w.-]{0,127})$")
type ParentName struct {
NamePattern
ProjectId string `firestore:"projectId"`
OrganizationId string `firestore:"organizationId"`
}
func ParseParentName(name string) (*ParentName, error) {
var matches []string
if matches = parentRegexPath.FindStringSubmatch(name); matches != nil {
return NewNameBuilder().
Parent(), nil
}
if matches = parentRegexPath_Project.FindStringSubmatch(name); matches != nil {
return NewNameBuilder().
SetProjectId(matches[1]).
Parent(), nil
}
if matches = parentRegexPath_Organization.FindStringSubmatch(name); matches != nil {
return NewNameBuilder().
SetOrganizationId(matches[1]).
Parent(), nil
}
return nil, status.Errorf(codes.InvalidArgument, "unable to parse '%s' as Condition parent name", name)
}
func MustParseParentName(name string) *ParentName {
result, err := ParseParentName(name)
if err != nil {
panic(err)
}
return result
}
func (name *ParentName) SetFromSegments(segments gotenresource.NameSegments) error {
if len(segments) == 0 {
name.Pattern = NamePattern_Nil
return nil
} else if len(segments) == 1 && segments[0].CollectionLowerJson == "projects" {
name.Pattern = NamePattern_Project
name.ProjectId = segments[0].Id
return nil
} else if len(segments) == 1 && segments[0].CollectionLowerJson == "organizations" {
name.Pattern = NamePattern_Organization
name.OrganizationId = segments[0].Id
return nil
}
return status.Errorf(codes.InvalidArgument, "unable to use segments %s to form Condition parent name", segments)
}
func (name *ParentName) GetProjectName() *project.Name {
if name == nil {
return nil
}
switch name.Pattern {
case NamePattern_Project:
return project.NewNameBuilder().
SetId(name.ProjectId).
Name()
default:
return nil
}
}
func (name *ParentName) GetOrganizationName() *organization.Name {
if name == nil {
return nil
}
switch name.Pattern {
case NamePattern_Organization:
return organization.NewNameBuilder().
SetId(name.OrganizationId).
Name()
default:
return nil
}
}
func (name *ParentName) IsSpecified() bool {
if name == nil || name.Pattern == "" {
return false
}
switch name.Pattern {
case NamePattern_Nil:
return true
case NamePattern_Project:
return name.ProjectId != ""
case NamePattern_Organization:
return name.OrganizationId != ""
}
return false
}
func (name *ParentName) IsFullyQualified() bool {
if name == nil || name.Pattern == "" {
return false
}
switch name.Pattern {
case NamePattern_Nil:
return true
case NamePattern_Project:
return name.ProjectId != "" && name.ProjectId != gotenresource.WildcardId
case NamePattern_Organization:
return name.OrganizationId != "" && name.OrganizationId != gotenresource.WildcardId
}
return false
}
func (name *ParentName) FullyQualifiedName() (string, error) {
if !name.IsFullyQualified() {
return "", status.Errorf(codes.InvalidArgument, "Parent name for Condition is not fully qualified")
}
return fmt.Sprintf("//iam.edgelq.com/%s", name.String()), nil
}
func (name *ParentName) GetResourceDescriptor() gotenresource.Descriptor {
return descriptor
}
func (name *ParentName) GetPattern() gotenresource.NamePattern {
if name == nil {
return ""
}
return name.Pattern
}
func (name *ParentName) GetIdParts() map[string]string {
if name != nil {
return map[string]string{
"projectId": name.ProjectId,
"organizationId": name.OrganizationId,
}
}
return map[string]string{
"projectId": "",
"organizationId": "",
}
}
func (name *ParentName) GetSegments() gotenresource.NameSegments {
if name == nil {
return nil
}
switch name.Pattern {
case NamePattern_Nil:
return gotenresource.NameSegments{}
case NamePattern_Project:
return gotenresource.NameSegments{
gotenresource.NameSegment{
CollectionLowerJson: "projects",
Id: name.ProjectId,
},
}
case NamePattern_Organization:
return gotenresource.NameSegments{
gotenresource.NameSegment{
CollectionLowerJson: "organizations",
Id: name.OrganizationId,
},
}
}
return nil
}
func (name *ParentName) GetIParentName() gotenresource.Name {
return nil
}
func (name *ParentName) GetIUnderlyingParentName() gotenresource.Name {
return nil
}
func (name *ParentName) String() string {
if name == nil {
return "<nil>"
}
if valueStr, err := name.ProtoString(); err != nil {
panic(err)
} else {
return valueStr
}
}
func (name *ParentName) DescendsFrom(ancestor string) bool {
if name == nil {
return false
}
switch name.Pattern {
case NamePattern_Project:
return ancestor == "projects"
case NamePattern_Organization:
return ancestor == "organizations"
}
return false
}
func (name *ParentName) AsReference() *ParentReference {
return &ParentReference{ParentName: *name}
}
func (name *ParentName) AsRawReference() gotenresource.Reference {
return name.AsReference()
}
// implement methods required by protobuf-go library for string-struct conversion
func (name *ParentName) ProtoString() (string, error) {
if name == nil {
return "", nil
}
switch name.Pattern {
case NamePattern_Project:
return "projects/" + name.ProjectId, nil
case NamePattern_Organization:
return "organizations/" + name.OrganizationId, nil
}
return "", nil
}
func (name *ParentName) ParseProtoString(data string) error {
parsed, err := ParseParentName(data)
if err != nil {
return err
}
*name = *parsed
return nil
}
// GotenEqual returns true if other is of same type and paths are equal (implements goten.Equaler interface)
func (name *ParentName) GotenEqual(other interface{}) bool {
if other == nil {
return name == nil
}
other1, ok := other.(*ParentName)
if !ok {
other2, ok := other.(ParentName)
if ok {
other1 = &other2
} else {
return false
}
}
if other1 == nil {
return name == nil
} else if name == nil {
return false
}
if name.ProjectId != other1.ProjectId {
return false
}
if name.OrganizationId != other1.OrganizationId {
return false
}
if name.Pattern != other1.Pattern {
return false
}
return true
}
// Matches is same as GotenEqual, but also will accept "other" if name is wildcard.
func (name *ParentName) Matches(other interface{}) bool {
if other == nil {
return name == nil
}
other1, ok := other.(*ParentName)
if !ok {
other2, ok := other.(ParentName)
if ok {
other1 = &other2
} else {
return false
}
}
if other1 == nil {
return name == nil
} else if name == nil {
return false
}
if name.Pattern != other1.Pattern {
return false
}
switch name.Pattern {
case NamePattern_Project:
if name.ProjectId != other1.ProjectId &&
name.ProjectId != gotenresource.WildcardId {
return false
}
case NamePattern_Organization:
if name.OrganizationId != other1.OrganizationId &&
name.OrganizationId != gotenresource.WildcardId {
return false
}
}
return true
}
// implement CustomTypeCliValue method
func (name *ParentName) SetFromCliFlag(raw string) error {
parsedName, err := ParseParentName(raw)
if err != nil {
return err
}
*name = *parsedName
return nil
}
type ParentReference struct {
ParentName
project *project.Project
organization *organization.Organization
}
func MakeParentReference(name *ParentName) (*ParentReference, error) {
return &ParentReference{
ParentName: *name,
}, nil
}
func ParseParentReference(name string) (*ParentReference, error) {
parsedName, err := ParseParentName(name)
if err != nil {
return nil, err
}
return MakeParentReference(parsedName)
}
func MustParseParentReference(name string) *ParentReference {
result, err := ParseParentReference(name)
if err != nil {
panic(err)
}
return result
}
func (ref *ParentReference) GetProjectReference() *project.Reference {
if ref == nil {
return nil
}
switch ref.Pattern {
case NamePattern_Project:
return project.NewNameBuilder().
SetId(ref.ProjectId).
Reference()
default:
return nil
}
}
func (ref *ParentReference) GetOrganizationReference() *organization.Reference {
if ref == nil {
return nil
}
switch ref.Pattern {
case NamePattern_Organization:
return organization.NewNameBuilder().
SetId(ref.OrganizationId).
Reference()
default:
return nil
}
}
func (ref *ParentReference) GetUnderlyingReference() gotenresource.Reference {
if ref == nil {
return nil
}
projectRef := ref.GetProjectReference()
if projectRef != nil {
return projectRef
}
organizationRef := ref.GetOrganizationReference()
if organizationRef != nil {
return organizationRef
}
return nil
}
func (ref *ParentReference) ResolveRaw(res gotenresource.Resource) error {
switch typedRes := res.(type) {
case *project.Project:
if name := ref.GetProjectName(); name == nil {
return status.Errorf(codes.InvalidArgument, "cannot set Project as parent of Condition, because pattern does not match")
}
ref.project = typedRes
return nil
case *organization.Organization:
if name := ref.GetOrganizationName(); name == nil {
return status.Errorf(codes.InvalidArgument, "cannot set Organization as parent of Condition, because pattern does not match")
}
ref.organization = typedRes
return nil
default:
return status.Errorf(codes.Internal, "Invalid parent type for Condition, got %s", reflect.TypeOf(res).Elem().Name())
}
}
func (ref *ParentReference) Resolved() bool {
if name := ref.GetProjectName(); name != nil {
return ref.project != nil
}
if name := ref.GetOrganizationName(); name != nil {
return ref.organization != nil
}
return true
}
func (ref *ParentReference) ClearCached() {
ref.project = nil
ref.organization = nil
}
func (ref *ParentReference) GetProject() *project.Project {
if ref == nil {
return nil
}
return ref.project
}
func (ref *ParentReference) GetOrganization() *organization.Organization {
if ref == nil {
return nil
}
return ref.organization
}
func (ref *ParentReference) GetRawResource() gotenresource.Resource {
if name := ref.ParentName.GetProjectName(); name != nil {
return ref.project
}
if name := ref.ParentName.GetOrganizationName(); name != nil {
return ref.organization
}
return nil
}
func (ref *ParentReference) IsFullyQualified() bool {
if ref == nil {
return false
}
return ref.ParentName.IsFullyQualified()
}
func (ref *ParentReference) IsSpecified() bool {
if ref == nil {
return false
}
return ref.ParentName.IsSpecified()
}
func (ref *ParentReference) GetResourceDescriptor() gotenresource.Descriptor {
return descriptor
}
func (ref *ParentReference) GetPattern() gotenresource.NamePattern {
if ref == nil {
return ""
}
return ref.Pattern
}
func (ref *ParentReference) GetIdParts() map[string]string {
if ref != nil {
return ref.ParentName.GetIdParts()
}
return map[string]string{
"projectId": "",
"organizationId": "",
}
}
func (ref *ParentReference) GetSegments() gotenresource.NameSegments {
if ref != nil {
return ref.ParentName.GetSegments()
}
return nil
}
func (ref *ParentReference) GetIParentName() gotenresource.Name {
return nil
}
func (ref *ParentReference) GetIUnderlyingParentName() gotenresource.Name {
return nil
}
func (ref *ParentReference) String() string {
if ref == nil {
return "<nil>"
}
return ref.ParentName.String()
}
// implement methods required by protobuf-go library for string-struct conversion
func (ref *ParentReference) ProtoString() (string, error) {
if ref == nil {
return "", nil
}
return ref.ParentName.ProtoString()
}
func (ref *ParentReference) ParseProtoString(data string) error {
parsed, err := ParseParentReference(data)
if err != nil {
return err
}
*ref = *parsed
return nil
}
// GotenEqual returns true if other is of same type and paths are equal (implements goten.Equaler interface)
func (ref *ParentReference) GotenEqual(other interface{}) bool {
if other == nil {
return ref == nil
}
other1, ok := other.(*ParentReference)
if !ok {
other2, ok := other.(ParentReference)
if ok {
other1 = &other2
} else {
return false
}
}
if other1 == nil {
return ref == nil
} else if ref == nil {
return false
}
if ref.project != other1.project {
return false
}
if ref.organization != other1.organization {
return false
}
return ref.ParentName.GotenEqual(other1.ParentName)
}
// Matches is same as GotenEqual, but also will accept "other" if name is wildcard.
func (name *ParentReference) Matches(other interface{}) bool {
if other == nil {
return name == nil
}
other1, ok := other.(*ParentReference)
if !ok {
other2, ok := other.(ParentReference)
if ok {
other1 = &other2
} else {
return false
}
}
if other1 == nil {
return name == nil
} else if name == nil {
return false
}
return name.ParentName.Matches(&other1.ParentName)
}
// Google CEL integration Type
var celParentReference = types.NewTypeValue("ParentReference", traits.ReceiverType)
func (name *ParentReference) TypeName() string {
return ".ntt.iam.v1alpha2.Condition.ParentReference"
}
func (name *ParentReference) HasTrait(trait int) bool {
return trait == traits.ReceiverType
}
func (name *ParentReference) Equal(other ref.Val) ref.Val {
return types.Bool(false)
}
func (name *ParentReference) Value() interface{} {
return name
}
func (name *ParentReference) Match(pattern ref.Val) ref.Val {
return types.Bool(true)
}
func (name *ParentReference) Receive(function string, overload string, args []ref.Val) ref.Val {
switch function {
case "satisfies":
rhsName, err := ParseParentReference(string(args[0].(types.String)))
if err != nil {
return types.ValOrErr(celParentReference, "function %s name parse error: %s", function, err)
}
return types.Bool(rhsName.Matches(name))
default:
return types.ValOrErr(celParentReference, "no such function - %s", function)
}
}
func (name *ParentReference) ConvertToNative(typeDesc reflect.Type) (interface{}, error) {
panic("not required")
}
func (name *ParentReference) ConvertToType(typeVal ref.Type) ref.Val {
switch typeVal.TypeName() {
case types.StringType.TypeName():
return types.String(name.String())
default:
panic(fmt.Errorf("unable to convert %s to CEL type %s", "ParentReference", typeVal.TypeName()))
}
}
func (name *ParentReference) Type() ref.Type {
return celParentReference
}
// implement CustomTypeCliValue method
func (ref *ParentReference) SetFromCliFlag(raw string) error {
parsedRef, err := ParseParentReference(raw)
if err != nil {
return err
}
*ref = *parsedRef
return nil
}