-
Notifications
You must be signed in to change notification settings - Fork 20
/
webhook_called.go
58 lines (51 loc) · 1.88 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
package events
import (
"time"
"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"
// 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"`
Resthook string `json:"resthook,omitempty"`
Status flows.WebhookStatus `json:"status" validate:"required"`
StatusCode int `json:"status_code,omitempty"`
ElapsedMS int `json:"elapsed_ms"`
Request string `json:"request" validate:"required"`
Response string `json:"response,omitempty"`
BodyIgnored bool `json:"body_ignored,omitempty"`
}
// NewWebhookCalledEvent returns a new webhook called event
func NewWebhookCalledEvent(webhook *flows.WebhookCall) *WebhookCalledEvent {
return &WebhookCalledEvent{
BaseEvent: NewBaseEvent(TypeWebhookCalled),
URL: webhook.URL(),
Resthook: webhook.Resthook(),
Status: webhook.Status(),
StatusCode: webhook.StatusCode(),
ElapsedMS: int(webhook.TimeTaken() / time.Millisecond),
Request: webhook.Request(),
Response: webhook.Response(),
BodyIgnored: webhook.BodyIgnored(),
}
}