-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcommittee_service_response.go
More file actions
697 lines (610 loc) · 18.7 KB
/
committee_service_response.go
File metadata and controls
697 lines (610 loc) · 18.7 KB
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
// Copyright The Linux Foundation and each contributor to LFX.
// SPDX-License-Identifier: MIT
package service
import (
committeeservice "github.com/linuxfoundation/lfx-v2-committee-service/gen/committee_service"
"github.com/linuxfoundation/lfx-v2-committee-service/internal/domain/model"
)
// convertPayloadToDomain converts GOA payload to domain model
func (s *committeeServicesrvc) convertPayloadToDomain(p *committeeservice.CreateCommitteePayload) *model.Committee {
// Convert payload to domain - split into Base and Settings
base := s.convertPayloadToBase(p)
settings := s.convertPayloadToSettings(p)
request := &model.Committee{
CommitteeBase: base,
CommitteeSettings: settings,
}
return request
}
// convertPayloadToBase converts GOA payload to CommitteeBase domain model
func (s *committeeServicesrvc) convertPayloadToBase(p *committeeservice.CreateCommitteePayload) model.CommitteeBase {
// Check for nil payload to avoid panic
if p == nil {
return model.CommitteeBase{}
}
base := model.CommitteeBase{
Name: p.Name,
Category: p.Category,
ProjectUID: p.ProjectUID,
EnableVoting: p.EnableVoting,
SSOGroupEnabled: p.SsoGroupEnabled,
RequiresReview: p.RequiresReview,
Public: p.Public,
}
// Handle Description with nil check
if p.Description != nil {
base.Description = *p.Description
}
// Handle DisplayName with nil check
if p.DisplayName != nil {
base.DisplayName = *p.DisplayName
}
// Handle Website (already a pointer, safe to assign directly)
base.Website = p.Website
// Handle ParentUID (already a pointer, safe to assign directly)
base.ParentUID = p.ParentUID
// Handle calendar if present
if p.Calendar != nil {
base.Calendar = model.Calendar{
Public: p.Calendar.Public,
}
}
return base
}
// convertPayloadToSettings converts GOA payload to CommitteeSettings domain model
func (s *committeeServicesrvc) convertPayloadToSettings(p *committeeservice.CreateCommitteePayload) *model.CommitteeSettings {
settings := &model.CommitteeSettings{
BusinessEmailRequired: p.BusinessEmailRequired,
LastReviewedBy: p.LastReviewedBy,
Writers: p.Writers,
Auditors: p.Auditors,
ShowMeetingAttendees: p.ShowMeetingAttendees,
MemberVisibility: p.MemberVisibility,
}
// Handle LastReviewedAt - GOA validates format via Pattern constraint
if p.LastReviewedAt != nil && *p.LastReviewedAt != "" {
settings.LastReviewedAt = p.LastReviewedAt
}
return settings
}
// convertPayloadToUpdateBase converts GOA UpdateCommitteeBasePayload to CommitteeBase domain model
func (s *committeeServicesrvc) convertPayloadToUpdateBase(p *committeeservice.UpdateCommitteeBasePayload) *model.Committee {
// Check for nil payload to avoid panic
if p == nil || p.UID == nil {
return &model.Committee{}
}
base := model.CommitteeBase{
UID: *p.UID, // UID is required for updates
Name: p.Name,
ProjectUID: p.ProjectUID,
Category: p.Category,
EnableVoting: p.EnableVoting,
SSOGroupEnabled: p.SsoGroupEnabled,
RequiresReview: p.RequiresReview,
Public: p.Public,
}
// Handle Description with nil check
if p.Description != nil {
base.Description = *p.Description
}
// Handle DisplayName with nil check
if p.DisplayName != nil {
base.DisplayName = *p.DisplayName
}
// Handle Website (already a pointer, safe to assign directly)
base.Website = p.Website
// Handle ParentUID (already a pointer, safe to assign directly)
base.ParentUID = p.ParentUID
// Handle calendar if present
if p.Calendar != nil {
base.Calendar = model.Calendar{
Public: p.Calendar.Public,
}
}
// Create committee with base data only (no settings for base update)
committee := &model.Committee{
CommitteeBase: base,
CommitteeSettings: nil, // Settings are not updated in base update
}
return committee
}
// convertPayloadToUpdateSettings converts GOA UpdateCommitteeSettingsPayload to CommitteeSettings domain model
func (s *committeeServicesrvc) convertPayloadToUpdateSettings(p *committeeservice.UpdateCommitteeSettingsPayload) *model.CommitteeSettings {
// Check for nil payload to avoid panic
if p == nil {
return &model.CommitteeSettings{}
}
settings := &model.CommitteeSettings{
UID: *p.UID, // UID is required for updates
BusinessEmailRequired: p.BusinessEmailRequired,
LastReviewedAt: p.LastReviewedAt,
LastReviewedBy: p.LastReviewedBy,
Writers: p.Writers,
Auditors: p.Auditors,
ShowMeetingAttendees: p.ShowMeetingAttendees,
MemberVisibility: p.MemberVisibility,
}
return settings
}
func (s *committeeServicesrvc) convertDomainToFullResponse(response *model.Committee) *committeeservice.CommitteeFullWithReadonlyAttributes {
if response == nil {
return nil
}
result := &committeeservice.CommitteeFullWithReadonlyAttributes{
UID: &response.CommitteeBase.UID,
ProjectUID: &response.ProjectUID,
Name: &response.Name,
Category: &response.Category,
EnableVoting: response.EnableVoting,
SsoGroupEnabled: response.SSOGroupEnabled,
RequiresReview: response.RequiresReview,
Public: response.Public,
}
// Only set optional fields if they have values
if response.Description != "" {
result.Description = &response.Description
}
if response.Website != nil && *response.Website != "" {
result.Website = response.Website
}
if response.DisplayName != "" {
result.DisplayName = &response.DisplayName
}
if response.ParentUID != nil && *response.ParentUID != "" {
result.ParentUID = response.ParentUID
}
if response.SSOGroupName != "" {
result.SsoGroupName = &response.SSOGroupName
}
if response.TotalMembers > 0 {
result.TotalMembers = &response.TotalMembers
}
if response.TotalVotingRepos > 0 {
result.TotalVotingRepos = &response.TotalVotingRepos
}
// Handle Calendar mapping
result.Calendar = &struct {
Public bool
}{
Public: response.Calendar.Public,
}
// Include settings data if available
if response.CommitteeSettings != nil {
result.BusinessEmailRequired = response.BusinessEmailRequired
if response.LastReviewedAt != nil && *response.LastReviewedAt != "" {
result.LastReviewedAt = response.LastReviewedAt
}
if response.LastReviewedBy != nil && *response.LastReviewedBy != "" {
result.LastReviewedBy = response.LastReviewedBy
}
if len(response.Writers) > 0 {
result.Writers = response.Writers
}
if len(response.Auditors) > 0 {
result.Auditors = response.Auditors
}
result.ShowMeetingAttendees = response.ShowMeetingAttendees
result.MemberVisibility = response.MemberVisibility
}
return result
}
// convertBaseToResponse converts domain CommitteeBase to GOA response type
func (s *committeeServicesrvc) convertBaseToResponse(base *model.CommitteeBase) *committeeservice.CommitteeBaseWithReadonlyAttributes {
if base == nil {
return nil
}
result := &committeeservice.CommitteeBaseWithReadonlyAttributes{
UID: &base.UID,
ProjectUID: &base.ProjectUID,
Name: &base.Name,
Category: &base.Category,
EnableVoting: base.EnableVoting,
SsoGroupEnabled: base.SSOGroupEnabled,
RequiresReview: base.RequiresReview,
Public: base.Public,
}
// Only set optional fields if they have values
if base.ProjectName != "" {
result.ProjectName = &base.ProjectName
}
if base.Description != "" {
result.Description = &base.Description
}
if base.Website != nil && *base.Website != "" {
result.Website = base.Website
}
if base.DisplayName != "" {
result.DisplayName = &base.DisplayName
}
if base.ParentUID != nil && *base.ParentUID != "" {
result.ParentUID = base.ParentUID
}
if base.SSOGroupName != "" {
result.SsoGroupName = &base.SSOGroupName
}
if base.TotalMembers > 0 {
result.TotalMembers = &base.TotalMembers
}
if base.TotalVotingRepos > 0 {
result.TotalVotingRepos = &base.TotalVotingRepos
}
// Handle Calendar mapping
result.Calendar = &struct {
Public bool
}{
Public: base.Calendar.Public,
}
return result
}
// convertSettingsToResponse converts domain CommitteeSettings to GOA response type
func (s *committeeServicesrvc) convertSettingsToResponse(settings *model.CommitteeSettings) *committeeservice.CommitteeSettingsWithReadonlyAttributes {
if settings == nil {
return nil
}
result := &committeeservice.CommitteeSettingsWithReadonlyAttributes{
UID: &settings.UID,
BusinessEmailRequired: settings.BusinessEmailRequired,
ShowMeetingAttendees: settings.ShowMeetingAttendees,
MemberVisibility: settings.MemberVisibility,
}
// Only set optional fields if they have values
if settings.LastReviewedAt != nil && *settings.LastReviewedAt != "" {
result.LastReviewedAt = settings.LastReviewedAt
}
if settings.LastReviewedBy != nil && *settings.LastReviewedBy != "" {
result.LastReviewedBy = settings.LastReviewedBy
}
// Convert timestamps to strings if they exist
if !settings.CreatedAt.IsZero() {
createdAt := settings.CreatedAt.Format("2006-01-02T15:04:05Z07:00")
result.CreatedAt = &createdAt
}
if !settings.UpdatedAt.IsZero() {
updatedAt := settings.UpdatedAt.Format("2006-01-02T15:04:05Z07:00")
result.UpdatedAt = &updatedAt
}
return result
}
// convertMemberPayloadToDomain converts GOA CreateCommitteeMemberPayload to domain model
func (s *committeeServicesrvc) convertMemberPayloadToDomain(p *committeeservice.CreateCommitteeMemberPayload) *model.CommitteeMember {
// Check for nil payload to avoid panic
if p == nil {
return &model.CommitteeMember{}
}
member := &model.CommitteeMember{
CommitteeMemberBase: model.CommitteeMemberBase{
CommitteeUID: p.UID,
AppointedBy: p.AppointedBy,
Status: p.Status,
},
CommitteeMemberSensitive: model.CommitteeMemberSensitive{
Email: p.Email,
},
}
// Handle Username with nil check
if p.Username != nil {
member.Username = *p.Username
}
// Handle FirstName with nil check
if p.FirstName != nil {
member.FirstName = *p.FirstName
}
// Handle LastName with nil check
if p.LastName != nil {
member.LastName = *p.LastName
}
// Handle JobTitle with nil check
if p.JobTitle != nil {
member.JobTitle = *p.JobTitle
}
// Handle LinkedinProfile with nil check
if p.LinkedinProfile != nil {
member.LinkedInProfile = *p.LinkedinProfile
}
// Handle Role if present
if p.Role != nil {
member.Role = model.CommitteeMemberRole{
Name: p.Role.Name,
}
if p.Role.StartDate != nil {
member.Role.StartDate = *p.Role.StartDate
}
if p.Role.EndDate != nil {
member.Role.EndDate = *p.Role.EndDate
}
}
// Handle Voting if present
if p.Voting != nil {
member.Voting = model.CommitteeMemberVotingInfo{
Status: p.Voting.Status,
}
if p.Voting.StartDate != nil {
member.Voting.StartDate = *p.Voting.StartDate
}
if p.Voting.EndDate != nil {
member.Voting.EndDate = *p.Voting.EndDate
}
}
// Handle Organization if present
if p.Organization != nil {
if p.Organization.ID != nil {
member.Organization.ID = *p.Organization.ID
}
if p.Organization.Name != nil {
member.Organization.Name = *p.Organization.Name
}
if p.Organization.Website != nil {
member.Organization.Website = *p.Organization.Website
}
}
return member
}
// convertPayloadToUpdateMember converts GOA UpdateCommitteeMemberPayload to domain model
func (s *committeeServicesrvc) convertPayloadToUpdateMember(p *committeeservice.UpdateCommitteeMemberPayload) *model.CommitteeMember {
// Check for nil payload to avoid panic
if p == nil {
return &model.CommitteeMember{}
}
member := &model.CommitteeMember{
CommitteeMemberBase: model.CommitteeMemberBase{
UID: p.MemberUID, // Member UID is required for updates
CommitteeUID: p.UID, // Committee UID from path parameter
AppointedBy: p.AppointedBy,
Status: p.Status,
},
CommitteeMemberSensitive: model.CommitteeMemberSensitive{
Email: p.Email,
},
}
// Handle Username with nil check
if p.Username != nil {
member.Username = *p.Username
}
// Handle FirstName with nil check
if p.FirstName != nil {
member.FirstName = *p.FirstName
}
// Handle LastName with nil check
if p.LastName != nil {
member.LastName = *p.LastName
}
// Handle JobTitle with nil check
if p.JobTitle != nil {
member.JobTitle = *p.JobTitle
}
// Handle LinkedinProfile with nil check
if p.LinkedinProfile != nil {
member.LinkedInProfile = *p.LinkedinProfile
}
// Handle Role if present
if p.Role != nil {
member.Role = model.CommitteeMemberRole{
Name: p.Role.Name,
}
if p.Role.StartDate != nil {
member.Role.StartDate = *p.Role.StartDate
}
if p.Role.EndDate != nil {
member.Role.EndDate = *p.Role.EndDate
}
}
// Handle Voting if present
if p.Voting != nil {
member.Voting = model.CommitteeMemberVotingInfo{
Status: p.Voting.Status,
}
if p.Voting.StartDate != nil {
member.Voting.StartDate = *p.Voting.StartDate
}
if p.Voting.EndDate != nil {
member.Voting.EndDate = *p.Voting.EndDate
}
}
// Handle Organization if present
if p.Organization != nil {
if p.Organization.ID != nil {
member.Organization.ID = *p.Organization.ID
}
if p.Organization.Name != nil {
member.Organization.Name = *p.Organization.Name
}
if p.Organization.Website != nil {
member.Organization.Website = *p.Organization.Website
}
}
return member
}
// convertMemberDomainToFullResponse converts domain CommitteeMember to GOA response type
func (s *committeeServicesrvc) convertMemberDomainToFullResponse(member *model.CommitteeMember) *committeeservice.CommitteeMemberFullWithReadonlyAttributes {
if member == nil {
return nil
}
result := &committeeservice.CommitteeMemberFullWithReadonlyAttributes{
CommitteeUID: &member.CommitteeUID,
UID: &member.UID,
Email: &member.Email,
AppointedBy: member.AppointedBy,
Status: member.Status,
}
// Only set optional fields if they have values
if member.Username != "" {
result.Username = &member.Username
}
if member.FirstName != "" {
result.FirstName = &member.FirstName
}
if member.LastName != "" {
result.LastName = &member.LastName
}
if member.JobTitle != "" {
result.JobTitle = &member.JobTitle
}
if member.LinkedInProfile != "" {
result.LinkedinProfile = &member.LinkedInProfile
}
if member.CommitteeName != "" {
result.CommitteeName = &member.CommitteeName
}
if member.CommitteeCategory != "" {
result.CommitteeCategory = &member.CommitteeCategory
}
// Handle Role mapping - only include if role has meaningful data
if member.Role.Name != "" {
role := &struct {
Name string
StartDate *string
EndDate *string
}{
Name: member.Role.Name,
}
if member.Role.StartDate != "" {
role.StartDate = &member.Role.StartDate
}
if member.Role.EndDate != "" {
role.EndDate = &member.Role.EndDate
}
result.Role = role
}
// Handle Voting mapping - only include if voting has meaningful data
if member.Voting.Status != "" {
voting := &struct {
Status string
StartDate *string
EndDate *string
}{
Status: member.Voting.Status,
}
if member.Voting.StartDate != "" {
voting.StartDate = &member.Voting.StartDate
}
if member.Voting.EndDate != "" {
voting.EndDate = &member.Voting.EndDate
}
result.Voting = voting
}
// Handle Organization mapping - only include if organization has meaningful data
if member.Organization.ID != "" || member.Organization.Name != "" || member.Organization.Website != "" {
org := &struct {
ID *string
Name *string
Website *string
}{}
if member.Organization.ID != "" {
org.ID = &member.Organization.ID
}
if member.Organization.Name != "" {
org.Name = &member.Organization.Name
}
if member.Organization.Website != "" {
org.Website = &member.Organization.Website
}
result.Organization = org
}
// Convert timestamps to strings if they exist
if !member.CreatedAt.IsZero() {
createdAt := member.CreatedAt.Format("2006-01-02T15:04:05Z07:00")
result.CreatedAt = &createdAt
}
if !member.UpdatedAt.IsZero() {
updatedAt := member.UpdatedAt.Format("2006-01-02T15:04:05Z07:00")
result.UpdatedAt = &updatedAt
}
return result
}
// convertMemberDomainBasicResponse converts domain CommitteeMember to GOA basic response type
func (s *committeeServicesrvc) convertMemberDomainBasicResponse(member *model.CommitteeMember) *committeeservice.CommitteeMemberBasicWithReadonlyAttributes {
if member == nil {
return nil
}
memberUID := member.UID
result := &committeeservice.CommitteeMemberBasicWithReadonlyAttributes{
CommitteeUID: &member.CommitteeUID,
UID: &memberUID,
AppointedBy: member.AppointedBy,
Status: member.Status,
}
// Only set optional fields if they have values
if member.Username != "" {
result.Username = &member.Username
}
if member.FirstName != "" {
result.FirstName = &member.FirstName
}
if member.LastName != "" {
result.LastName = &member.LastName
}
if member.JobTitle != "" {
result.JobTitle = &member.JobTitle
}
if member.LinkedInProfile != "" {
result.LinkedinProfile = &member.LinkedInProfile
}
if member.CommitteeName != "" {
result.CommitteeName = &member.CommitteeName
}
if member.CommitteeCategory != "" {
result.CommitteeCategory = &member.CommitteeCategory
}
// Handle Role mapping - only include if role has meaningful data
if member.Role.Name != "" {
role := &struct {
Name string
StartDate *string
EndDate *string
}{
Name: member.Role.Name,
}
if member.Role.StartDate != "" {
role.StartDate = &member.Role.StartDate
}
if member.Role.EndDate != "" {
role.EndDate = &member.Role.EndDate
}
result.Role = role
}
// Handle Voting mapping - only include if voting has meaningful data
if member.Voting.Status != "" {
voting := &struct {
Status string
StartDate *string
EndDate *string
}{
Status: member.Voting.Status,
}
if member.Voting.StartDate != "" {
voting.StartDate = &member.Voting.StartDate
}
if member.Voting.EndDate != "" {
voting.EndDate = &member.Voting.EndDate
}
result.Voting = voting
}
// Handle Organization mapping - only include if organization has meaningful data
if member.Organization.ID != "" || member.Organization.Name != "" || member.Organization.Website != "" {
org := &struct {
ID *string
Name *string
Website *string
}{}
if member.Organization.ID != "" {
org.ID = &member.Organization.ID
}
if member.Organization.Name != "" {
org.Name = &member.Organization.Name
}
if member.Organization.Website != "" {
org.Website = &member.Organization.Website
}
result.Organization = org
}
// Convert timestamps to strings if they exist
if !member.CreatedAt.IsZero() {
createdAt := member.CreatedAt.Format("2006-01-02T15:04:05Z07:00")
result.CreatedAt = &createdAt
}
if !member.UpdatedAt.IsZero() {
updatedAt := member.UpdatedAt.Format("2006-01-02T15:04:05Z07:00")
result.UpdatedAt = &updatedAt
}
return result
}