-
Notifications
You must be signed in to change notification settings - Fork 436
/
Copy pathevent_v2.go
466 lines (412 loc) · 15.6 KB
/
event_v2.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
package sdk
import (
"encoding/json"
"time"
)
type EventType string
const (
EventAnalysisStart EventType = "AnalysisStart"
EventAnalysisDone EventType = "AnalysisDone"
EventRunJobEnqueued EventType = "RunJobEnqueued"
EventRunJobBlocked EventType = "RunJobBlocked"
EventRunJobCancelled EventType = "RunJobCancelled"
EventRunJobSkipped EventType = "RunJobSkipped"
EventRunJobStopped EventType = "RunJobStopped"
EventRunJobScheduled EventType = "RunJobScheduled"
EventRunJobBuilding EventType = "RunJobBuilding"
EventRunJobManualTriggered EventType = "RunJobManualTriggered"
EventRunJobRunResultAdded EventType = "RunJobRunResultAdded"
EventRunJobRunResultUpdated EventType = "RunJobRunResultUpdated"
EventRunJobEnded EventType = "RunJobEnded"
EventRunCrafted EventType = "RunCrafted"
EventRunBuilding EventType = "RunBuilding"
EventRunEnded EventType = "RunEnded"
EventRunRestart EventType = "RunRestart"
EventEntityCreated EventType = "EntityCreated"
EventEntityUpdated EventType = "EntityUpdated"
EventEntityDeleted EventType = "EntityDeleted"
EventVCSCreated EventType = "VCSCreated"
EventVCSUpdated EventType = "VCSUpdated"
EventVCSDeleted EventType = "VCSDeleted"
EventHatcheryCreated EventType = "HatcheryCreated"
EventHatcheryUpdated EventType = "HatcheryUpdated"
EventHatcheryTokenRegen EventType = "HatcheryTokenRegen"
EventHatcheryDeleted EventType = "HatcheryDeleted"
EventRepositoryCreated EventType = "RepositoryCreated"
EventRepositoryDeleted EventType = "RepositoryDeleted"
EventOrganizationCreated EventType = "OrganizationCreated"
EventOrganizationDeleted EventType = "OrganizationDeleted"
EventRegionCreated EventType = "RegionCreated"
EventRegionDeleted EventType = "RegionDeleted"
EventPermissionCreated EventType = "PermissionCreated"
EventPermissionUpdated EventType = "PermissionUpdated"
EventPermissionDeleted EventType = "PermissionDeleted"
EventUserCreated EventType = "UserCreated"
EventUserUpdated EventType = "UserUpdated"
EventUserDeleted EventType = "UserDeleted"
EventUserGPGKeyCreated EventType = "UserGPGKeyCreated"
EventUserGPGKeyDeleted EventType = "UserGPGKeyDeleted"
EventPluginCreated EventType = "PluginCreated"
EventPluginUpdated EventType = "PluginUpdated"
EventPluginDeleted EventType = "PluginDeleted"
EventIntegrationModelCreated EventType = "IntegrationModelCreated"
EventIntegrationModelUpdated EventType = "IntegrationModelUpdated"
EventIntegrationModelDeleted EventType = "IntegrationModelDeleted"
EventIntegrationCreated EventType = "IntegrationCreated"
EventIntegrationUpdated EventType = "IntegrationUpdated"
EventIntegrationDeleted EventType = "IntegrationDeleted"
EventProjectCreated EventType = "ProjectCreated"
EventProjectUpdated EventType = "ProjectUpdated"
EventProjectDeleted EventType = "ProjectDeleted"
EventNotificationCreated EventType = "NotificationCreated"
EventNotificationUpdated EventType = "NotificationUpdated"
EventNotificationDeleted EventType = "NotificationDeleted"
EventVariableSetCreated EventType = "VariableSetCreated"
EventVariableSetDeleted EventType = "VariableSetDeleted"
EventVariableSetItemCreated EventType = "VariableSetItemCreated"
EventVariableSetItemUpdated EventType = "VariableSetItemUpdated"
EventVariableSetItemDeleted EventType = "VariableSetItemDeleted"
EventConcurrencyCreated EventType = "ConcurrencyCreated"
EventConcurrencyUpdated EventType = "ConcurrencyUpdated"
EventConcurrencyDeleted EventType = "ConcurrencyDeleted"
)
// FullEventV2 uses to process event
type FullEventV2 struct {
ID string `json:"id"`
Type EventType `json:"type"`
Payload json.RawMessage `json:"payload"`
ProjectKey string `json:"project_key,omitempty"`
VCSName string `json:"vcs_name,omitempty"`
Repository string `json:"repository,omitempty"`
Workflow string `json:"workflow,omitempty"`
WorkflowRunID string `json:"workflow_run_id,omitempty"`
RunJobID string `json:"run_job_id,omitempty"`
RunNumber int64 `json:"run_number,omitempty"`
RunAttempt int64 `json:"run_attempt,omitempty"`
Region string `json:"region,omitempty"`
Hatchery string `json:"hatchery,omitempty"`
ModelType string `json:"model_type,omitempty"`
ModelOSArch string `json:"model_osarch,omitempty"`
JobID string `json:"job_id,omitempty"`
Status string `json:"status,omitempty"`
UserID string `json:"user_id,omitempty"`
Username string `json:"username,omitempty"`
UserEmail string `json:"user_mail"`
RunResult string `json:"run_result,omitempty"`
Entity string `json:"entity,omitempty"`
Organization string `json:"organization,omitempty"`
Permission string `json:"permission,omitempty"`
Plugin string `json:"plugin,omitempty"`
GPGKey string `json:"gpg_key,omitempty"`
IntegrationModel string `json:"integration_model,omitempty"`
Integration string `json:"integration,omitempty"`
KeyName string `json:"key_name,omitempty"`
KeyType string `json:"key_type,omitempty"`
Variable string `json:"variable,omitempty"`
Notification string `json:"notification,omitempty"`
VariableSet string `json:"variable_set,omitempty"`
Item string `json:"item,omitempty"`
Concurrency string `json:"concurrency"`
Timestamp time.Time `json:"timestamp"`
}
type GlobalEventV2 struct {
ID string `json:"id"`
Type EventType `json:"type"`
Payload json.RawMessage `json:"payload"`
Timestamp time.Time `json:"timestamp"`
}
type ProjectEventV2 struct {
ProjectKey string `json:"project_key"`
}
type AnalysisEvent struct {
GlobalEventV2
ProjectEventV2
VCSName string `json:"vcs_name"`
Repository string `json:"repository"`
Status string `json:"status"`
UserID string `json:"user_id,omitempty"`
Username string `json:"username,omitempty"`
}
type EntityEvent struct {
GlobalEventV2
ProjectEventV2
VCSName string `json:"vcs_name"`
Repository string `json:"repository"`
Entity string `json:"entity"`
UserID string `json:"user_id,omitempty"`
Username string `json:"username,omitempty"`
}
type HatcheryEvent struct {
GlobalEventV2
Hatchery string `json:"hatchery"`
UserID string `json:"user_id,omitempty"`
Username string `json:"username,omitempty"`
}
type OrganizationEvent struct {
GlobalEventV2
Organization string `json:"organization"`
UserID string `json:"user_id"`
Username string `json:"username"`
}
type PermissionEvent struct {
GlobalEventV2
Permission string `json:"permission"`
UserID string `json:"user_id"`
Username string `json:"username"`
}
type PluginEvent struct {
GlobalEventV2
Plugin string `json:"plugin"`
UserID string `json:"user_id"`
Username string `json:"username"`
}
type RegionEvent struct {
GlobalEventV2
Region string `json:"region"`
UserID string `json:"user_id"`
Username string `json:"username"`
}
type RepositoryEvent struct {
GlobalEventV2
ProjectEventV2
VCSName string `json:"vcs_name"`
Repository string `json:"repository"`
UserID string `json:"user_id"`
Username string `json:"username"`
}
type ConcurrencyEvent struct {
GlobalEventV2
ProjectEventV2
Concurrency string `json:"concurrency"`
UserID string `json:"user_id"`
Username string `json:"username"`
}
type VCSEvent struct {
GlobalEventV2
ProjectEventV2
VCSName string `json:"vcs_name"`
UserID string `json:"user_id"`
Username string `json:"username"`
}
type KeyEvent struct {
GlobalEventV2
ProjectEventV2
KeyName string `json:"key_name"`
KeyType string `json:"key_type"`
UserID string `json:"user_id"`
Username string `json:"username"`
}
type VariableEvent struct {
GlobalEventV2
ProjectEventV2
Variable string `json:"variable"`
UserID string `json:"user_id"`
Username string `json:"username"`
}
type IntegrationModelEvent struct {
GlobalEventV2
IntegrationModel string `json:"integration_model"`
UserID string `json:"user_id"`
Username string `json:"username"`
}
type ProjectIntegrationEvent struct {
GlobalEventV2
ProjectEventV2
Integration string `json:"integration"`
IntegrationModel string `json:"integration_model"`
UserID string `json:"user_id"`
Username string `json:"username"`
}
type NotificationEvent struct {
GlobalEventV2
ProjectEventV2
Notification string `json:"notification"`
UserID string `json:"user_id"`
Username string `json:"username"`
}
type ProjectVariableSetEvent struct {
GlobalEventV2
ProjectEventV2
VariableSet string `json:"variable_set"`
UserID string `json:"user_id"`
Username string `json:"username"`
}
type ProjectVariableSetItemEvent struct {
GlobalEventV2
ProjectEventV2
VariableSet string `json:"variable_set"`
Item string `json:"item"`
UserID string `json:"user_id"`
Username string `json:"username"`
}
type UserEvent struct {
GlobalEventV2
UserID string `json:"user_id"`
Username string `json:"username"`
}
type UserGPGEvent struct {
GlobalEventV2
UserID string `json:"user_id"`
Username string `json:"username"`
GPGKey string `json:"gpg_key"`
}
type WorkflowRunEvent struct {
GlobalEventV2
ProjectEventV2
VCSName string `json:"vcs_name"`
Repository string `json:"repository"`
Workflow string `json:"workflow"`
RunNumber int64 `json:"run_number"`
RunAttempt int64 `json:"run_attempt"`
Status V2WorkflowRunStatus `json:"status"`
WorkflowRunID string `json:"workflow_run_id"`
UserID string `json:"user_id"`
Username string `json:"username"`
UserEmail string `json:"user_mail"`
}
type WorkflowRunJobEvent struct {
GlobalEventV2
ProjectEventV2
VCSName string `json:"vcs_name"`
Repository string `json:"repository"`
Workflow string `json:"workflow"`
WorkflowRunID string `json:"workflow_run_id"`
RunJobID string `json:"run_job_id"`
RunNumber int64 `json:"run_number"`
RunAttempt int64 `json:"run_attempt"`
Region string `json:"region"`
Hatchery string `json:"hatchery"`
ModelType string `json:"model_type"`
ModelOSArch string `json:"model_osarch"`
JobID string `json:"job_id"`
Status V2WorkflowRunJobStatus `json:"status"`
UserID string `json:"user_id"`
Username string `json:"username"`
}
type WorkflowRunJobManualEvent struct {
GlobalEventV2
ProjectEventV2
VCSName string `json:"vcs_name"`
Repository string `json:"repository"`
Workflow string `json:"workflow"`
JobID string `json:"job_id"`
RunNumber int64 `json:"run_number"`
RunAttempt int64 `json:"run_attempt"`
Status V2WorkflowRunStatus `json:"status"`
WorkflowRunID string `json:"workflow_run_id"`
UserID string `json:"user_id"`
Username string `json:"username"`
}
type WorkflowRunJobRunResultEvent struct {
GlobalEventV2
ProjectEventV2
VCSName string `json:"vcs_name"`
Repository string `json:"repository"`
Workflow string `json:"workflow"`
WorkflowRunID string `json:"workflow_run_id"`
RunJobID string `json:"run_job_id"`
RunNumber int64 `json:"run_number"`
RunAttempt int64 `json:"run_attempt"`
Region string `json:"region"`
Hatchery string `json:"hatchery"`
ModelType string `json:"model_type"`
JobID string `json:"job_id"`
Status string `json:"status"`
UserID string `json:"user_id"`
Username string `json:"username"`
RunResult string `json:"run_result"`
}
type ProjectEvent struct {
GlobalEventV2
ProjectEventV2
UserID string `json:"user_id"`
Username string `json:"username"`
}
func NewEventWorkflowRunPayload(wr V2WorkflowRun, rjs map[string]V2WorkflowRunJob, runResults []V2WorkflowRunResult) (*EventWorkflowRunPayload, error) {
p := EventWorkflowRunPayload{
ID: wr.ID,
ProjectKey: wr.ProjectKey,
VCSServer: wr.VCSServer,
Repository: wr.Repository,
WorkflowName: wr.WorkflowName,
WorkflowSha: wr.WorkflowSha,
WorkflowRef: wr.WorkflowRef,
Status: wr.Status,
RunNumber: wr.RunNumber,
RunAttempt: wr.RunAttempt,
Started: wr.Started,
LastModified: wr.LastModified,
WorkflowData: wr.WorkflowData,
UserID: wr.Initiator.UserID,
Username: wr.Initiator.Username(),
AdminMFA: wr.Initiator.IsAdminWithMFA,
RunEvent: wr.RunEvent,
RunJobEvent: wr.RunJobEvent,
Annotations: wr.Annotations,
Contexts: EventWorkflowRunPayloadContexts{
CDS: wr.Contexts.CDS,
Git: wr.Contexts.Git,
Env: wr.Contexts.Env,
},
}
p.Contexts.Jobs = JobsResultContext{}
for _, rj := range rjs {
jobResult := JobResultContext{
Result: rj.Status,
Outputs: JobResultOutput{},
}
for _, r := range runResults {
if rj.ID != r.WorkflowRunJobID {
continue
}
switch r.Type {
case V2WorkflowRunResultTypeVariable, V2WorkflowRunResultVariableDetailType:
x, err := GetConcreteDetail[*V2WorkflowRunResultVariableDetail](&r)
if err != nil {
return nil, err
}
jobResult.Outputs[x.Name] = x.Value
default:
if jobResult.JobRunResults == nil {
jobResult.JobRunResults = JobRunResults{}
}
jobResult.JobRunResults[r.Name()], _ = r.GetDetail()
}
}
p.Contexts.Jobs[rj.JobID] = jobResult
}
return &p, nil
}
type EventWorkflowRunPayload struct {
ID string `json:"id"`
ProjectKey string `json:"project_key"`
VCSServer string `json:"vcs_server"`
Repository string `json:"repository"`
WorkflowName string `json:"workflow_name"`
WorkflowSha string `json:"workflow_sha"`
WorkflowRef string `json:"workflow_ref"`
Status V2WorkflowRunStatus `json:"status"`
RunNumber int64 `json:"run_number"`
RunAttempt int64 `json:"run_attempt"`
Started time.Time `json:"started"`
LastModified time.Time `json:"last_modified"`
ToDelete bool `json:"to_delete"`
WorkflowData V2WorkflowRunData `json:"workflow_data"`
UserID string `json:"user_id"`
Username string `json:"username"`
AdminMFA bool `json:"admin_mfa"`
RunEvent V2WorkflowRunEvent `json:"event,omitempty"`
RunJobEvent V2WorkflowRunJobEvents `json:"job_events,omitempty"`
Annotations WorkflowRunAnnotations `json:"annotations,omitempty"`
Contexts EventWorkflowRunPayloadContexts `json:"contexts" db:"contexts"`
}
type EventWorkflowRunPayloadContexts struct {
CDS CDSContext `json:"cds,omitempty"`
Git GitContext `json:"git,omitempty"`
Env map[string]string `json:"env,omitempty"`
Jobs JobsResultContext `json:"jobs,omitempty"`
}
type EventWorkflowRunPayloadContextEvent struct {
Status string `json:"status,omitempty"`
AdminMFA bool `json:"admin_mfa"`
}