Files
woodpecker/server/badges/badges.go
David Loewe e2270ae95c Per-Workflow and Per-Workflow-Step badge generation (#5977)
Co-authored-by: qwerty287 <80460567+qwerty287@users.noreply.github.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Robert Kaussow <mail@thegeeklab.de>
Co-authored-by: qwerty287 <qwerty287@posteo.de>
2026-02-01 16:44:09 +01:00

61 lines
1.7 KiB
Go

// Copyright 2022 Woodpecker Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package badges
import (
"github.com/rs/zerolog/log"
"go.woodpecker-ci.org/woodpecker/v3/server/model"
)
var (
// Status labels.
badgeStatusSuccess = "success"
badgeStatusFailure = "failure"
badgeStatusStarted = "started"
badgeStatusError = "error"
badgeStatusNone = "none"
)
func getBadgeStatusLabelAndColor(status *model.StatusValue) (string, Color) {
if status == nil {
return badgeStatusNone, ColorGray
}
switch *status {
case model.StatusSuccess:
return badgeStatusSuccess, ColorGreen
case model.StatusFailure:
return badgeStatusFailure, ColorRed
case model.StatusPending, model.StatusRunning:
return badgeStatusStarted, ColorYellow
case model.StatusError, model.StatusKilled:
return badgeStatusError, ColorGray
default:
return badgeStatusNone, ColorGray
}
}
// Generate an SVG badge based on a pipeline.
func Generate(name string, status *model.StatusValue) (string, error) {
label, color := getBadgeStatusLabelAndColor(status)
bytes, err := RenderBytes(name, label, color)
if err != nil {
log.Warn().Err(err).Msg("could not render badge")
return "", err
}
return string(bytes), nil
}