forked from drone/go-scm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
const.go
214 lines (195 loc) · 3.83 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
// 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
)
// 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"
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
)
// 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"
default:
return "unknown"
}
}
// Role defines membership roles.
type Role int
// Role values.
const (
RoleUndefined Role = iota
RoleMember
RoleAdmin
)
// String returns the string representation of Role.
func (r Role) String() (s string) {
switch r {
case RoleMember:
return "member"
case RoleAdmin:
return "admin"
default:
return "unknown"
}
}
// ContentKind defines the kind of a content in a directory.
type ContentKind int
// ContentKind values.
const (
ContentKindUnsupported ContentKind = iota
ContentKindFile
ContentKindDirectory
ContentKindSymlink
ContentKindGitlink
)
// String returns the string representation of ContentKind.
func (k ContentKind) String() string {
switch k {
case ContentKindFile:
return "file"
case ContentKindDirectory:
return "directory"
case ContentKindSymlink:
return "symlink"
case ContentKindGitlink:
return "gitlink"
default:
return "unsupported"
}
}
// UnmarshalJSON unmarshales the JSON-encoded ContentKind.
func (k *ContentKind) UnmarshalJSON(data []byte) error {
var s string
if err := json.Unmarshal(data, &s); err != nil {
return err
}
switch s {
case ContentKindFile.String():
*k = ContentKindFile
case ContentKindDirectory.String():
*k = ContentKindDirectory
case ContentKindSymlink.String():
*k = ContentKindSymlink
case ContentKindGitlink.String():
*k = ContentKindGitlink
default:
*k = ContentKindUnsupported
}
return nil
}