-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalexa.js
62 lines (44 loc) · 1.35 KB
/
alexa.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
"use strict";
module.exports = (req, res) => {
let session = req.body.session,
intent,
slots;
session.attributes = session.attributes || {};
if (req.body.request.intent) {
intent = req.body.request.intent.name;
slots = req.body.request.intent.slots;
}
let say = (text, shouldEndSession, card) => {
let outputSpeech = {};
if (text.indexOf("/>") > 0 || text.indexOf("</")) {
outputSpeech.type = 'SSML';
outputSpeech.ssml = "<speak>" + text + "</speak>";
} else {
outputSpeech.type = 'PlainText';
outputSpeech.text = text;
}
let resp = {
version: req.version,
sessionAttributes: session.attributes,
response: {
outputSpeech: outputSpeech,
shouldEndSession: shouldEndSession,
}
};
if (typeof card != "undefined") {
resp.response.card = card;
}
console.log("RESPONSE:\n" + JSON.stringify(resp) + "\n");
res.json(resp);
};
return {
type: req.body.request.type,
intent: intent,
slots: slots,
session: session,
response: {
say: (text, card) => say(text, true, card),
ask: text => say(text, false)
}
};
};