mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-12 12:15:00 +00:00
adb2c82790
https://go.dev/doc/modules/release-workflow#breaking Fixes https://github.com/woodpecker-ci/woodpecker/issues/2913 fixes #2654 ``` runephilosof@fedora:~/code/platform-woodpecker/woodpecker-repo-configurator (master)$ go get go.woodpecker-ci.org/woodpecker@v2.0.0 go: go.woodpecker-ci.org/woodpecker@v2.0.0: invalid version: module contains a go.mod file, so module path must match major version ("go.woodpecker-ci.org/woodpecker/v2") ``` --------- Co-authored-by: qwerty287 <80460567+qwerty287@users.noreply.github.com>
76 lines
2.3 KiB
Go
76 lines
2.3 KiB
Go
// Copyright 2022 Woodpecker Authors
|
|
// Copyright 2018 Drone.IO Inc.
|
|
//
|
|
// 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 ccmenu
|
|
|
|
import (
|
|
"encoding/xml"
|
|
"strconv"
|
|
"time"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/model"
|
|
)
|
|
|
|
// CCMenu displays the pipeline status of projects on a ci server as an item in the Mac's menu bar.
|
|
// It started as part of the CruiseControl project that built the first continuous integration server.
|
|
//
|
|
// http://ccmenu.org/
|
|
|
|
type CCProjects struct {
|
|
XMLName xml.Name `xml:"Projects"`
|
|
Project *CCProject `xml:"Project"`
|
|
}
|
|
|
|
type CCProject struct {
|
|
XMLName xml.Name `xml:"Project"`
|
|
Name string `xml:"name,attr"`
|
|
Activity string `xml:"activity,attr"`
|
|
LastBuildStatus string `xml:"lastBuildStatus,attr"`
|
|
LastBuildLabel string `xml:"lastBuildLabel,attr"`
|
|
LastBuildTime string `xml:"lastBuildTime,attr"`
|
|
WebURL string `xml:"webUrl,attr"`
|
|
}
|
|
|
|
func New(r *model.Repo, b *model.Pipeline, url string) *CCProjects {
|
|
proj := &CCProject{
|
|
Name: r.FullName,
|
|
WebURL: url,
|
|
Activity: "Building",
|
|
LastBuildStatus: "Unknown",
|
|
LastBuildLabel: "Unknown",
|
|
}
|
|
|
|
// if the pipeline is not currently running then
|
|
// we can return the latest pipeline status.
|
|
if b.Status != model.StatusPending &&
|
|
b.Status != model.StatusRunning {
|
|
proj.Activity = "Sleeping"
|
|
proj.LastBuildTime = time.Unix(b.Started, 0).Format(time.RFC3339)
|
|
proj.LastBuildLabel = strconv.FormatInt(b.Number, 10)
|
|
}
|
|
|
|
// ensure the last pipeline status accepts a valid
|
|
// ccmenu enumeration
|
|
switch b.Status {
|
|
case model.StatusError, model.StatusKilled:
|
|
proj.LastBuildStatus = "Exception"
|
|
case model.StatusSuccess:
|
|
proj.LastBuildStatus = "Success"
|
|
case model.StatusFailure:
|
|
proj.LastBuildStatus = "Failure"
|
|
}
|
|
|
|
return &CCProjects{Project: proj}
|
|
}
|