forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.go
81 lines (68 loc) · 1.24 KB
/
events.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
package githttp
import (
"fmt"
"net/http"
)
// An event (triggered on push/pull)
type Event struct {
// One of tag/push/fetch
Type EventType `json:"type"`
////
// Set for pushes and pulls
////
// SHA of commit
Commit string `json:"commit"`
// Path to bare repo
Dir string
////
// Set for pushes or tagging
////
Tag string `json:"tag,omitempty"`
Last string `json:"last,omitempty"`
Branch string `json:"branch,omitempty"`
// Error contains the error that happened (if any)
// during this action/event
Error error
// Http stuff
Request *http.Request
}
type EventType int
// Possible event types
const (
TAG = iota + 1
PUSH
FETCH
PUSH_FORCE
)
func (e EventType) String() string {
switch e {
case TAG:
return "tag"
case PUSH:
return "push"
case PUSH_FORCE:
return "push-force"
case FETCH:
return "fetch"
}
return "unknown"
}
func (e EventType) MarshalJSON() ([]byte, error) {
return []byte(fmt.Sprintf(`"%s"`, e)), nil
}
func (e EventType) UnmarshalJSON(data []byte) error {
str := string(data[:])
switch str {
case "tag":
e = TAG
case "push":
e = PUSH
case "push-force":
e = PUSH_FORCE
case "fetch":
e = FETCH
default:
return fmt.Errorf("'%s' is not a known git event type")
}
return nil
}