forked from drone/go-scm
-
Notifications
You must be signed in to change notification settings - Fork 83
/
const.go
249 lines (230 loc) · 4.63 KB
/
const.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
// Copyright 2017 Drone.IO Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package scm
import (
"encoding/json"
"fmt"
"strings"
)
// State represents the commit state.
type State int
// State values.
const (
StateUnknown State = iota
StateFailure
StateCanceled
StateError
StateExpected
StatePending
StateRunning
StateSuccess
)
// String returns a string representation of the State
func (s State) String() string {
switch s {
case StateUnknown:
return "unknown"
case StatePending:
return "pending"
case StateRunning:
return "running"
case StateSuccess:
return "success"
case StateFailure:
return "failure"
case StateCanceled:
return "cancelled"
case StateExpected:
return "expected"
case StateError:
return "error"
default:
return "unknown"
}
}
// ToState converts the given text to a state
func ToState(s string) State {
switch strings.ToLower(s) {
case "pending":
return StatePending
case "running":
return StateRunning
case "success":
return StateSuccess
case "failure":
return StateFailure
case "cancelled":
return StateCanceled
case "expected":
return StateExpected
case "error":
return StateError
default:
return StateUnknown
}
}
func (s State) MarshalJSON() ([]byte, error) {
return []byte(fmt.Sprintf(`"%s"`, s.String())), nil
}
func (s *State) UnmarshalJSON(b []byte) error {
*s = ToState(strings.Trim(string(b), `"`))
return nil
}
// Action identifies webhook actions.
type Action int
// Action values.
const (
ActionCreate Action = iota + 1
ActionUpdate
ActionDelete
// issues
ActionOpen
ActionReopen
ActionClose
ActionLabel
ActionUnlabel
// pull requests
ActionSync
ActionMerge
ActionAssigned
ActionUnassigned
ActionReviewRequested
ActionReviewRequestRemoved
ActionReadyForReview
// reviews
ActionEdited
ActionSubmitted
ActionDismissed
// check run / check suite
ActionCompleted
)
// String returns the string representation of Action.
func (a Action) String() (s string) {
switch a {
case ActionCreate:
return "created"
case ActionUpdate:
return "updated"
case ActionDelete:
return "deleted"
case ActionLabel:
return "labeled"
case ActionUnlabel:
return "unlabeled"
case ActionOpen:
return "opened"
case ActionReopen:
return "reopened"
case ActionClose:
return "closed"
case ActionSync:
return "synchronized"
case ActionMerge:
return "merged"
case ActionEdited:
return "edited"
case ActionSubmitted:
return "submitted"
case ActionDismissed:
return "dismisssed"
case ActionAssigned:
return "assigned"
case ActionUnassigned:
return "unassigned"
case ActionReviewRequested:
return "review_requested"
case ActionReviewRequestRemoved:
return "review_request_removed"
case ActionReadyForReview:
return "ready_for_review"
case ActionCompleted:
return "completed"
default:
return
}
}
// MarshalJSON returns the JSON-encoded Action.
func (a Action) MarshalJSON() ([]byte, error) {
return json.Marshal(a.String())
}
// UnmarshalJSON unmarshales the JSON-encoded Action.
func (a *Action) UnmarshalJSON(data []byte) error {
var s string
if err := json.Unmarshal(data, &s); err != nil {
return err
}
switch s {
case "created":
*a = ActionCreate
case "updated":
*a = ActionUpdate
case "deleted":
*a = ActionDelete
case "labeled":
*a = ActionLabel
case "unlabeled":
*a = ActionUnlabel
case "opened":
*a = ActionOpen
case "reopened":
*a = ActionReopen
case "closed":
*a = ActionClose
case "synchronized":
*a = ActionSync
case "merged":
*a = ActionMerge
case "completed":
*a = ActionCompleted
case "ready_for_review":
*a = ActionReadyForReview
case "submitted":
*a = ActionSubmitted
case "dismissed":
*a = ActionDismissed
case "edited":
*a = ActionEdited
}
return nil
}
// Driver identifies source code management driver.
type Driver int
// Driver values.
const (
DriverUnknown Driver = iota
DriverGithub
DriverGitlab
DriverGogs
DriverGitea
DriverBitbucket
DriverStash
DriverCoding
DriverFake
)
// String returns the string representation of Driver.
func (d Driver) String() (s string) {
switch d {
case DriverGithub:
return "github"
case DriverGitlab:
return "gitlab"
case DriverGogs:
return "gogs"
case DriverGitea:
return "gitea"
case DriverBitbucket:
return "bitbucket"
case DriverStash:
return "stash"
case DriverCoding:
return "coding"
case DriverFake:
return "fake"
default:
return "unknown"
}
}
// SearchTimeFormat is a time.Time format string for ISO8601 which is the
// format that GitHub requires for times specified as part of a search query.
const SearchTimeFormat = "2006-01-02T15:04:05Z"