2018-02-19 22:24:10 +00:00
|
|
|
// Copyright 2018 Drone.IO Inc.
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// 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
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// 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.
|
|
|
|
|
2015-09-30 01:21:17 +00:00
|
|
|
package model
|
2014-08-01 04:44:25 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/xml"
|
2015-04-07 08:20:55 +00:00
|
|
|
"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"
|
2015-06-23 03:45:08 +00:00
|
|
|
proj.LastBuildTime = time.Unix(b.Started, 0).Format(time.RFC3339)
|
2021-11-13 19:18:06 +00:00
|
|
|
proj.LastBuildLabel = strconv.FormatInt(b.Number, 10)
|
2014-08-01 04:44:25 +00:00
|
|
|
}
|
|
|
|
|
2015-09-30 01:21:17 +00:00
|
|
|
// ensure the last build Status accepts a valid
|
2015-04-07 08:20:55 +00:00
|
|
|
// ccmenu enumeration
|
2015-06-23 03:45:08 +00:00
|
|
|
switch b.Status {
|
2015-09-30 01:21:17 +00:00
|
|
|
case StatusError, StatusKilled:
|
2015-04-07 08:20:55 +00:00
|
|
|
proj.LastBuildStatus = "Exception"
|
2015-09-30 01:21:17 +00:00
|
|
|
case StatusSuccess:
|
2015-04-07 08:20:55 +00:00
|
|
|
proj.LastBuildStatus = "Success"
|
2015-09-30 01:21:17 +00:00
|
|
|
case StatusFailure:
|
2015-04-07 08:20:55 +00:00
|
|
|
proj.LastBuildStatus = "Failure"
|
2014-08-01 04:44:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return &CCProjects{Project: proj}
|
|
|
|
}
|