-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
247 lines (218 loc) · 6.16 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
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
var alexa = require('alexa-app');
var Cast = require('./cast');
var express = require('express');
var Spotify = require('./spotify');
var util = require('util');
var alexaApp = new alexa.app('SongCast');
var app = express();
var spotify = new Spotify();
var port = 3000;
var debugMode = false;
var options = {
expressApp: app,
checkCert: true,
debug: false
};
if (process.env.NODE_ENV == 'debug') {
debugMode = true;
options.checkCert = false;
options.debug = true;
app.set('view engine', 'ejs');
console.log('Songcast debug mode can now be accessed at: http://localhost:' + port + '/songcast');
}
alexaApp.express(options);
alexaApp.launch(function (req, res) {
var prompt = 'I can cast Spotify tracks, albums, artists and playlists to all your Chromecast devices.';
res.say(prompt);
});
alexaApp.intent('AMAZON.StopIntent', {
'slots': {},
'utterances': []
},
function (request, response) {
Cast.stop();
response.say('Stopping music on all devices').shouldEndSession(true).send();
}
);
alexaApp.error = function(exception, request, response) {
response.say("An error occurred and the previous request could not be completed. Please try again.").shouldEndSession(true).send();
};
app.listen(port);
spotify.on('loaded', function() {
alexaApp.intent('PlayTrackIntent', {
'slots': {
'track': 'AMAZON.MusicRecording',
'device': 'AMAZON.Room'
},
'utterances': [
'Cast the song {-|track} to {-|device}',
'Cast song {-|track} to {-|device}',
'Cast {-|track} to {-|device}'
]
},
function (request, response) {
if (debugMode) {
console.log(request.slot('track'));
}
return spotify.searchTracks(request.slot('track'))
.then(data => {
var speech_text = util.format('%s by %s', data.title, data.artist);
if (!debugMode) {
Cast.play({ device: request.slot('device'), data: data, port: spotify.port });
}
response.card({
type: 'Standard',
title: speech_text,
text: '',
image: { smallImageUrl: data.image }
});
response.say('Now playing ' + speech_text).shouldEndSession(true).send();
})
.catch(err => {
response.say(err.message).shouldEndSession(true).send();
});
}
);
alexaApp.intent('PlayTrackByArtistIntent', {
'slots': {
'track': 'AMAZON.MusicRecording',
'artist': 'AMAZON.MusicGroup',
'device': 'AMAZON.Room'
},
'utterances': [
'Cast the song {-|track} by {-|artist} to {-|device}',
'Cast song {-|track} by {-|artist} to {-|device}',
'Cast {-|track} by {-|artist} to {-|device}'
]
},
function (request, response) {
if (debugMode) {
console.log(request.slot('track') + ' ' + request.slot('artist'));
}
return spotify.searchTracks(request.slot('track') + ' ' + request.slot('artist'))
.then(data => {
var speech_text = util.format('%s by %s', data.title, data.artist);
if (!debugMode) {
Cast.play({ device: request.slot('device'), data: data, port: spotify.port });
}
response.card({
type: 'Standard',
title: speech_text,
text: '',
image: { smallImageUrl: data.image }
});
response.say('Now playing ' + speech_text).shouldEndSession(true).send();
})
.catch(err => {
response.say(err.message).shouldEndSession(true).send();
});
}
);
alexaApp.intent('StartPlaylistIntent', {
'slots': {
'playlist': 'AMAZON.MusicPlaylist',
'device': 'AMAZON.Room'
},
'utterances': [
'Cast {-|playlist} playlist to {-|device}',
'Playlist {-|playlist} to {-|device}',
'Start playlist {-|playlist} to {-|device}',
'Cast songs from my {-|playlist} playlist to {-|device}',
'Cast playlist {-|playlist} to {-|device}'
]
},
function (request, response) {
if (debugMode) {
console.log(request.slot('playlist'));
}
return spotify.searchPlaylists(request.slot('playlist'))
.then(data => {
var speech_text = util.format('Playing songs from %s', data.title)
if (!debugMode) {
Cast.play({ device: request.slot('device'), data: data, port: spotify.port });
}
response.card({
type: 'Standard',
title: speech_text,
text: '',
image: { smallImageUrl: data.image }
});
response.say(speech_text).shouldEndSession(true).send();
})
.catch(err => {
response.say(err.message).shouldEndSession(true).send();
});
}
);
alexaApp.intent('StartArtistIntent', {
'slots': {
'artist': 'AMAZON.MusicGroup',
'device': 'AMAZON.Room'
},
'utterances': [
'Cast artist {-|artist} to {-|device}',
'Cast songs by {-|artist} to {-|device}',
'Cast top songs by {-|artist} to {-|device}',
'Cast top tracks by {-|artist} to {-|device}',
'Cast music by {-|artist} to {-|device}',
'Cast tracks by {-|artist} to {-|device}',
]
},
function (request, response) {
if (debugMode) {
console.log(request.slot('artist'));
}
return spotify.searchArtists(request.slot('artist'))
.then(data => {
var speech_text = util.format('Playing top tracks by %s', data.title);
if (!debugMode) {
Cast.play({ device: request.slot('device'), data: data, port: spotify.port });
}
response.card({
type: 'Standard',
title: speech_text,
text: '',
image: { smallImageUrl: data.image }
});
response.say(speech_text).shouldEndSession(true).send();
})
.catch(err => {
response.say(err.message).shouldEndSession(true).send();
});
}
);
alexaApp.intent('StartAlbumIntent', {
'slots': {
'album': 'AMAZON.MusicAlbum',
'device': 'AMAZON.Room'
},
'utterances': [
'Cast the album {-|album} to {-|device}',
'Cast album {-|album} to {-|device}'
]
},
function (request, response) {
if (debugMode) {
console.log(request.slot('album'));
}
return spotify.searchAlbums(request.slot('album'))
.then(data => {
var speech_text = util.format('Playing %s by %s', data.title, data.artist)
if (!debugMode) {
Cast.play({ device: request.slot('device'), data: data, port: spotify.port });
}
response.card({
type: 'Standard',
title: speech_text,
text: '',
image: { smallImageUrl: data.image }
});
response.say(speech_text).shouldEndSession(true).send();
})
.catch(err => {
response.say(err.message).shouldEndSession(true).send();
});
}
);
});
module.exports = alexaApp;