-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodels.go
140 lines (118 loc) · 2.14 KB
/
models.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
package main
import (
"fmt"
"time"
)
var (
statusPending = "pending"
statusSuccess = "success"
statusError = "failed"
)
type ExitError struct {
ExitCode int64
ID int
}
type Deployment struct {
ID string `gorethink:"id,omitempty"`
Owner string
Name string
JobID int
SSHURL string
HTTPURL string
Task string
Env string
Ref string
SHA string
Author string
Started time.Time
Finished time.Time
ExitCode int64
Status string
Logs []byte
User User
Commits []Commit
Files []File
}
type User struct {
Login string
AvatarURL string
HTTPURL string
}
type Commit struct {
SHA string
HTTPURL string
Message string
Author User
}
type File struct {
Filename string
Status string
}
func (e ExitError) Error() string {
return fmt.Sprintf("Deploy #%d failed with exit code \"%d\"", e.ID, e.ExitCode)
}
func (d *Deployment) PanelColor() string {
var color string
switch d.Status {
case statusPending:
color = "yellow"
case statusSuccess:
color = "green"
case statusError:
color = "red"
default:
color = "teal"
}
return color
}
func (d *Deployment) Icon() string {
var icon string
switch d.Status {
case statusPending:
icon = "refresh yellow"
case statusSuccess:
icon = "check circle green"
case statusError:
icon = "remove circle red"
default:
icon = "help circle teal"
}
return icon
}
func (f File) Icon() string {
var icon string
switch f.Status {
case "added":
icon = "plus square outline green"
case "modified":
icon = "write yellow"
case "removed":
icon = "minus square outline red"
case "renamed":
icon = "edit orange"
}
return icon
}
func (d *Deployment) LogToString() string {
return string(d.Logs)
}
func (d *Deployment) Duration() time.Duration {
if d.Finished.IsZero() {
return time.Now().Sub(d.Started)
} else {
return d.Finished.Sub(d.Started)
}
}
func (d *Deployment) ShortSHA() string {
if len(d.SHA) > 7 {
return d.SHA[:7]
} else {
return d.SHA
}
}
func (c Commit) ShortSHA() string {
return c.SHA[:7]
}
func (d *Deployment) FullName() string {
return fmt.Sprintf("%s/%s", d.Owner, d.Name)
}