-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscheduler_admin.go
More file actions
220 lines (202 loc) · 4.91 KB
/
Copy pathscheduler_admin.go
File metadata and controls
220 lines (202 loc) · 4.91 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
package scheduler
import (
"errors"
"strings"
"time"
"github.com/google/uuid"
)
var ErrInvalidScheduleID = errors.New("invalid schedule id")
// Admin exposes schedule inspection and control operations for operator surfaces.
type Admin struct {
s *Scheduler
}
// ScheduleInfo describes a scheduled job for UI and admin surfaces.
type ScheduleInfo struct {
ID string `json:"id"`
Name string `json:"name"`
Type string `json:"type"`
Schedule string `json:"schedule"`
Handler string `json:"handler"`
HandlerRaw string `json:"handler_raw"`
Next string `json:"next"`
NextRun string `json:"next_run"`
Tags []string `json:"tags"`
Paused bool `json:"paused"`
}
// Admin returns a facade for scheduler inspection and control operations.
// @group Metadata
func (s *Scheduler) Admin() *Admin {
return &Admin{s: s}
}
// ListSchedules returns a stable UI-friendly snapshot of the configured schedules.
// @group Metadata
func (a *Admin) ListSchedules() []ScheduleInfo {
jobInfos := a.s.JobsInfo()
nextRunByID := map[uuid.UUID]time.Time{}
for _, job := range a.s.Jobs() {
next, err := job.NextRun()
if err != nil {
continue
}
nextRunByID[job.ID()] = next
}
now := time.Now()
out := make([]ScheduleInfo, 0, len(jobInfos))
for _, info := range jobInfos {
nextRun := nextRunByID[info.ID]
jobType := normalizeScheduleType(info.TargetKind)
handler := strings.TrimSpace(info.Handler)
if jobType == "" {
if strings.Contains(info.Name, ":") {
jobType = "command"
} else {
jobType = "function"
}
}
schedule := strings.TrimSpace(info.Schedule)
if schedule == "" {
schedule = "-"
}
if handler == "" {
if jobType == "command" {
handler = strings.TrimSpace(info.Command)
if handler == "" {
handler = "-"
}
} else {
handler = info.Name
}
}
name := strings.TrimSpace(info.Name)
if name == "" {
name = strings.TrimSpace(info.Command)
}
if name == "" {
name = "-"
}
rawHandler := handler
out = append(out, ScheduleInfo{
ID: info.ID.String(),
Name: formatScheduleDisplayName(name),
Type: jobType,
Schedule: schedule,
Handler: formatScheduleDisplayName(handler),
HandlerRaw: rawHandler,
Next: formatRelativeTime(now, nextRun),
NextRun: nextRun.Format(time.RFC3339),
Tags: info.Tags,
Paused: info.Paused,
})
}
return out
}
// PauseSchedule pauses a schedule by id.
// @group Metadata
func (a *Admin) PauseSchedule(id string) error {
jobID, err := parseScheduleID(id)
if err != nil {
return err
}
return a.s.PauseJob(jobID)
}
// ResumeSchedule resumes a paused schedule by id.
// @group Metadata
func (a *Admin) ResumeSchedule(id string) error {
jobID, err := parseScheduleID(id)
if err != nil {
return err
}
return a.s.ResumeJob(jobID)
}
// RestartSchedule resumes a schedule if needed, runs it immediately, and restores pause state.
// @group Metadata
func (a *Admin) RestartSchedule(id string) error {
jobID, err := parseScheduleID(id)
if err != nil {
return err
}
found := false
wasAllPaused := a.s.IsPausedAll()
wasJobPaused := a.s.IsJobPaused(jobID)
if wasAllPaused {
if err := a.s.ResumeAll(); err != nil {
return err
}
defer func() {
_ = a.s.PauseAll()
}()
} else if wasJobPaused {
if err := a.s.ResumeJob(jobID); err != nil {
return err
}
defer func() {
_ = a.s.PauseJob(jobID)
}()
}
for _, job := range a.s.Jobs() {
if job.ID() != jobID {
continue
}
found = true
if err := job.RunNow(); err != nil {
return err
}
break
}
if !found {
return nil
}
return nil
}
// IsPausedAll reports whether all schedules are currently paused.
// @group Metadata
func (a *Admin) IsPausedAll() bool {
return a.s.IsPausedAll()
}
// PauseAll halts job execution without removing schedule definitions.
// @group Metadata
func (a *Admin) PauseAll() error {
return a.s.PauseAll()
}
// ResumeAll restarts job execution for all schedules.
// @group Metadata
func (a *Admin) ResumeAll() error {
return a.s.ResumeAll()
}
func parseScheduleID(id string) (uuid.UUID, error) {
jobID, err := uuid.Parse(id)
if err != nil {
return uuid.UUID{}, ErrInvalidScheduleID
}
return jobID, nil
}
func normalizeScheduleType(value string) string {
trimmed := strings.TrimSpace(strings.ToLower(value))
if trimmed == "" {
return "function"
}
return trimmed
}
func formatRelativeTime(now, next time.Time) string {
if next.IsZero() {
return "-"
}
if next.Before(now) {
return "now"
}
return "in " + time.Until(next).Round(time.Second).String()
}
func formatScheduleDisplayName(value string) string {
if strings.TrimSpace(value) == "" {
return "-"
}
if strings.Contains(value, ":") {
return value
}
if idx := strings.LastIndex(value, "/"); idx >= 0 && idx < len(value)-1 {
value = value[idx+1:]
}
value = strings.ReplaceAll(value, "(*", "")
value = strings.ReplaceAll(value, ").", ".")
return value
}