-
Notifications
You must be signed in to change notification settings - Fork 29
/
worker.go
536 lines (443 loc) · 13.3 KB
/
worker.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
// Copyright (c) 2022 Target Brands, Inc. All rights reserved.
//
// Use of this source code is governed by the LICENSE file in this repository.
package api
import (
"fmt"
"net/http"
"time"
"github.com/go-vela/server/internal/token"
"github.com/go-vela/server/router/middleware/claims"
"github.com/go-vela/server/router/middleware/user"
"github.com/go-vela/types/constants"
"github.com/go-vela/server/database"
"github.com/go-vela/server/router/middleware/worker"
"github.com/go-vela/server/util"
"github.com/go-vela/types/library"
"github.com/gin-gonic/gin"
"github.com/sirupsen/logrus"
)
// swagger:operation POST /api/v1/workers workers CreateWorker
//
// Create a worker for the configured backend
//
// ---
// produces:
// - application/json
// parameters:
// - in: body
// name: body
// description: Payload containing the worker to create
// required: true
// schema:
// "$ref": "#/definitions/Worker"
// security:
// - ApiKeyAuth: []
// responses:
// '201':
// description: Successfully created the worker and retrieved auth token
// schema:
// "$ref": "#definitions/Token"
// '400':
// description: Unable to create the worker
// schema:
// "$ref": "#/definitions/Error"
// '500':
// description: Unable to create the worker
// schema:
// "$ref": "#/definitions/Error"
// CreateWorker represents the API handler to
// create a worker in the configured backend.
func CreateWorker(c *gin.Context) {
// capture middleware values
u := user.Retrieve(c)
cl := claims.Retrieve(c)
// capture body from API request
input := new(library.Worker)
err := c.Bind(input)
if err != nil {
retErr := fmt.Errorf("unable to decode JSON for new worker: %w", err)
util.HandleError(c, http.StatusBadRequest, retErr)
return
}
// update engine logger with API metadata
//
// https://pkg.go.dev/github.com/sirupsen/logrus?tab=doc#Entry.WithFields
logrus.WithFields(logrus.Fields{
"user": u.GetName(),
"worker": input.GetHostname(),
}).Infof("creating new worker %s", input.GetHostname())
err = database.FromContext(c).CreateWorker(input)
if err != nil {
retErr := fmt.Errorf("unable to create worker: %w", err)
util.HandleError(c, http.StatusInternalServerError, retErr)
return
}
switch cl.TokenType {
// if symmetric token configured, send back symmetric token
case constants.ServerWorkerTokenType:
if secret, ok := c.Value("secret").(string); ok {
tkn := new(library.Token)
tkn.SetToken(secret)
c.JSON(http.StatusCreated, tkn)
return
}
retErr := fmt.Errorf("symmetric token provided but not configured in server")
util.HandleError(c, http.StatusBadRequest, retErr)
return
// if worker register token, send back auth token
default:
tm := c.MustGet("token-manager").(*token.Manager)
wmto := &token.MintTokenOpts{
TokenType: constants.WorkerAuthTokenType,
TokenDuration: tm.WorkerAuthTokenDuration,
Hostname: cl.Subject,
}
tkn := new(library.Token)
wt, err := tm.MintToken(wmto)
if err != nil {
retErr := fmt.Errorf("unable to generate auth token for worker %s: %w", input.GetHostname(), err)
util.HandleError(c, http.StatusInternalServerError, retErr)
return
}
tkn.SetToken(wt)
c.JSON(http.StatusCreated, tkn)
}
}
// swagger:operation GET /api/v1/workers workers GetWorkers
//
// Retrieve a list of workers for the configured backend
//
// ---
// produces:
// - application/json
// security:
// - ApiKeyAuth: []
// responses:
// '200':
// description: Successfully retrieved the list of workers
// schema:
// type: array
// items:
// "$ref": "#/definitions/Worker"
// '500':
// description: Unable to retrieve the list of workers
// schema:
// "$ref": "#/definitions/Error"
// GetWorkers represents the API handler to capture a
// list of workers from the configured backend.
func GetWorkers(c *gin.Context) {
// capture middleware values
u := user.Retrieve(c)
// update engine logger with API metadata
//
// https://pkg.go.dev/github.com/sirupsen/logrus?tab=doc#Entry.WithFields
logrus.WithFields(logrus.Fields{
"user": u.GetName(),
}).Info("reading workers")
w, err := database.FromContext(c).ListWorkers()
if err != nil {
retErr := fmt.Errorf("unable to get workers: %w", err)
util.HandleError(c, http.StatusInternalServerError, retErr)
return
}
c.JSON(http.StatusOK, w)
}
// GetWorkersByStatus represents the API handler to capture a
// list of workers with specified status from the configured backend.
func GetWorkersByStatus(c *gin.Context) {
s := c.Param("status")
// capture middleware values
u := user.Retrieve(c)
// TODO message/error if not valid status or empty string, or they get back all the workers (GetWorkers), how do other endpoints do it? prob use regex to confirm alpha charas only
// update engine logger with API metadata
//
// https://pkg.go.dev/github.com/sirupsen/logrus?tab=doc#Entry.WithFields
logrus.WithFields(logrus.Fields{
"user": u.GetName(),
}).Info("reading workers")
w, err := database.FromContext(c).ListWorkersByStatus(s)
if err != nil {
retErr := fmt.Errorf("unable to get workers: %w", err)
util.HandleError(c, http.StatusInternalServerError, retErr)
return
}
c.JSON(http.StatusOK, w)
}
// swagger:operation GET /api/v1/workers/{worker} workers GetWorker
//
// Retrieve a worker for the configured backend
//
// ---
// produces:
// - application/json
// parameters:
// - in: path
// name: worker
// description: Hostname of the worker
// required: true
// type: string
// security:
// - ApiKeyAuth: []
// responses:
// '200':
// description: Successfully retrieved the worker
// schema:
// "$ref": "#/definitions/Worker"
// '404':
// description: Unable to retrieve the worker
// schema:
// "$ref": "#/definitions/Error"
// GetWorker represents the API handler to capture a
// worker from the configured backend.
func GetWorker(c *gin.Context) {
// capture middleware values
u := user.Retrieve(c)
w := worker.Retrieve(c)
// update engine logger with API metadata
//
// https://pkg.go.dev/github.com/sirupsen/logrus?tab=doc#Entry.WithFields
logrus.WithFields(logrus.Fields{
"user": u.GetName(),
"worker": w.GetHostname(),
}).Infof("reading worker %s", w.GetHostname())
w, err := database.FromContext(c).GetWorkerForHostname(w.GetHostname())
if err != nil {
retErr := fmt.Errorf("unable to get workers: %w", err)
util.HandleError(c, http.StatusNotFound, retErr)
return
}
c.JSON(http.StatusOK, w)
}
// swagger:operation PUT /api/v1/workers/{worker} workers UpdateWorker
//
// Update a worker for the configured backend
//
// ---
// produces:
// - application/json
// parameters:
// - in: body
// name: body
// description: Payload containing the worker to update
// required: true
// schema:
// "$ref": "#/definitions/Worker"
// - in: path
// name: worker
// description: Name of the worker
// required: true
// type: string
// security:
// - ApiKeyAuth: []
// responses:
// '200':
// description: Successfully updated the worker
// schema:
// "$ref": "#/definitions/Worker"
// '400':
// description: Unable to update the worker
// schema:
// "$ref": "#/definitions/Error"
// '404':
// description: Unable to update the worker
// schema:
// "$ref": "#/definitions/Error"
// '500':
// description: Unable to update the worker
// schema:
// "$ref": "#/definitions/Error"
// UpdateWorker represents the API handler to
// update a worker in the configured backend.
func UpdateWorker(c *gin.Context) {
// capture middleware values
u := user.Retrieve(c)
w := worker.Retrieve(c)
// update engine logger with API metadata
//
// https://pkg.go.dev/github.com/sirupsen/logrus?tab=doc#Entry.WithFields
logrus.WithFields(logrus.Fields{
"user": u.GetName(),
"worker": w.GetHostname(),
}).Infof("updating worker %s", w.GetHostname())
// capture body from API request
input := new(library.Worker)
err := c.Bind(input)
if err != nil {
retErr := fmt.Errorf("unable to decode JSON for worker %s: %w", w.GetHostname(), err)
util.HandleError(c, http.StatusBadRequest, retErr)
return
}
if len(input.GetAddress()) > 0 {
// update admin if set
w.SetAddress(input.GetAddress())
}
if len(input.GetRoutes()) > 0 {
// update routes if set
w.SetRoutes(input.GetRoutes())
}
if input.GetActive() {
// update active if set
w.SetActive(input.GetActive())
}
if len(input.GetStatus()) > 0 {
// update status if set
w.SetStatus(input.GetStatus())
}
if input.GetLastStatusUpdateAt() > 0 {
// update LastStatusUpdateAt if set
w.SetLastStatusUpdateAt(input.GetLastStatusUpdateAt())
}
if len(input.GetRunningBuildIDs()) > 0 {
// update RunningBuildIDs if set
w.SetRunningBuildIDs(input.GetRunningBuildIDs())
}
if input.GetLastBuildFinishedAt() > 0 {
// update LastBuildFinishedAt if set
w.SetLastBuildFinishedAt(input.GetLastBuildFinishedAt())
}
if input.GetLastCheckedIn() > 0 {
// update LastCheckedIn if set
w.SetLastCheckedIn(input.GetLastCheckedIn())
}
// send API call to update the worker
err = database.FromContext(c).UpdateWorker(w)
if err != nil {
retErr := fmt.Errorf("unable to update worker %s: %w", w.GetHostname(), err)
util.HandleError(c, http.StatusInternalServerError, retErr)
return
}
// send API call to capture the updated worker
w, _ = database.FromContext(c).GetWorkerForHostname(w.GetHostname())
c.JSON(http.StatusOK, w)
}
// swagger:operation POST /api/v1/workers/{worker}/refresh workers RefreshWorkerAuth
//
// Refresh authorization token for worker
//
// ---
// produces:
// - application/json
// parameters:
// - in: path
// name: worker
// description: Name of the worker
// required: true
// type: string
// security:
// - ApiKeyAuth: []
// responses:
// '200':
// description: Successfully refreshed auth
// schema:
// "$ref": "#/definitions/Token"
// '400':
// description: Unable to refresh worker auth
// schema:
// "$ref": "#/definitions/Error"
// '404':
// description: Unable to refresh worker auth
// schema:
// "$ref": "#/definitions/Error"
// '500':
// description: Unable to refresh worker auth
// schema:
// "$ref": "#/definitions/Error"
// RefreshWorkerAuth represents the API handler to
// refresh the auth token for a worker.
func RefreshWorkerAuth(c *gin.Context) {
// capture middleware values
w := worker.Retrieve(c)
cl := claims.Retrieve(c)
// set last checked in time
w.SetLastCheckedIn(time.Now().Unix())
// send API call to update the worker
err := database.FromContext(c).UpdateWorker(w)
if err != nil {
retErr := fmt.Errorf("unable to update worker %s: %w", w.GetHostname(), err)
util.HandleError(c, http.StatusInternalServerError, retErr)
return
}
// update engine logger with API metadata
//
// https://pkg.go.dev/github.com/sirupsen/logrus?tab=doc#Entry.WithFields
logrus.WithFields(logrus.Fields{
"worker": w.GetHostname(),
}).Infof("refreshing worker %s authentication", w.GetHostname())
switch cl.TokenType {
// if symmetric token configured, send back symmetric token
case constants.ServerWorkerTokenType:
if secret, ok := c.Value("secret").(string); ok {
tkn := new(library.Token)
tkn.SetToken(secret)
c.JSON(http.StatusOK, tkn)
return
}
retErr := fmt.Errorf("symmetric token provided but not configured in server")
util.HandleError(c, http.StatusBadRequest, retErr)
return
// if worker auth / register token, send back auth token
case constants.WorkerAuthTokenType, constants.WorkerRegisterTokenType:
tm := c.MustGet("token-manager").(*token.Manager)
wmto := &token.MintTokenOpts{
TokenType: constants.WorkerAuthTokenType,
TokenDuration: tm.WorkerAuthTokenDuration,
Hostname: cl.Subject,
}
tkn := new(library.Token)
wt, err := tm.MintToken(wmto)
if err != nil {
retErr := fmt.Errorf("unable to generate auth token for worker %s: %w", w.GetHostname(), err)
util.HandleError(c, http.StatusInternalServerError, retErr)
return
}
tkn.SetToken(wt)
c.JSON(http.StatusOK, tkn)
}
}
// swagger:operation DELETE /api/v1/workers/{worker} workers DeleteWorker
//
// Delete a worker for the configured backend
//
// ---
// produces:
// - application/json
// parameters:
// - in: path
// name: worker
// description: Name of the worker
// required: true
// type: string
// security:
// - ApiKeyAuth: []
// responses:
// '200':
// description: Successfully deleted of worker
// schema:
// type: string
// '500':
// description: Unable to delete worker
// schema:
// "$ref": "#/definitions/Error"
// DeleteWorker represents the API handler to remove
// a worker from the configured backend.
func DeleteWorker(c *gin.Context) {
// capture middleware values
u := user.Retrieve(c)
w := worker.Retrieve(c)
// update engine logger with API metadata
//
// https://pkg.go.dev/github.com/sirupsen/logrus?tab=doc#Entry.WithFields
logrus.WithFields(logrus.Fields{
"user": u.GetName(),
"worker": w.GetHostname(),
}).Infof("deleting worker %s", w.GetHostname())
// send API call to remove the step
err := database.FromContext(c).DeleteWorker(w)
if err != nil {
retErr := fmt.Errorf("unable to delete worker %s: %w", w.GetHostname(), err)
util.HandleError(c, http.StatusInternalServerError, retErr)
return
}
c.JSON(http.StatusOK, fmt.Sprintf("worker %s deleted", w.GetHostname()))
}