-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
32 lines (28 loc) · 1.1 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
'use strict';
var Alexa = require('alexa-sdk');
var constants = require('./constants');
var stateHandlers = require('./stateHandlers');
var audioEventHandlers = require('./audioEventHandlers');
exports.handler = function(event, context, callback){
var alexa = Alexa.handler(event, context);
alexa.appId = constants.appId;
alexa.dynamoDBTableName = constants.dynamoDBTableName;
alexa.registerHandlers(
stateHandlers.startModeIntentHandlers,
stateHandlers.playModeIntentHandlers,
stateHandlers.remoteControllerHandlers,
stateHandlers.resumeDecisionModeIntentHandlers,
audioEventHandlers
);
if (constants.debug) {
console.log("\n" + "******************* REQUEST **********************");
console.log("\n" + JSON.stringify(event, null, 2));
}
var audioPlayerInterface = ((((event.context || {}).System || {}).device || {}).supportedInterfaces || {}).AudioPlayer;
if (audioPlayerInterface === undefined) {
alexa.emit(':tell', 'Sorry, this skill is not supported on this device');
}
else {
alexa.execute();
}
};