Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 2.5k
Expand file tree
/
Copy pathevent.go
More file actions
Latest commit
54 lines (46 loc) · 1.62 KB
/
Copy pathevent.go
File metadata and controls
54 lines (46 loc) · 1.62 KB
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
// Copyright 2018 The go-github AUTHORS. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package github
import (
"encoding/json"
)
// Event represents a GitHub event.
typeEventstruct {
Type*string`json:"type,omitempty"`
Public*bool`json:"public,omitempty"`
RawPayload*json.RawMessage`json:"payload,omitempty"`
Repo*Repository`json:"repo,omitempty"`
Actor*User`json:"actor,omitempty"`
Org*Organization`json:"org,omitempty"`
CreatedAt*Timestamp`json:"created_at,omitempty"`
ID*string`json:"id,omitempty"`
}
func (eEvent) String() string {
returnStringify(e)
}
// ParsePayload parses the event payload. For recognized event types,
// a value of the corresponding struct type will be returned.
func (e*Event) ParsePayload() (any, error) {
// It would be nice if e.Type were the snake_case name of the event,
// but the existing interface uses the struct name instead.
payload:=EventForType(typeToMessageMapping[e.GetType()])
iferr:=json.Unmarshal(e.GetRawPayload(), &payload); err!=nil {
returnnil, err
}
returnpayload, nil
}
// Payload returns the parsed event payload. For recognized event types,
// a value of the corresponding struct type will be returned.
//
// Deprecated: Use ParsePayload instead, which returns an error
// rather than panics if JSON unmarshaling raw payload fails.
func (e*Event) Payload() (payloadany) {
varerrerror
payload, err=e.ParsePayload()
iferr!=nil {
panic(err)
}
returnpayload
}