-
Notifications
You must be signed in to change notification settings - Fork 20
/
webhook_called.go
71 lines (61 loc) · 1.97 KB
/
webhook_called.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
package events
import (
"github.com/nyaruka/goflow/flows"
)
func init() {
registerType(TypeWebhookCalled, func() flows.Event { return &WebhookCalledEvent{} })
}
// TypeWebhookCalled is the type for our webhook events
const TypeWebhookCalled string = "webhook_called"
type Extraction string
const (
ExtractionNone Extraction = "none" // no response or body was empty
ExtractionValid Extraction = "valid" // body was valid JSON
ExtractionCleaned Extraction = "cleaned" // body could be made into JSON with some cleaning
ExtractionIgnored Extraction = "ignored" // body couldn't be made into JSON and was ignored
)
// WebhookCalledEvent events are created when a webhook is called. The event contains
// the URL and the status of the response, as well as a full dump of the
// request and response.
//
// {
// "type": "webhook_called",
// "created_on": "2006-01-02T15:04:05Z",
// "url": "http://localhost:49998/?cmd=success",
// "status": "success",
// "status_code": 200,
// "elapsed_ms": 123,
// "retries": 0,
// "request": "GET /?format=json HTTP/1.1",
// "response": "HTTP/1.1 200 OK\r\n\r\n{\"ip\":\"190.154.48.130\"}",
// "extraction": "valid"
// }
//
// @event webhook_called
type WebhookCalledEvent struct {
BaseEvent
*flows.HTTPTrace
Resthook string `json:"resthook,omitempty"`
Extraction Extraction `json:"extraction"`
}
// NewWebhookCalled returns a new webhook called event
func NewWebhookCalled(call *flows.WebhookCall, status flows.CallStatus, resthook string) *WebhookCalledEvent {
extraction := ExtractionNone
if len(call.ResponseBody) > 0 {
if len(call.ResponseJSON) > 0 {
if call.ResponseCleaned {
extraction = ExtractionCleaned
} else {
extraction = ExtractionValid
}
} else {
extraction = ExtractionIgnored
}
}
return &WebhookCalledEvent{
BaseEvent: NewBaseEvent(TypeWebhookCalled),
HTTPTrace: flows.NewHTTPTrace(call.Trace, status),
Resthook: resthook,
Extraction: extraction,
}
}