woodpecker/model/cc.go

55 lines
1.3 KiB
Go
Raw Normal View History

2015-09-30 01:21:17 +00:00
package model
2014-08-01 04:44:25 +00:00
import (
"encoding/xml"
"strconv"
2015-02-01 01:26:10 +00:00
"time"
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"`
}
2015-09-30 01:21:17 +00:00
func NewCC(r *Repo, b *Build, link string) *CCProjects {
2014-08-01 04:44:25 +00:00
proj := &CCProject{
2015-09-30 01:21:17 +00:00
Name: r.FullName,
WebURL: link,
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.
2015-09-30 01:21:17 +00:00
if b.Status != StatusPending &&
b.Status != StatusRunning {
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
}
2015-09-30 01:21:17 +00:00
// ensure the last build Status accepts a valid
// ccmenu enumeration
switch b.Status {
2015-09-30 01:21:17 +00:00
case StatusError, StatusKilled:
proj.LastBuildStatus = "Exception"
2015-09-30 01:21:17 +00:00
case StatusSuccess:
proj.LastBuildStatus = "Success"
2015-09-30 01:21:17 +00:00
case StatusFailure:
proj.LastBuildStatus = "Failure"
2014-08-01 04:44:25 +00:00
}
return &CCProjects{Project: proj}
}