mirror of
https://github.com/mentos1386/zdravko.git
synced 2024-11-22 15:53:45 +00:00
58 lines
1.5 KiB
Go
58 lines
1.5 KiB
Go
package workflows
|
|
|
|
import (
|
|
"sort"
|
|
"time"
|
|
|
|
"code.tjo.space/mentos1386/zdravko/database/models"
|
|
"code.tjo.space/mentos1386/zdravko/internal/activities"
|
|
"go.temporal.io/sdk/workflow"
|
|
)
|
|
|
|
type CheckWorkflowParam struct {
|
|
Script string
|
|
CheckId string
|
|
WorkerGroupIds []string
|
|
}
|
|
|
|
func (w *Workflows) CheckWorkflowDefinition(ctx workflow.Context, param CheckWorkflowParam) (models.CheckStatus, error) {
|
|
workerGroupIds := param.WorkerGroupIds
|
|
sort.Strings(workerGroupIds)
|
|
|
|
for _, workerGroupId := range workerGroupIds {
|
|
ctx = workflow.WithActivityOptions(ctx, workflow.ActivityOptions{
|
|
StartToCloseTimeout: 60 * time.Second,
|
|
TaskQueue: workerGroupId,
|
|
})
|
|
|
|
heatlcheckParam := activities.HealtcheckParam{
|
|
Script: param.Script,
|
|
}
|
|
|
|
var checkResult *activities.CheckResult
|
|
err := workflow.ExecuteActivity(ctx, w.activities.Check, heatlcheckParam).Get(ctx, &checkResult)
|
|
if err != nil {
|
|
return models.CheckUnknown, err
|
|
}
|
|
|
|
status := models.CheckFailure
|
|
if checkResult.Success {
|
|
status = models.CheckSuccess
|
|
}
|
|
|
|
historyParam := activities.HealtcheckAddToHistoryParam{
|
|
CheckId: param.CheckId,
|
|
Status: status,
|
|
Note: checkResult.Note,
|
|
WorkerGroupId: workerGroupId,
|
|
}
|
|
|
|
var historyResult *activities.CheckAddToHistoryResult
|
|
err = workflow.ExecuteActivity(ctx, w.activities.CheckAddToHistory, historyParam).Get(ctx, &historyResult)
|
|
if err != nil {
|
|
return models.CheckUnknown, err
|
|
}
|
|
}
|
|
|
|
return models.CheckSuccess, nil
|
|
}
|