-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
67 lines (53 loc) · 1.66 KB
/
index.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
'use strict';
const express = require('express');
const bodyParser = require('body-parser');
const handleMessage = require('./functions.js').handleMessage;
const sendTextMessage = require('./functions.js').sendTextMessage;
const app = express();
app.set('port', (process.env.PORT || 5000));
app.use(bodyParser.urlencoded({extended: false}));
app.use(bodyParser.json());
app.get('/', function (req, res) {
res.send('Hello world, I am DorisBot');
});
// Facebook verification
app.get('/webhook/', function (req, res) {
if (req.query['hub.verify_token'] === process.env.FB_VERIFY_TOKEN) {
res.send(req.query['hub.challenge']);
}
res.send('Error, wrong token');
});
app.post('/webhook', function (req, res) {
var data = req.body;
// Make sure this is a page subscription
if (data.object === 'page') {
// Iterate over each entry
data.entry.forEach(function(entry) {
// Iterate over each messaging event
entry.messaging.forEach(function(event) {
if (event.message) {
receivedMessage(event);
} else {
console.log('Webhook received unknown event: ', event);
}
});
});
res.sendStatus(200);
}
});
function receivedMessage(event) {
var senderID = event.sender.id;
var message = event.message;
var nlp = message.nlp.entities;
var messageText = message.text;
var messageAttachments = message.attachments;
if (messageText) {
handleMessage(senderID, messageText, nlp);
} else if (messageAttachments) {
sendTextMessage(senderID, 'Message with attachment received');
}
}
// Start server
app.listen(app.get('port'), function() {
console.log('running on port', app.get('port'));
});