woodpecker/shared/ccmenu/ccmenu.go

59 lines
1.5 KiB
Go
Raw Normal View History

package ccmenu
2014-08-01 04:44:25 +00:00
import (
"encoding/xml"
"strconv"
2015-02-01 01:26:10 +00:00
"time"
2015-05-17 20:51:42 +00:00
"github.com/drone/drone/pkg/types"
2014-08-01 04:44:25 +00:00
)
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 NewCC(r *types.Repo, b *types.Build) *CCProjects {
2014-08-01 04:44:25 +00:00
proj := &CCProject{
Name: r.Owner + "/" + r.Name,
2015-05-17 20:51:42 +00:00
WebURL: r.Self,
2014-08-01 04:44:25 +00:00
Activity: "Building",
LastBuildStatus: "Unknown",
LastBuildLabel: "Unknown",
}
// if the build is not currently running then
// we can return the latest build status.
if b.Status != types.StatePending &&
b.Status != types.StateRunning {
2014-08-01 04:44:25 +00:00
proj.Activity = "Sleeping"
proj.LastBuildTime = time.Unix(b.Started, 0).Format(time.RFC3339)
proj.LastBuildLabel = strconv.Itoa(b.Number)
2014-08-01 04:44:25 +00:00
}
// ensure the last build state accepts a valid
// ccmenu enumeration
switch b.Status {
2015-05-17 20:51:42 +00:00
case types.StateError, types.StateKilled:
proj.LastBuildStatus = "Exception"
2015-05-17 20:51:42 +00:00
case types.StateSuccess:
proj.LastBuildStatus = "Success"
2015-05-17 20:51:42 +00:00
case types.StateFailure:
proj.LastBuildStatus = "Failure"
default:
proj.LastBuildStatus = "Unknown"
2014-08-01 04:44:25 +00:00
}
return &CCProjects{Project: proj}
}