mirror of
https://github.com/mentos1386/zdravko.git
synced 2024-11-22 15:53:45 +00:00
30 lines
895 B
Go
30 lines
895 B
Go
package activities
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/mentos1386/zdravko/database/models"
|
|
"github.com/mentos1386/zdravko/internal/server/services"
|
|
"github.com/mentos1386/zdravko/internal/temporal"
|
|
)
|
|
|
|
func (a *Activities) AddTargetHistory(ctx context.Context, param temporal.ActivityAddTargetHistoryParam) (*temporal.ActivityAddTargetHistoryResult, error) {
|
|
|
|
status := models.TargetStatusUnknown
|
|
if param.Status == temporal.AddTargetHistoryStatusSuccess {
|
|
status = models.TargetStatusSuccess
|
|
}
|
|
if param.Status == temporal.AddTargetHistoryStatusFailure {
|
|
status = models.TargetStatusFailure
|
|
}
|
|
|
|
err := services.AddHistoryForTarget(ctx, a.db, &models.TargetHistory{
|
|
TargetId: param.Target.Id,
|
|
WorkerGroupId: param.WorkerGroupId,
|
|
CheckId: param.CheckId,
|
|
Status: status,
|
|
Note: param.Note,
|
|
})
|
|
|
|
return &temporal.ActivityAddTargetHistoryResult{}, err
|
|
}
|