2022-10-18 01:24:12 +00:00
|
|
|
// 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.
|
|
|
|
|
2021-12-28 16:02:49 +00:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
2022-05-12 17:07:33 +00:00
|
|
|
"bytes"
|
2021-12-28 16:02:49 +00:00
|
|
|
"fmt"
|
2022-05-12 17:07:33 +00:00
|
|
|
"text/template"
|
2021-12-28 16:02:49 +00:00
|
|
|
|
2023-11-01 16:28:02 +00:00
|
|
|
"github.com/rs/zerolog/log"
|
|
|
|
|
2023-12-08 07:15:08 +00:00
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/server"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/model"
|
2021-12-28 16:02:49 +00:00
|
|
|
)
|
|
|
|
|
2023-06-27 16:01:18 +00:00
|
|
|
func GetPipelineStatusContext(repo *model.Repo, pipeline *model.Pipeline, workflow *model.Workflow) string {
|
2022-10-18 01:24:12 +00:00
|
|
|
event := string(pipeline.Event)
|
2024-01-10 14:34:44 +00:00
|
|
|
if pipeline.Event == model.EventPull {
|
2022-05-12 17:07:33 +00:00
|
|
|
event = "pr"
|
2021-12-28 16:02:49 +00:00
|
|
|
}
|
|
|
|
|
2022-05-12 17:07:33 +00:00
|
|
|
tmpl, err := template.New("context").Parse(server.Config.Server.StatusContextFormat)
|
|
|
|
if err != nil {
|
2023-11-03 12:00:34 +00:00
|
|
|
log.Error().Err(err).Msg("could not create status from template")
|
2022-05-12 17:07:33 +00:00
|
|
|
return ""
|
|
|
|
}
|
|
|
|
var ctx bytes.Buffer
|
2023-11-12 17:23:48 +00:00
|
|
|
err = tmpl.Execute(&ctx, map[string]any{
|
2022-05-12 17:07:33 +00:00
|
|
|
"context": server.Config.Server.StatusContext,
|
|
|
|
"event": event,
|
2023-06-27 16:01:18 +00:00
|
|
|
"workflow": workflow.Name,
|
2022-05-12 17:07:33 +00:00
|
|
|
"owner": repo.Owner,
|
|
|
|
"repo": repo.Name,
|
2023-11-01 16:28:02 +00:00
|
|
|
"axis_id": workflow.AxisID,
|
2022-05-12 17:07:33 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
2023-11-01 16:28:02 +00:00
|
|
|
log.Error().Err(err).Msg("could not create status context")
|
2022-05-12 17:07:33 +00:00
|
|
|
return ""
|
2021-12-28 16:02:49 +00:00
|
|
|
}
|
|
|
|
|
2022-05-12 17:07:33 +00:00
|
|
|
return ctx.String()
|
2021-12-28 16:02:49 +00:00
|
|
|
}
|
|
|
|
|
2022-10-18 01:24:12 +00:00
|
|
|
// GetPipelineStatusDescription is a helper function that generates a description
|
|
|
|
// message for the current pipeline status.
|
|
|
|
func GetPipelineStatusDescription(status model.StatusValue) string {
|
2021-12-28 16:02:49 +00:00
|
|
|
switch status {
|
|
|
|
case model.StatusPending:
|
|
|
|
return "Pipeline is pending"
|
|
|
|
case model.StatusRunning:
|
|
|
|
return "Pipeline is running"
|
|
|
|
case model.StatusSuccess:
|
|
|
|
return "Pipeline was successful"
|
|
|
|
case model.StatusFailure, model.StatusError:
|
|
|
|
return "Pipeline failed"
|
|
|
|
case model.StatusKilled:
|
|
|
|
return "Pipeline was canceled"
|
|
|
|
case model.StatusBlocked:
|
|
|
|
return "Pipeline is pending approval"
|
|
|
|
case model.StatusDeclined:
|
|
|
|
return "Pipeline was rejected"
|
|
|
|
default:
|
|
|
|
return "unknown status"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-14 16:12:12 +00:00
|
|
|
func GetPipelineStatusURL(repo *model.Repo, pipeline *model.Pipeline, workflow *model.Workflow) string {
|
2023-06-27 16:01:18 +00:00
|
|
|
if workflow == nil {
|
2023-06-12 23:07:52 +00:00
|
|
|
return fmt.Sprintf("%s/repos/%d/pipeline/%d", server.Config.Server.Host, repo.ID, pipeline.Number)
|
2021-12-28 16:02:49 +00:00
|
|
|
}
|
|
|
|
|
2023-06-27 16:01:18 +00:00
|
|
|
return fmt.Sprintf("%s/repos/%d/pipeline/%d/%d", server.Config.Server.Host, repo.ID, pipeline.Number, workflow.PID)
|
2021-12-28 16:02:49 +00:00
|
|
|
}
|