mirror of
https://github.com/mentos1386/zdravko.git
synced 2024-11-22 07:43:33 +00:00
73 lines
1.5 KiB
Go
73 lines
1.5 KiB
Go
package activities
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"log/slog"
|
|
"net/http"
|
|
|
|
"code.tjo.space/mentos1386/zdravko/pkg/api"
|
|
"code.tjo.space/mentos1386/zdravko/pkg/k6"
|
|
)
|
|
|
|
type HealtcheckParam struct {
|
|
Script string
|
|
}
|
|
|
|
type HealthcheckResult struct {
|
|
Success bool
|
|
Note string
|
|
}
|
|
|
|
func (a *Activities) Healthcheck(ctx context.Context, param HealtcheckParam) (*HealthcheckResult, error) {
|
|
execution := k6.NewExecution(slog.Default(), param.Script)
|
|
|
|
result, err := execution.Run(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &HealthcheckResult{Success: result.Success, Note: result.Note}, nil
|
|
}
|
|
|
|
type HealtcheckAddToHistoryParam struct {
|
|
Slug string
|
|
Status string
|
|
Note string
|
|
}
|
|
|
|
type HealthcheckAddToHistoryResult struct {
|
|
}
|
|
|
|
func (a *Activities) HealthcheckAddToHistory(ctx context.Context, param HealtcheckAddToHistoryParam) (*HealthcheckAddToHistoryResult, error) {
|
|
url := fmt.Sprintf("%s/api/v1/healthchecks/%s/history", a.config.ApiUrl, param.Slug)
|
|
|
|
body := api.ApiV1HealthchecksHistoryPOSTBody{
|
|
Status: param.Status,
|
|
Note: param.Note,
|
|
}
|
|
|
|
jsonBody, err := json.Marshal(body)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
req, err := api.NewRequest(http.MethodPost, url, a.config.Token, bytes.NewReader(jsonBody))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
response, err := http.DefaultClient.Do(req)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer response.Body.Close()
|
|
|
|
if response.StatusCode != http.StatusCreated {
|
|
return nil, fmt.Errorf("unexpected status code: %d", response.StatusCode)
|
|
}
|
|
|
|
return &HealthcheckAddToHistoryResult{}, nil
|
|
}
|