-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfunctions.js
137 lines (118 loc) · 4.33 KB
/
functions.js
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
const messagePairs = require('./messagePairs.json');
const levenshtein = require('fast-levenshtein');
const request = require('request');
// Returns single entity
function returnEntity(entities, name) {
if (entities[name]) {
return entities[name][0];
} else {
return null;
}
}
// Handles message based on entity and text messages
function handleMessage(recipientId, message, entities) {
const greeting = returnEntity(entities, 'greeting');
const goodbye = returnEntity(entities, 'goodbye');
const question = returnEntity(entities, 'question');
const hobbies = returnEntity(entities, 'hobbies');
const currentlydoing = returnEntity(entities, 'currently_doing');
const planFoodDate = returnEntity(entities, 'schedule_food_date');
const planHangout = returnEntity(entities, 'schedule_hangout');
// Checks if each entity exists and entity confidence > 0.8
if (greeting && greeting.confidence > 0.8) {
//Response choices
const responses = ['hi!!', 'hey! hows it going?', 'whats up'];
// Randomize response
let index = Math.floor(Math.random() * (responses.length + 1));
sendTextMessage(recipientId, responses[index]);
}
else if (goodbye && goodbye.confidence > 0.8) {
const responses = ['bye!!', 'okay :( byee', 'see you later!', 'talk to ya soon', 'see ya soon'];
let index = Math.floor(Math.random() * (responses.length + 1));
sendTextMessage(recipientId, responses[index]);
}
else if (question && question.confidence > 0.8 && hobbies && hobbies.confidence > 0.8) {
const responses = ['I like hiking a lot', 'hmm roadtripping!! and going on food adventures', 'biking down steep hills', 'I like doing artsy things like arts & crafts and DIY stuff'];
let index = Math.floor(Math.random() * (responses.length + 1));
sendTextMessage(recipientId, responses[index]);
}
else if (currentlydoing && currentlydoing.confidence > 0.8) {
if (currentlydoing.value === 'current_thought') {
sendTextMessage(recipientId, 'how to finish my code');
}
if (currentlydoing.value === 'current_activity'){
sendTextMessage(recipientId, 'coding lol');
}
}
else if (planFoodDate && planFoodDate.confidence > 0.8) {
const responses = ['okok', 'suree, when?', 'kk where do you wanna eat', 'YES!! where?'];
let index = Math.floor(Math.random() * (responses.length + 1));
sendTextMessage(recipientId, responses[index]);
}
else if (planHangout && planHangout.confidence > 0.8) {
const responses = ['okok', 'suree, when?', 'kk where do you wanna eat', 'YES!! where?'];
let index = Math.floor(Math.random() * (responses.length + 1));
sendTextMessage(recipientId, responses[index]);
}
else {
// Apply text message history to check similarity of input
let result = checkSimilarity(message);
sendTextMessage(recipientId, result);
}
}
// Format reply message
function sendTextMessage(recipientId, messageText) {
var messageData = {
recipient: {
id: recipientId
},
message: {
text: messageText
}
};
callSendAPI(messageData);
}
// Check similarity of two strings by using levenshtein distance
function checkSimilarity(input) {
const keys = Object.keys(messagePairs);
let lowestLvl = null;
let lowestLvlKey = null;
for (var k = 0; k < keys.length; k++) {
let distance = levenshtein.get(keys[k], input);
let level = distance / Math.max(keys[k].length, input.length);
if (level <= 0.20) {
return messagePairs[keys[k]];
}
if (lowestLvl === null || lowestLvl > level) {
lowestLvl = level;
lowestLvlKey = keys[k];
}
}
if (lowestLvl > 0.25) {
return 'not sure what you mean o.o';
}
return messagePairs[lowestLvlKey];
}
function callSendAPI(messageData) {
request({
uri: 'https://graph.facebook.com/v2.6/me/messages',
qs: { access_token: process.env.FB_PAGE_ACCESS_TOKEN },
method: 'POST',
json: messageData
}, function (error, response, body) {
if (!error && response.statusCode == 200) {
var recipientId = body.recipient_id;
var messageId = body.message_id;
console.log('Successfully sent generic message with id %s to recipient %s',
messageId, recipientId);
} else {
console.error('Unable to send message.');
console.error(response);
console.error(error);
}
});
}
module.exports = {
handleMessage,
sendTextMessage
};