-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
289 lines (226 loc) Β· 6.54 KB
/
main.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
package main
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"log"
"net/http"
"os"
"strings"
"machaao-go/extras"
"github.com/dgrijalva/jwt-go"
witai "github.com/wit-ai/wit-go"
)
//Get MachaaoApiToken from https://portal.messengerx.io
var machaaoAPIToken string = os.Getenv("MachaaoApiToken")
//Get WitApiToken from https://wit.ai
var witApiToken string = os.Getenv("WitApiToken")
func main() {
port := getPort()
if witApiToken == "" {
log.Fatalln("Wit API Token not initialised.")
}
if machaaoAPIToken == "" {
log.Fatalln("Machaao API Token not initialised.")
}
//API handler function
http.HandleFunc("/machaao_hook", messageHandler)
//Go http server
log.Println("[-] Listening on...", port)
if err := http.ListenAndServe(port, nil); err != nil {
log.Fatal(err)
}
}
//Set PORT as env var or leave it to use 4747
func getPort() string {
port := os.Getenv("PORT")
if port == "" {
port = "4747"
log.Println("[-] No PORT environment variable detected. Setting to ", port)
}
return ":" + port
}
//Webhook messege handler
func messageHandler(w http.ResponseWriter, r *http.Request) {
if r.Method != "POST" {
http.Error(w, "Method is not supported.", http.StatusNotFound)
return
}
//This function reads the request Body and saves to body as byte.
body, err := ioutil.ReadAll(r.Body)
if err != nil {
log.Printf("Error reading body: %v", err)
return
}
//converts bytes to string
var bodyData string = string(body)
//incoming JWT Token
var tokenString string = bodyData[8:(len(bodyData) - 2)]
claims := jwt.MapClaims{}
token, err := jwt.ParseWithClaims(tokenString, claims, func(token *jwt.Token) (interface{}, error) {
return []byte(machaaoAPIToken), nil
})
_ = token
if err != nil {
fmt.Println(err)
}
//captures message_data object from the JWT body.
messageData := claims["sub"].(map[string]interface{})["messaging"].([]interface{})[0].(map[string]interface{})["message_data"]
messageText := messageData.(map[string]interface{})["text"].(string)
log.Println(messageData)
log.Println(messageText)
log.Println(r.Header["User_id"])
if messageText == "hi" {
quickReply(r.Header["User_id"], messageText, machaaoAPIToken)
} else {
simpleReply(r.Header["User_id"], messageText, machaaoAPIToken)
}
}
func getJokeTagUsingWitAI(message string) string {
client := witai.NewClient(witApiToken)
// Use client.SetHTTPClient() to set custom http.Client
msg, _ := client.Parse(&witai.MessageRequest{
Query: message,
})
return msg.Entities["local_search_query"].([]interface{})[0].(map[string]interface{})["value"].(string)
}
func simpleReply(userID []string, message string, apiToken string) {
if strings.ToLower(message) == "π Random Jokes" {
message = extras.GetJoke("%20")
} else if message == "π Random Memes" {
title, url, postlink := extras.GetMemes()
_ = title
body := map[string]interface{}{
"users": userID,
"message": map[string]interface{}{
"attachment": map[string]interface{}{
"type": "template",
"payload": map[string]interface{}{
"template_type": "generic",
"elements": []map[string]interface{}{
{
"image_url": url,
"buttons": []map[string]string{
{
"type": "web_url",
"url": postlink,
"title": "βΉοΈ Source",
},
},
},
},
},
},
"quick_replies": []map[string]string{
{
"content_type": "text",
"payload": "π Random Jokes",
"title": "π Random Jokes",
},
{
"content_type": "text",
"payload": "π Random Memes",
"title": "π Random Memes",
},
},
},
}
log.Println("Sending Message to user")
var urlMachaao string = "https://ganglia-dev.machaao.com/v1/messages/send"
jsonValue, _ := json.Marshal(body)
// fmt.Println(jsonValue)
req, err := http.NewRequest("POST", urlMachaao, bytes.NewBuffer(jsonValue))
req.Header.Set("Content-Type", "application/json")
req.Header.Set("api_token", apiToken)
fmt.Println(req)
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("response Status:", resp.Status)
bodyf, _ := ioutil.ReadAll(resp.Body)
fmt.Println("response Body:", string(bodyf))
return
} else {
var tag string = getJokeTagUsingWitAI(message)
message = extras.GetJoke(tag)
if message[:9] == "Error 106" {
message = "Sorry, no jokes found"
}
}
log.Println("Sending Message to user")
var url string = "https://ganglia-dev.machaao.com/v1/messages/send"
// var url string = "http://127.0.0.1:5000/upload"
body := map[string]interface{}{
"users": userID,
"message": map[string]interface{}{
"text": message,
"quick_replies": []map[string]string{
{
"content_type": "text",
"payload": "π Random Jokes",
"title": "π Random Jokes",
},
{
"content_type": "text",
"payload": "π Random Memes",
"title": "π Random Memes",
},
},
},
}
jsonValue, _ := json.Marshal(body)
// fmt.Println(jsonValue)
req, err := http.NewRequest("POST", url, bytes.NewBuffer(jsonValue))
req.Header.Set("Content-Type", "application/json")
req.Header.Set("api_token", apiToken)
fmt.Println(req)
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("response Status:", resp.Status)
bodyf, _ := ioutil.ReadAll(resp.Body)
fmt.Println("response Body:", string(bodyf))
}
func quickReply(userID []string, message string, apiToken string) {
log.Println("Sending QR to user")
var url string = "https://ganglia-dev.machaao.com/v1/messages/send"
// var url string = "http://127.0.0.1:5000/upload"
body := map[string]interface{}{
"users": userID,
"message": map[string]interface{}{
"text": "Hello, My name is Witty - Your funny friend ;)",
"quick_replies": []map[string]string{
{
"content_type": "text",
"payload": "π Random Jokes",
"title": "π Random Jokes",
},
{
"content_type": "text",
"payload": "π Random Memes",
"title": "π Random Memes",
},
},
},
}
jsonValue, _ := json.Marshal(body)
// fmt.Println(jsonValue)
req, err := http.NewRequest("POST", url, bytes.NewBuffer(jsonValue))
req.Header.Set("Content-Type", "application/json")
req.Header.Set("api_token", apiToken)
fmt.Println(req)
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
log.Println("response Status:", resp.Status)
}