Tobias Trabelsi
7f2c465391
All checks were successful
ci/woodpecker/pr/pr Pipeline was successful
split pipeline
78 lines
2.2 KiB
Go
78 lines
2.2 KiB
Go
package woodpecker
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"net/http"
|
|
"strings"
|
|
|
|
"git.uploadfilter24.eu/covidnetes/woodpecker-autoscaler/internal/config"
|
|
"git.uploadfilter24.eu/covidnetes/woodpecker-autoscaler/internal/models"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func QueueInfo(cfg *config.Config, target interface{}) error {
|
|
apiRoute := fmt.Sprintf("%s/api/queue/info", cfg.WoodpeckerInstance)
|
|
req, err := http.NewRequest("GET", apiRoute, nil)
|
|
if err != nil {
|
|
return errors.New(fmt.Sprintf("Could not create queue request: %s", err.Error()))
|
|
}
|
|
req.Header.Set("Accept", "application/json")
|
|
req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", cfg.WoodpeckerApiToken))
|
|
|
|
resp, err := http.DefaultClient.Do(req)
|
|
if err != nil {
|
|
return errors.New(fmt.Sprintf("Could not query queue info: %s", err.Error()))
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
if resp.StatusCode != 200 {
|
|
return errors.New(fmt.Sprintf("Error from queue info api: %s", err.Error()))
|
|
}
|
|
|
|
return json.NewDecoder(resp.Body).Decode(target)
|
|
}
|
|
|
|
func CheckPending(cfg *config.Config) (bool, error) {
|
|
expectedKV := strings.Split(cfg.LabelSelector, "=")
|
|
queueInfo := new(models.QueueInfo)
|
|
err := QueueInfo(cfg, queueInfo)
|
|
if err != nil {
|
|
return false, errors.New(fmt.Sprintf("Error from QueueInfo: %s", err.Error()))
|
|
}
|
|
if queueInfo.Stats.PendingCount > 0 {
|
|
if queueInfo.Pending != nil {
|
|
for _, pendingJobs := range queueInfo.Pending {
|
|
val, exists := pendingJobs.Labels[expectedKV[0]]
|
|
if exists && val == expectedKV[1] {
|
|
log.WithFields(log.Fields{
|
|
"Caller": "CheckPending",
|
|
}).Info("Found pending job for us")
|
|
return true, nil
|
|
} else {
|
|
log.WithFields(log.Fields{
|
|
"Caller": "CheckPending",
|
|
}).Info("No Jobs for us in Queue")
|
|
return false, nil
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return false, nil
|
|
}
|
|
|
|
func CheckRunning(cfg *config.Config) (bool, error) {
|
|
queueInfo := new(models.QueueInfo)
|
|
err := QueueInfo(cfg, queueInfo)
|
|
if err != nil {
|
|
return false, errors.New(fmt.Sprintf("Error from QueueInfo: %s", err.Error()))
|
|
}
|
|
// TODO: create and parse running object. there may be jobs that are not for us
|
|
if queueInfo.Stats.RunningCount > 0 {
|
|
return true, nil
|
|
}
|
|
return false, nil
|
|
}
|