-
Notifications
You must be signed in to change notification settings - Fork 40
/
job.go
210 lines (191 loc) · 5.85 KB
/
job.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
package tork
import (
"time"
"golang.org/x/exp/maps"
)
type JobState string
const (
JobStatePending JobState = "PENDING"
JobStateScheduled JobState = "SCHEDULED"
JobStateRunning JobState = "RUNNING"
JobStateCancelled JobState = "CANCELLED"
JobStateCompleted JobState = "COMPLETED"
JobStateFailed JobState = "FAILED"
JobStateRestart JobState = "RESTART"
)
type Job struct {
ID string `json:"id,omitempty"`
ParentID string `json:"parentId,omitempty"`
Name string `json:"name,omitempty"`
Description string `json:"description,omitempty"`
Tags []string `json:"tags,omitempty"`
State JobState `json:"state,omitempty"`
CreatedAt time.Time `json:"createdAt,omitempty"`
CreatedBy *User `json:"createdBy,omitempty"`
StartedAt *time.Time `json:"startedAt,omitempty"`
CompletedAt *time.Time `json:"completedAt,omitempty"`
FailedAt *time.Time `json:"failedAt,omitempty"`
Tasks []*Task `json:"tasks"`
Execution []*Task `json:"execution"`
Position int `json:"position"`
Inputs map[string]string `json:"inputs,omitempty"`
Context JobContext `json:"context,omitempty"`
TaskCount int `json:"taskCount,omitempty"`
Output string `json:"output,omitempty"`
Result string `json:"result,omitempty"`
Error string `json:"error,omitempty"`
Defaults *JobDefaults `json:"defaults,omitempty"`
Webhooks []*Webhook `json:"webhooks,omitempty"`
Permissions []*Permission `json:"permissions,omitempty"`
}
type JobSummary struct {
ID string `json:"id,omitempty"`
CreatedBy *User `json:"createdBy,omitempty"`
ParentID string `json:"parentId,omitempty"`
Inputs map[string]string `json:"inputs,omitempty"`
Name string `json:"name,omitempty"`
Description string `json:"description,omitempty"`
Tags []string `json:"tags,omitempty"`
State JobState `json:"state,omitempty"`
CreatedAt time.Time `json:"createdAt,omitempty"`
StartedAt *time.Time `json:"startedAt,omitempty"`
CompletedAt *time.Time `json:"completedAt,omitempty"`
FailedAt *time.Time `json:"failedAt,omitempty"`
Position int `json:"position"`
TaskCount int `json:"taskCount,omitempty"`
Result string `json:"result,omitempty"`
Error string `json:"error,omitempty"`
}
type Permission struct {
Role *Role `json:"role,omitempty"`
User *User `json:"user,omitempty"`
}
type JobContext struct {
Job map[string]string `json:"job,omitempty"`
Inputs map[string]string `json:"inputs,omitempty"`
Tasks map[string]string `json:"tasks,omitempty"`
}
type JobDefaults struct {
Retry *TaskRetry `json:"retry,omitempty"`
Limits *TaskLimits `json:"limits,omitempty"`
Timeout string `json:"timeout,omitempty"`
Queue string `json:"queue,omitempty"`
Priority int `json:"priority,omitempty"`
}
type Webhook struct {
URL string `json:"url,omitempty"`
Headers map[string]string `json:"headers,omitempty"`
Event string `json:"event,omitempty"`
}
func (j *Job) Clone() *Job {
var defaults *JobDefaults
if j.Defaults != nil {
defaults = j.Defaults.Clone()
}
var createdBy *User
if j.CreatedBy != nil {
createdBy = j.CreatedBy.Clone()
}
return &Job{
ID: j.ID,
Name: j.Name,
Description: j.Description,
Tags: j.Tags,
State: j.State,
CreatedAt: j.CreatedAt,
CreatedBy: createdBy,
StartedAt: j.StartedAt,
CompletedAt: j.CompletedAt,
FailedAt: j.FailedAt,
Tasks: CloneTasks(j.Tasks),
Execution: CloneTasks(j.Execution),
Position: j.Position,
Inputs: maps.Clone(j.Inputs),
Context: j.Context.Clone(),
ParentID: j.ParentID,
TaskCount: j.TaskCount,
Output: j.Output,
Result: j.Result,
Error: j.Error,
Defaults: defaults,
Webhooks: CloneWebhooks(j.Webhooks),
Permissions: ClonePermissions(j.Permissions),
}
}
func (c JobContext) Clone() JobContext {
return JobContext{
Inputs: maps.Clone(c.Inputs),
Tasks: maps.Clone(c.Tasks),
Job: maps.Clone(c.Job),
}
}
func (c JobContext) AsMap() map[string]any {
return map[string]any{
"inputs": c.Inputs,
"tasks": c.Tasks,
"job": c.Job,
}
}
func (d *JobDefaults) Clone() *JobDefaults {
clone := JobDefaults{}
if d.Limits != nil {
clone.Limits = d.Limits.Clone()
}
if d.Retry != nil {
clone.Retry = d.Retry.Clone()
}
clone.Queue = d.Queue
clone.Timeout = d.Timeout
clone.Priority = d.Priority
return &clone
}
func NewJobSummary(j *Job) *JobSummary {
return &JobSummary{
ID: j.ID,
CreatedBy: j.CreatedBy,
ParentID: j.ParentID,
Name: j.Name,
Description: j.Description,
Tags: j.Tags,
Inputs: maps.Clone(j.Inputs),
State: j.State,
CreatedAt: j.CreatedAt,
StartedAt: j.StartedAt,
CompletedAt: j.CompletedAt,
FailedAt: j.FailedAt,
Position: j.Position,
TaskCount: j.TaskCount,
Result: j.Result,
Error: j.Error,
}
}
func CloneWebhooks(webhooks []*Webhook) []*Webhook {
copy := make([]*Webhook, len(webhooks))
for i, w := range webhooks {
copy[i] = w.Clone()
}
return copy
}
func (w *Webhook) Clone() *Webhook {
return &Webhook{
URL: w.URL,
Headers: maps.Clone(w.Headers),
Event: w.Event,
}
}
func ClonePermissions(perms []*Permission) []*Permission {
copy := make([]*Permission, len(perms))
for i, p := range perms {
copy[i] = p.Clone()
}
return copy
}
func (p *Permission) Clone() *Permission {
c := &Permission{}
if p.Role != nil {
c.Role = p.Role.Clone()
} else {
c.User = p.User.Clone()
}
return c
}