-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice_http.go
78 lines (63 loc) · 1.87 KB
/
service_http.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
package ironhook
import (
"encoding/json"
"fmt"
"io"
"log"
"net/http"
"net/http/httptest"
"strings"
)
// Aggregates the http webhook functionality into a test Server
// for testing and mocks.
func mockHttpWebhooksServerForTests() *httptest.Server {
return httptest.NewServer(http.HandlerFunc(webhooksHandler))
}
// A primitive router for testing and mocks.
func webhooksHandler(w http.ResponseWriter, r *http.Request) {
if strings.Contains(r.URL.Path, "/verification") {
VerificationHandler(w, r)
} else if strings.Contains(r.URL.Path, "/notification") {
mockNotificationHandler(w, r)
} else {
log.Print("Received an unrecognised request: ", r.URL.Path)
w.WriteHeader(http.StatusBadRequest)
fmt.Fprint(w, "")
return
}
}
// Handles incoming Verification requests.
// To be used from the perspective of the webhook receiver.
func VerificationHandler(w http.ResponseWriter, r *http.Request) {
q_id, ok := r.URL.Query()["id"]
if !ok || len(q_id[0]) < 1 {
fmt.Fprintf(w, "Url Param 'id' is missing")
return
}
r_uuid := q_id[0]
fmt.Fprint(w, r_uuid)
}
// Notification handler for testing and mocks.
func mockNotificationHandler(w http.ResponseWriter, r *http.Request) {
// Received a notification
// -----------------------
body, err := io.ReadAll(r.Body)
if err != nil {
w.WriteHeader(http.StatusBadRequest)
fmt.Fprintf(w, "Didnt understand your, sorry")
return
}
var notif WebhookNotification
err = json.Unmarshal(body, ¬if)
if err != nil {
w.WriteHeader(http.StatusBadRequest)
fmt.Fprint(w, "Didnt understand your, sorry")
return
}
// Successfully parsed a webhook notification
// ------------------------------------------
log.Println("Received a notification with UUID: ", notif.EventUUID)
log.Println(notif.EventUUID, " with topic: ", notif.Topic)
log.Println(notif.EventUUID, " with body: ", notif.Body)
fmt.Fprint(w, "Awesome, thanks")
}