-
Notifications
You must be signed in to change notification settings - Fork 20
/
webhook_called.go
67 lines (58 loc) · 2.22 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
package events
import (
"time"
"github.com/nyaruka/goflow/flows"
"github.com/nyaruka/goflow/utils"
)
func init() {
registerType(TypeWebhookCalled, func() flows.Event { return &WebhookCalledEvent{} })
}
// TypeWebhookCalled is the type for our webhook events
const TypeWebhookCalled string = "webhook_called"
// trim request and response traces to 10K chars to avoid bloating serialized sessions
const trimTracesTo = 10000
// 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,
// "request": "GET /?format=json HTTP/1.1",
// "response": "HTTP/1.1 200 OK\r\n\r\n{\"ip\":\"190.154.48.130\"}"
// }
//
// @event webhook_called
type WebhookCalledEvent struct {
baseEvent
URL string `json:"url" validate:"required"`
Status flows.CallStatus `json:"status" validate:"required"`
Request string `json:"request" validate:"required"`
Response string `json:"response"`
ElapsedMS int `json:"elapsed_ms"`
Resthook string `json:"resthook,omitempty"`
StatusCode int `json:"status_code,omitempty"`
BodyIgnored bool `json:"body_ignored,omitempty"`
}
// NewWebhookCalled returns a new webhook called event
func NewWebhookCalled(call *flows.WebhookCall, status flows.CallStatus, resthook string) *WebhookCalledEvent {
statusCode := 0
if call.Response != nil {
statusCode = call.Response.StatusCode
}
return &WebhookCalledEvent{
baseEvent: newBaseEvent(TypeWebhookCalled),
URL: call.Request.URL.String(),
Status: status,
Request: utils.TruncateEllipsis(string(call.RequestTrace), trimTracesTo),
Response: utils.TruncateEllipsis(string(call.ResponseTraceUTF8("...")), trimTracesTo),
ElapsedMS: int((call.EndTime.Sub(call.StartTime)) / time.Millisecond),
Resthook: resthook,
StatusCode: statusCode,
BodyIgnored: len(call.ResponseBody) > 0 && !call.ValidJSON,
}
}