harness-drone/handler/api/ccmenu/cc.go

65 lines
1.7 KiB
Go
Raw Normal View History

2019-02-19 23:56:41 +00:00
// Copyright 2019 Drone.IO Inc. All rights reserved.
// Use of this source code is governed by the Drone Non-Commercial License
// that can be found in the LICENSE file.
2018-02-19 22:24:10 +00:00
2019-02-28 20:49:04 +00:00
// +build !oss
2019-02-19 23:56:41 +00:00
package ccmenu
2014-08-01 04:44:25 +00:00
import (
"encoding/xml"
2019-02-19 23:56:41 +00:00
"fmt"
2015-02-01 01:26:10 +00:00
"time"
2019-02-19 23:56:41 +00:00
"github.com/drone/drone/core"
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"`
}
2019-04-16 02:08:21 +00:00
// New creates a new CCProject from the Repository and Build details.
2019-02-19 23:56:41 +00:00
func New(r *core.Repository, b *core.Build, link string) *CCProjects {
2014-08-01 04:44:25 +00:00
proj := &CCProject{
2019-02-19 23:56:41 +00:00
Name: r.Slug,
2015-09-30 01:21:17 +00:00
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.
2019-02-19 23:56:41 +00:00
if b.Status != core.StatusPending &&
b.Status != core.StatusRunning &&
b.Status != core.StatusBlocked {
2014-08-01 04:44:25 +00:00
proj.Activity = "Sleeping"
proj.LastBuildTime = time.Unix(b.Started, 0).Format(time.RFC3339)
2019-02-19 23:56:41 +00:00
proj.LastBuildLabel = fmt.Sprint(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 {
2019-02-19 23:56:41 +00:00
case core.StatusError, core.StatusKilled, core.StatusDeclined:
proj.LastBuildStatus = "Exception"
2019-02-19 23:56:41 +00:00
case core.StatusPassing:
proj.LastBuildStatus = "Success"
2019-02-19 23:56:41 +00:00
case core.StatusFailing:
proj.LastBuildStatus = "Failure"
2014-08-01 04:44:25 +00:00
}
return &CCProjects{Project: proj}
}