-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
351 lines (282 loc) · 12.4 KB
/
app.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
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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
var restify = require('restify');
var builder = require('botbuilder');
//add appInsights
// import appInsights = require("applicationinsights");
// appInsights.setup("<instrumentation_key>").start();
//Connect to SQL Server
var Request = require('tedious').Request;
var TYPES = require('tedious').TYPES;
var Connection = require('tedious').Connection;
//initialize mapping data array
//arrayIsvTE is sourced from SQL Server
var arrayIsvTE = new Array();
// arrayIsvTE.push("First item on mapping array");
//error logging array
var arrayErr = new Array();
//set up SQL server connection using Application Environment Variables
var config = {
userName: process.env.SQLuserName,
password: process.env.SQLpassword,
server: process.env.SQLserver,
// If you are on Microsoft Azure, you need this:
options: {encrypt: true, database: process.env.SQLdatabase}
};
var connection = new Connection(config);
connection.on('connect', function(err) {
// If no error, then good to proceed.
if (err) {
// console.log(err);
arrayErr.push(err);
} else {
// console.log("Connected to " + this.config.server + " " + this.config.options.database);
arrayErr.push("Connected to " + this.config.server);
loadMappingArray();
};
});
//function to execute SQL query
function loadMappingArray() {
request = new Request("SELECT Title, AssignedTE, AssignedBE FROM dbo.PartnerIsvs", function(err) {
if (err) {
console.log(err);
arrayErr.push(err);
}
else {
arrayErr.push("SQL request succeeded");
}
});
//unpack data from SQL query
request.on('row', function(columns) {
columns.forEach(function(column) {
if (column.value === null) {
arrayIsvTE.push('');
} else {
arrayIsvTE.push(column.value);
}
});
});
connection.execSql(request);
};
// Create bot and add dialogs
// setTimeout(function() {
var bot = new builder.BotConnectorBot({ appId: process.env.AppID, appSecret: process.env.AppSecret });
// },5000);
// Connect to LUIS application
var dialog = new builder.LuisDialog(process.env.LUISServiceURL);
bot.add('/', dialog);
//---------------------------------------------------------------------------------------------------
//handle the case where there's a request to reload data
dialog.on('Fetch', function (session, args, next) {
session.send( "Welcome to K9 on Microsoft Bot Framework. I can tell you which TE or BE manages any GISV partner." );
// session.send( "Local Partner data is live = " + (partnerISV.length > 0));
//list all errors
arrayErr.forEach(function(item) {
session.send( "K9 Bot = " + item);
});
session.send( "K9 data is live = " + (arrayIsvTE.length > 0));
// session.endDialog("Session Ended");
});
//---------------------------------------------------------------------------------------------------
//handle the case where there's no recognized intent
dialog.on('None', function (session, args, next) {
session.send( "Welcome to K9 on Microsoft Bot Framework. I can tell you which TE or BE manages any GISV partner." );
});
//---------------------------------------------------------------------------------------------------
//handle the case where intent is happy
dialog.on('Happy', function (session, args, next) {
session.send( "Hope you enjoyed this as much as i did:-) " );
});
//---------------------------------------------------------------------------------------------------
//handle the case where intent is sad
dialog.on('Sad', function (session, args, next) {
session.send( "Life? Don't talk to me about life. Did you know I've got this terrible pain in all the diodes down my left side? " );
});
//---------------------------------------------------------------------------------------------------
//handle the case where intent is abuse
dialog.on('Abuse', function (session, args, next) {
session.send( "Hey, don't be mean to me:-) " );
});
//---------------------------------------------------------------------------------------------------
//handle the case where intent is help
dialog.on('Help', function (session, args, next) {
session.send( "Ask me Who is the TE for Netflix?" );
session.send( "... or Who is the TE for Amazon?" );
session.send( "... or Who are the TE and BE for Facebook?" );
session.send( "... or Which accounts does Ian manage?" );
// session.endDialog("Session Ended");
});
//---------------------------------------------------------------------------------------------------
//handle the Find Technical Evangelist Find_TE intent
dialog.on('Find_TE', function (session, args, next) {
// console.log(args.entities);
// use bot builder EntityRecognizer to parse out the LUIS entities
var account = builder.EntityRecognizer.findEntity(args.entities, 'Account');
// assemble the query using identified entities
var searchAccount = "";
//create regex version of the searchAccount
if (!account) {
session.send("Sorry, I couldn't make out the name of the account you are looking for.");
} else {
(searchAccount = new RegExp(account.entity, 'i'))
// Next line to assist with debugging
// session.send( "Looking for the TE for " + searchAccount);
//search mapping array for searchAccount
var x = 0;
var found = false;
// Next line to assist with debugging
// // console.log("Looking for account");
while ( x < arrayIsvTE.length) {
if (arrayIsvTE[x].match(searchAccount)) {
//post results to chat
if(arrayIsvTE[x+1]) {
session.send( "The TE for " + arrayIsvTE[x] + " is " + arrayIsvTE[x+1]);
found = true;
}
};
x++;
x++;
x++;
};
if (!found) {
session.send( "Sorry, I couldn't find the TE for " + account.entity)
};
// next line to assist with debug
// session.endDialog("Session Ended");
}});
//---------------------------------------------------------------------------------------------------
//handle the Find Business Evangelist Find_BE intent
dialog.on('Find_BE', function (session, args, next) {
// console.log(args.entities);
// use bot builder EntityRecognizer to parse out the LUIS entities
var account = builder.EntityRecognizer.findEntity(args.entities, 'Account');
// assemble the query using identified entities
var searchAccount = "";
//create regex version of the searchAccount
if (!account) {
session.send("Sorry, I couldn't make out the name of the account you are looking for.");
} else {
(searchAccount = new RegExp(account.entity, 'i'))
// Next line to assist with debugging
// session.send( "Looking for the TE for " + searchAccount);
//search mapping array for searchAccount
var x = 0;
var found = false;
// Next line to assist with debugging
// // console.log("Looking for account");
while ( x < arrayIsvTE.length) {
if (arrayIsvTE[x].match(searchAccount)) {
//post results to chat
if(arrayIsvTE[x+2]) {
session.send( "The BE for " + arrayIsvTE[x] + " is " + arrayIsvTE[x+2]);
found = true;
}
};
x++;
x++;
x++;
};
if (!found) {
session.send( "Sorry, I couldn't find the BE for " + account.entity)
};
// next line to assist with debug
// session.endDialog("Session Ended");
}});
//---------------------------------------------------------------------------------------------------
//handle the Find Technical and Business Evangelist Find_BE intent
dialog.on('Find_Both', function (session, args, next) {
// console.log(args.entities);
// use bot builder EntityRecognizer to parse out the LUIS entities
var account = builder.EntityRecognizer.findEntity(args.entities, 'Account');
// assemble the query using identified entities
var searchAccount = "";
//create regex version of the searchAccount
if (!account) {
session.send("Sorry, I couldn't make out the name of the account you are looking for.");
} else {
(searchAccount = new RegExp(account.entity, 'i'))
// Next line to assist with debugging
// session.send( "Looking for the TE for " + searchAccount);
//search mapping array for searchAccount
var x = 0;
var found = false;
// Next line to assist with debugging
// // console.log("Looking for account");
while ( x < arrayIsvTE.length) {
if (arrayIsvTE[x].match(searchAccount)) {
//post results to chat
if(arrayIsvTE[x+1]) {
session.send( "The TE for " + arrayIsvTE[x] + " is " + arrayIsvTE[x+1]);
found = true;
}
if(arrayIsvTE[x+2]) {
session.send( "The BE for " + arrayIsvTE[x] + " is " + arrayIsvTE[x+2]);
found = true;
}
};
x++;
x++;
x++;
};
if (!found) {
session.send( "Sorry, I couldn't find the Evangelists for " + account.entity)
};
// next line to assist with debug
// session.endDialog("Session Ended");
}});
//---------------------------------------------------------------------------------------------------
//handle the case where intent is List Accounts for BE or TE
dialog.on('Find_Accounts', function (session, args, next) {
// session.send( "Hey, I'm still learning how to do that. Check back soon!" );
// use bot builder EntityRecognizer to parse out the LUIS entities
var evangelist = builder.EntityRecognizer.findEntity(args.entities, 'Evangelist');
// session.send( "Recognized Evangelist " + evangelist.entity);
// assemble the query using identified entities
var searchEvangelist = "";
//create regex version of the searchEvangelist
if (!evangelist) {
session.send("Sorry, I couldn't make out the name of the evangelist you are looking for.");
} else {
(searchEvangelist = new RegExp(evangelist.entity, 'i'))
// Next line to assist with debugging
// session.send( "Looking for the accounts for " + searchEvangelist);
//search mapping array for searchAccount
var x = 0;
var found = false;
// Next line to assist with debugging
// // console.log("Looking for account");
while ( x < arrayIsvTE.length) {
if (arrayIsvTE[x+1].match(searchEvangelist)) {
//found TE match
if(arrayIsvTE[x]) {
session.send( arrayIsvTE[x+1] + " is TE for " + arrayIsvTE[x]);
found = true;
}
};
if (arrayIsvTE[x+2].match(searchEvangelist)) {
//found BE match
if(arrayIsvTE[x]) {
session.send( arrayIsvTE[x+2] + " is BE for " + arrayIsvTE[x]);
found = true;
}
};
x++
x++;
x++;
};
if (!found) {
session.send( "Sorry, I couldn't find the accounts for " + evangelist.entity)
};
// next line to assist with debug
// session.endDialog("Session Ended");
}
});
//---------------------------------------------------------------------------------------------------
// Setup Restify Server
var server = restify.createServer();
server.get('/', function (req, res) {
res.send('Running');
});
// server.post('/api/messages', bot.verifyBotFramework(), bot.listen());
server.post('/api/messages', bot.listen());
server.listen(process.env.port || 80, function () {
console.log('%s listening to %s', server.name, server.url);
});