-
Notifications
You must be signed in to change notification settings - Fork 2
/
webhooks.go
133 lines (107 loc) · 3.06 KB
/
webhooks.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
package main
import (
"bytes"
"encoding/json"
"fmt"
"net/http"
"strconv"
"github.com/gin-gonic/gin"
)
func WebhookHandler(c *gin.Context) {
var webhookEvent WebhookEvent
raw, err := c.GetRawData()
if err != nil {
fmt.Println(err)
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
return
}
var buf bytes.Buffer
if err := json.Compact(&buf, raw); err != nil {
fmt.Println(err)
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
return
}
data := buf.Bytes()
if err := json.Unmarshal(data, &webhookEvent); err != nil {
fmt.Println(err)
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
return
}
switch webhookEvent.Event {
case "message_created":
var message MessageCreatedEvent
if err := json.Unmarshal(data, &message); err != nil {
fmt.Println(err)
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
return
}
fmt.Println("message received", message.Content)
if err := MessageCreatedHandler(message, c.Query("furl"), c.Query("fbear")); err != nil {
fmt.Println(err)
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
}
case "conversation_status_changed":
var conversation ConversationStatusChangedEvent
if err := json.Unmarshal(data, &conversation); err != nil {
fmt.Println(err)
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
return
}
fmt.Println("conversation status changed", conversation.Status)
if err := ConversationStatusChangedHandler(conversation, c.Query("furl"), c.Query("fbear")); err != nil {
fmt.Println(err)
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
}
}
c.JSON(http.StatusOK, gin.H{"status": "ok"})
}
func SendTestHandler(c *gin.Context) {
accountID, err := strconv.Atoi(c.Query("account_id"))
if err != nil {
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
return
}
conversationID, err := strconv.Atoi(c.Query("conversation_id"))
if err != nil {
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
return
}
accessToken := c.Query("access_token")
var sendMessage MessageCreatedEvent = MessageCreatedEvent{
Content: "Hello, test message sent",
MessageType: "outgoing",
ContentType: "text",
Private: false,
Account: MC_Account{
ID: accountID,
},
Conversation: MC_Conversation{
ID: conversationID,
},
}
resp, err := SendTextMessage(sendMessage, accessToken)
if err != nil {
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
return
}
if resp.StatusCode != http.StatusOK {
c.JSON(http.StatusBadRequest, gin.H{"error": resp.Status})
return
}
c.JSON(http.StatusOK, gin.H{"status": "ok"})
}
func AssingConversationHandler(c *gin.Context) {
accountID := "1"
conversationID := "16"
assigneeID := 3
resp, err := AssignConversationToAnAgent(accountID, conversationID, assigneeID)
if err != nil {
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
return
}
if resp.StatusCode != http.StatusOK {
c.JSON(http.StatusBadRequest, gin.H{"error": resp.Status})
return
}
c.JSON(http.StatusOK, gin.H{"status": "ok"})
}