-
Notifications
You must be signed in to change notification settings - Fork 4
/
skill.js
387 lines (349 loc) · 11.7 KB
/
skill.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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
const Alexa = require('ask-sdk-core');
const i18n = require('i18next');
const languageStrings = require('./languages');
const Spotify = require('./spotify').SpotifyClass;
const Helpers = require('./helpers');
// --- getters ---
const GetCurrentlyPlayingIntentHandler = {
canHandle: Helpers.canHandleIntent('GetCurrentlyPlayingIntent'),
async handle(handlerInput) {
let state = (await Spotify(handlerInput).getMyCurrentPlaybackState()).body;
//TODO handle not playing
if (state.item)
return handlerInput.responseBuilder
.speak(handlerInput.t('GET_CURRENTLY_PLAYING', {
artists: Helpers.escapeContent(state.item.artists.map(a => a.name).join(', ')),
deviceName: Helpers.escapeContent(state.device.name),
itemName: Helpers.escapeContent(state.item.name),
}))
.getResponse();
else
return handlerInput.responseBuilder
.speak(handlerInput.t('NOTHING_PLAYING'))
.getResponse();
}
};
// --- play/pause ---
const PlayIntentHandler = {
canHandle: Helpers.canHandleIntent('PlayIntent'),
async handle(handlerInput) {
try {
await Spotify(handlerInput).play();
return handlerInput.responseBuilder
.speak(handlerInput.t('PLAY_SUCCESS'))
.getResponse();
} catch (e) {
if (e.statusCode === 403 && ['ALREADY_PLAYING', 'UNKNOWN'].includes(e.reason))
return handlerInput.responseBuilder
.speak(handlerInput.t('PLAY_ERROR'))
.getResponse();
else throw e;
}
}
};
const PlayOnDeviceIntentHandler = {
canHandle: Helpers.canHandleIntent('PlayOnDeviceIntent'),
async handle(handlerInput) {
const Fuse = require('fuse.js');
let deviceQuery = handlerInput.requestEnvelope.request.intent.slots.Device.value;
let s = Spotify(handlerInput);
const devices = (await s.getMyDevices()).body.devices;
if (devices.length === 0) {
return handlerInput.responseBuilder
.speak(handlerInput.t('ERR_REASON.NO_ACTIVE_DEVICE'))
.getResponse();
}
const results = (new Fuse(devices, {
keys: ['name'],
threshold: 0.4, //TODO
})).search(deviceQuery);
if (results.length) {
let selectedDevice = results[0].item;
await Spotify(handlerInput).transferMyPlayback({
deviceIds: [selectedDevice.id],
play: true
});
return handlerInput.responseBuilder
.speak(handlerInput.t('PLAYONDEVICE_SUCCESS', {
deviceName: Helpers.escapeContent(selectedDevice.name),
}))
.getResponse();
} else {
return handlerInput.responseBuilder
.speak(handlerInput.t('PLAYONDEVICE_NO_MATCH'))
.reprompt(handlerInput.t('PLAYONDEVICE_NO_MATCH_REPROMPT'))
.getResponse();
}
}
};
const PauseIntentHandler = {
canHandle: Helpers.canHandleIntent('AMAZON.PauseIntent'),
async handle(handlerInput) {
try {
await Spotify(handlerInput).pause();
return handlerInput.responseBuilder
.speak(handlerInput.t('PAUSE_SUCCESS'))
.getResponse();
} catch (e) {
if (e.statusCode === 403 && ['ALREADY_PAUSED', 'UNKNOWN'].includes(e.reason))
return handlerInput.responseBuilder
.speak(handlerInput.t('PAUSE_ERROR'))
.getResponse();
else throw e;
}
}
};
// --- skip ---
const NextSongIntentHandler = {
canHandle: Helpers.canHandleIntent('AMAZON.NextIntent'),
async handle(handlerInput) {
await Spotify(handlerInput).skipToNext();
return handlerInput.responseBuilder
.speak(handlerInput.t('NEXTSONG_SUCCESS'))
.getResponse();
}
};
const PreviousSongIntentHandler = {
canHandle: Helpers.canHandleIntent('AMAZON.PreviousIntent'),
async handle(handlerInput) {
await Spotify(handlerInput).skipToPrevious();
return handlerInput.responseBuilder
.speak(handlerInput.t('PREVIOUSSONG_SUCCESS'))
.getResponse();
}
};
const JumpToContextStartEndIntentHandlerFactory = (toStart) => ({
canHandle: Helpers.canHandleIntent(toStart ? 'JumpToContextStartIntent' : 'JumpToContextEndIntent'),
async handle(handlerInput) {
let state = (await Spotify(handlerInput).getMyCurrentPlaybackState()).body;
// don't crash on private sessions / radio / …
if (!state.context) state.context = {
type: state.context,
};
switch (state.context.type) {
case 'album':
case 'playlist':
{
let id = state.context.uri.split(':').pop();
let position = toStart ? 0 : ((await Spotify(handlerInput)[state.context.type === 'album' ? 'getAlbumTracks' : 'getPlaylistTracks'](id, {
limit: 1 // we only care about the number of tracks
})).body.total - 1);
await Spotify(handlerInput).play({
context_uri: state.context.uri,
offset: {
position,
},
});
return handlerInput.responseBuilder
.speak(handlerInput.t(toStart ?
(state.context.type === 'playlist' ?
"Okay, springe zum Anfang der Playlist." :
"Okay, springe zum Anfang des Albums.") :
(state.context.type === 'playlist' ?
"Okay, springe zum Ende der Playlist." :
"Okay, springe zum Ende des Albums.")
))
.getResponse();
}
default:
{
console.log("Unsupported context type:", state.context.type);
return handlerInput.responseBuilder
.speak(handlerInput.t("Das funktioniert mit deiner aktuellen Wiedergabe nicht."))
.getResponse();
}
}
}
});
// --- setters/toggles ---
const SetVolumeIntentHandler = {
canHandle: Helpers.canHandleIntent('SetVolumeIntent'),
async handle(handlerInput) {
let volume = handlerInput.requestEnvelope.request.intent.slots.Volume.value;
await Spotify(handlerInput).setVolume(volume);
return handlerInput.responseBuilder
.speak(handlerInput.t('SETVOLUME_SUCCESS', {
volume,
}))
.getResponse();
}
};
const ToggleShuffleIntentHandler = {
canHandle: Helpers.canHandleIntent('AMAZON.ShuffleOnIntent', 'AMAZON.ShuffleOffIntent'),
async handle(handlerInput) {
let state = Alexa.getIntentName(handlerInput.requestEnvelope) === 'AMAZON.ShuffleOnIntent';
await Spotify(handlerInput).setShuffle({
state
});
return handlerInput.responseBuilder
.speak(handlerInput.t(state ? 'TOGGLESHUFFLE_ON' : 'TOGGLESHUFFLE_OFF'))
.getResponse();
}
};
// --- misc. ---
const SeekIntentHandler = {
canHandle: Helpers.canHandleIntent('SeekIntent'),
async handle(handlerInput) {
const IsoDuration = require('iso8601-duration');
let newIndex = handlerInput.requestEnvelope.request.intent.slots.Time.value;
let millis = IsoDuration.toSeconds(IsoDuration.parse(newIndex)) * 1000;
await Spotify(handlerInput).seek(millis);
return handlerInput.responseBuilder
.speak(handlerInput.t('SEEK_SUCCESS'))
.getResponse();
}
};
// --- general handlers ---
const LaunchRequestHandler = {
canHandle(handlerInput) {
return Alexa.getRequestType(handlerInput.requestEnvelope) === 'LaunchRequest';
},
handle(handlerInput) {
console.log('LaunchRequest');
try {
Spotify(handlerInput); //throws NoTokenError
return handlerInput.responseBuilder
.speak(handlerInput.t('WELCOME'))
.reprompt(handlerInput.t('WELCOME_REPROMPT'))
.getResponse();
} catch (e) {
if (e.name !== 'NoTokenError') throw e;
return handlerInput.responseBuilder
.speak(handlerInput.t('WELCOME_NO_TOKEN'))
.withLinkAccountCard()
.getResponse();
}
}
};
const HelpIntentHandler = {
canHandle: Helpers.canHandleIntent('AMAZON.HelpIntent'),
async handle(handlerInput) {
return handlerInput.responseBuilder
.speak(handlerInput.t('HELP'))
.reprompt(handlerInput.t('HELP_REPROMPT'))
.getResponse();
}
};
const CancelAndStopIntentHandler = {
canHandle: Helpers.canHandleIntent('AMAZON.CancelIntent', 'AMAZON.StopIntent'),
handle(handlerInput) {
return handlerInput.responseBuilder
.speak(handlerInput.t((Math.random() > 0.2) ? 'GOODBYE' : 'GOODBYE_THANKS'))
.getResponse();
}
};
const FallbackIntentHandler = {
canHandle: Helpers.canHandleIntent('AMAZON.FallbackIntent'),
handle(handlerInput) {
return handlerInput.responseBuilder
.speak(handlerInput.t('FALLBACK'))
.reprompt(handlerInput.t('FALLBACK'))
.getResponse();
}
};
const SessionEndedRequestHandler = {
canHandle(handlerInput) {
return Alexa.getRequestType(handlerInput.requestEnvelope) === 'SessionEndedRequest';
},
handle(handlerInput) {
console.log('~~~~ Session ended: ', handlerInput.requestEnvelope);
// Any cleanup logic goes here.
return handlerInput.responseBuilder.getResponse(); // notice we send an empty response
}
};
const IntentReflectorHandler = {
canHandle(handlerInput) {
return Alexa.getRequestType(handlerInput.requestEnvelope) === 'IntentRequest';
},
handle(handlerInput) {
const intentName = Alexa.getIntentName(handlerInput.requestEnvelope);
return handlerInput.responseBuilder
.speak(handlerInput.t('REFLECTOR', {
intentName,
}))
// .reprompt(handlerInput.t('ANYTHING_ELSE'))
.getResponse();
}
};
// --- error handlers ----
const NoTokenErrorHandler = {
canHandle(handlerInput, error) {
return error && error.name === 'NoTokenError';
},
handle(handlerInput) {
return handlerInput.responseBuilder
.speak(handlerInput.t('ERR_NO_TOKEN'))
.withLinkAccountCard()
.getResponse();
}
};
const ReasonedPlayerErrorHandler = {
canHandle(handlerInput, error) {
return error && error.reason;
},
handle(handlerInput, error) {
// TODO bekomme von dem upstream-Paket gar keinen response-body zurück…
// Bis es dort behoben ist, auf diesen Fork gewechselt:
// https://github.com/nailujx86/spotify-web-api-node
return handlerInput.responseBuilder
.speak(handlerInput.t('ERR_REASON.' + error.reason) || handlerInput.t('ERR_UNKNOWN'))
.getResponse();
}
};
const ErrorHandler = {
canHandle() {
return true;
},
handle(handlerInput, error) {
console.warn('~~~~ Error handled', error);
return handlerInput.responseBuilder
.speak(handlerInput.t('ERROR'))
.reprompt(handlerInput.t('ERROR_REPROMPT'))
.getResponse();
}
};
// --- interceptors ---
// This request interceptor will bind a translation function 't' to the handlerInput
const LocalisationRequestInterceptor = {
process(handlerInput) {
i18n.init({
lng: Alexa.getLocale(handlerInput.requestEnvelope),
resources: languageStrings
}).then((t) => {
handlerInput.t = (...args) => t(...args);
});
}
};
// ---------
exports.skillBuilder = Alexa.SkillBuilders.custom()
.addRequestHandlers(
// --- getters ---
GetCurrentlyPlayingIntentHandler,
// --- play/pause ---
PlayIntentHandler,
PlayOnDeviceIntentHandler,
PauseIntentHandler,
// --- skip ---
NextSongIntentHandler,
PreviousSongIntentHandler,
JumpToContextStartEndIntentHandlerFactory(true), // JumpToContextStartIntent
JumpToContextStartEndIntentHandlerFactory(false), // JumpToContextEndIntent
// --- setters/toggles ---
SetVolumeIntentHandler,
ToggleShuffleIntentHandler,
// --- misc. ---
SeekIntentHandler,
// --- general handlers ---
LaunchRequestHandler,
HelpIntentHandler,
CancelAndStopIntentHandler,
FallbackIntentHandler,
SessionEndedRequestHandler,
IntentReflectorHandler)
.addErrorHandlers(
NoTokenErrorHandler,
ReasonedPlayerErrorHandler,
ErrorHandler)
.addRequestInterceptors(LocalisationRequestInterceptor)
.withApiClient(new Alexa.DefaultApiClient())
.withCustomUserAgent('sample/hello-world/v1.2');