forked from drone/go-scm
-
Notifications
You must be signed in to change notification settings - Fork 83
/
const.go
172 lines (159 loc) · 3.06 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
// 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"
)
// State represents the commit state.
type State int
// State values.
const (
StateUnknown State = iota
StatePending
StateRunning
StateSuccess
StateFailure
StateCanceled
StateError
)
// 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
)
// 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"
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
}
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"
}
}