-
Notifications
You must be signed in to change notification settings - Fork 2
/
AlexaSkill.js
executable file
·196 lines (174 loc) · 6.75 KB
/
AlexaSkill.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
'use strict';
function AlexaSkill(appId) {
this._appId = appId;
}
AlexaSkill.speechOutputType = {
PLAIN_TEXT: 'PlainText',
SSML: 'SSML'
}
//event.request.type triggers the below methods.
AlexaSkill.prototype.requestHandlers = {
LaunchRequest: function (event, context, response) {
this.eventHandlers.onLaunch.call(this, event.request, event.session, response);
},
IntentRequest: function (event, context, response) {
this.eventHandlers.onIntent.call(this, event.request, event.session, response);
},
SessionEndedRequest: function (event, context) {
this.eventHandlers.onSessionEnded(event.request, event.session);
context.succeed();
}
};
//Override any of the eventHandlers as needed.
//Called by the different requestHandlers.
AlexaSkill.prototype.eventHandlers = {
//Called when the session starts.
//Subclasses could have overriden this function to open any necessary resources.
onSessionStarted: function (sessionStartedRequest, session) {
},
//Called when the user invokes the skill without specifying what they want.
//Request type LaunchRequest triggers this method.
//The subclass must override this function and provide feedback to the user.
onLaunch: function (launchRequest, session, response) {
throw "onLaunch should be overriden by subclass";
},
//Called request type of IntentRequest is sent through.
onIntent: function (intentRequest, session, response) {
var intent = intentRequest.intent;
var intentName = intentRequest.intent.name;
var intentHandler = this.intentHandlers[intentName];
//response.ask('before dispatching to intent type');
//Supported Intent Types Are:
//GroceryListIntent
//AMAZON.HelpIntent
if (intentHandler) {
console.log('dispatch intent = ' + intentName);
intentHandler.call(this, intent, session, response);
} else {
throw 'Unsupported intent = ' + intentName;
}
},
//Called when the user ends the session.
//Subclasses could have overriden this function to close any open resources.
onSessionEnded: function (sessionEndedRequest, session) {
}
};
//Subclasses should override the intentHandlers with the functions to handle specific intents.
AlexaSkill.prototype.intentHandlers = {};
//Execute is called on bootstrap.
AlexaSkill.prototype.execute = function (event, context) {
try {
console.log("session applicationId: " + event.session.application.applicationId);
// Validate that this request originated from authorized source.
if (this._appId && event.session.application.applicationId !== this._appId) {
console.log("The applicationIds don't match : " + event.session.application.applicationId + " and "
+ this._appId);
throw "Invalid applicationId";
}
//check for attributes and set to empty {} if none exist.
if (!event.session.attributes) {
event.session.attributes = {};
}
if (event.session.new) {
//Open any necessary resources.
this.eventHandlers.onSessionStarted(event.request, event.session);
}
//Route the request to the proper handler which may have been overriden.
var requestHandler = this.requestHandlers[event.request.type];
requestHandler.call(this, event, context, new Response(context, event.session));
} catch (error) {
//This error will trigger in event object doesnt have expected properties or if Alexa
//cannot call the requestHandler.
console.log("Unexpected exception " + error);
context.fail(error);
}
};
//Constructor for AlexaSkill responses.
var Response = function (context, session) {
this._context = context;
this._session = session;
};
//Create speech object that tells Alexa what to say.
function createSpeechObject(optionsParam) {
if (optionsParam && optionsParam.type === 'SSML') {
return {
type: optionsParam.type,
ssml: optionsParam.speech
};
} else {
return {
type: optionsParam.type || 'PlainText',
text: optionsParam.speech || optionsParam
}
}
}
//Build the reponse object sent to Alexa.
Response.prototype = (function () {
var buildSpeechletResponse = function (options) {
var alexaResponse = {
outputSpeech: createSpeechObject(options.output),
shouldEndSession: options.shouldEndSession
};
if (options.reprompt) {
alexaResponse.reprompt = {
outputSpeech: createSpeechObject(options.reprompt)
};
}
if (options.cardTitle && options.cardContent) {
alexaResponse.card = {
type: "Simple",
title: options.cardTitle,
content: options.cardContent
};
}
var returnResult = {
version: '1.0',
response: alexaResponse
};
if (options.session && options.session.attributes) {
returnResult.sessionAttributes = options.session.attributes;
}
return returnResult;
};
//Setting methods available on response prototype
//Are these expected by Alexa?
return {
tell: function (speechOutput) {
this._context.succeed(buildSpeechletResponse({
session: this._session,
output: speechOutput,
shouldEndSession: true
}));
},
tellWithCard: function (speechOutput, cardTitle, cardContent) {
//tellWithCard is for visuals using Amazon Echo App.
this._context.succeed(buildSpeechletResponse({
session: this._session,
output: speechOutput,
cardTitle: cardTitle,
cardContent: cardContent,
shouldEndSession: true
}));
},
ask: function (speechOutput, repromptSpeech) {
this._context.succeed(buildSpeechletResponse({
session: this._session,
output: speechOutput,
reprompt: repromptSpeech,
shouldEndSession: false
}));
},
askWithCard: function (speechOutput, repromptSpeech, cardTitle, cardContent) {
//askWithCard is for visuals using Amazon Echo App.
this._context.succeed(buildSpeechletResponse({
session: this._session,
output: speechOutput,
reprompt: repromptSpeech,
cardTitle: cardTitle,
cardContent: cardContent,
shouldEndSession: false
}));
}
};
})();
module.exports = AlexaSkill;