-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
440 lines (393 loc) · 14.8 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
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
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
"use strict";
const Alexa = require('alexa-sdk');
const APP_ID = undefined; //Optional
let speechOutput;
let reprompt;
let audioSrc;
let selectedSpeech;
let welcomeOutput = "Benvenuto dal chitarrista 2 punto 0. Chiedimi una nota per accordare la tua chitarra, o un accordo maggiore o minore.";
let welcomeReprompt = 'Che cosa posso suonare per te?';
speechOutput = '';
reprompt = '';
audioSrc = '';
selectedSpeech = '';
const handlers = {
'LaunchRequest': function () {
this.emit(':ask', welcomeOutput, welcomeReprompt);
},
'AMAZON.HelpIntent': function () {
speechOutput = 'Il chitarrista 2 punto 0 può aiutarti ad accordare la tua chitarra imparare gli accordi. Chiedimi di riprodurre una nota o un accordo maggiore o minore!';
reprompt = 'Attenzione! non supporto gli accordi aumentati, diminuiti o di settima. Prova a dire: fammi sentire un mi cantino, oppure: suonami un accordo di la minore!';
this.emit(':ask', speechOutput, reprompt);
},
'AMAZON.CancelIntent': function () {
speechOutput = 'D\'accordo, smetto di suonare.'
this.emit(':tell', speechOutput);
},
'AMAZON.StopIntent': function () {
speechOutput = 'Ciao musicista! <emphasis level="reduced"> ci si becca in giro!</emphasis>';
this.emit(':tellWithCard', speechOutput, 'Grazie per aver scelto il Chitarrista 2 punto 0!', 'Ricordati di ascoltare tanta buona Musica!');
},
'SessionEndedRequest': function () {
speechOutput = '';
this.emit(':tell', speechOutput);
},
'AMAZON.NavigateHomeIntent': function () {
speechOutput = 'Arrivederci a presto!';
this.emit(":tell", speechOutput);
},
"PlayNoteIntent": function () {
var speechOutput = '';
var speechReprompt = '';
var noteSlot = resolveCanonical(this.event.request.intent.slots.note);
var pitchSlot = resolveCanonical(this.event.request.intent.slots.pitch);
var urlPath = 'https://YOUR_NOTES_URL';
var notes = {
'mi' : {
'alto' : urlPath + 'e_high.mp3',
'cantino': urlPath + 'e_high.mp3',
'basso': urlPath + 'e_low.mp3'
},
'la' : {
'alto' : urlPath + 'a.mp3',
'cantino': urlPath + 'a.mp3',
'basso': urlPath + 'a.mp3'
},
're' : {
'alto' : urlPath + 'd.mp3',
'cantino': urlPath + 'd.mp3',
'basso': urlPath + 'd.mp3'
},
'sol' : {
'alto' : urlPath + 'g.mp3',
'cantino': urlPath + 'g.mp3',
'basso': urlPath + 'g.mp3'
},
'si' : {
'alto' : urlPath + 'b.mp3',
'cantino': urlPath + 'b.mp3',
'basso': urlPath + 'b.mp3'
}
}
var pitches = [
'alto',
'cantino',
'basso'
];
var note = '';
var pitch = '';
if(!noteSlot) {
this.emit(':ask', 'Non ho sentito bene, Di che nota o accordo si tratta?', 'Mi puoi chiedere qualcosa tipo suona la nota Mi cantino')
} else {
note = noteSlot.toLowerCase();
this.attributes['note'] = note;
}
if(notes[note]) {
pitch = '';
if(pitchSlot && pitches.indexOf(pitchSlot.toLowerCase()) > -1) {
pitch = pitchSlot;
} else {
pitch = 'basso';
}
audioSrc = notes[note][pitch]; //URL path
var outputPitch = pitch === 'basso' ? pitch = '' : pitch;
//if somebody selects a non E string with high pitch, this check is to say that a low pitch is available and that it will be played
if((noteSlot !== 'mi') && (pitch === pitches[0] || pitch === pitches[1])) {
outputPitch = '';
}
selectedSpeech = noteSlot + ' ' + outputPitch;
var textArray = [
'Ecco per te il ',
'Ecco a te il ',
'Ti suono il ',
'Ascolta il ',
' '
]
var randomIndex = Math.floor(Math.random() * textArray.length);
var randomResponseIncipit = textArray[randomIndex];
speechOutput = randomResponseIncipit + selectedSpeech + ': <audio src="' + audioSrc + '" /> Che cosa vorresti ascoltare adesso?';
speechReprompt = 'Chiedimi di suonare una nota o un accordo. Che cosa vuoi sentire?';
} else {
speechOutput = 'Mi dispiace, non conosco la nota o l\'accordo che mi hai chiesto.'
}
var cardTitle = 'Sto suonando la nota ' + selectedSpeech;
var cardSubtitle = 'Te la farò ascoltare qualche volta, ma puoi riascoltarla tutte le volte che vuoi. Basta chiedere!';
this.emit(":askWithCard", speechOutput, speechReprompt, cardTitle, cardSubtitle);
},
"PlayChordIntent": function () {
var speechOutput = '';
var speechReprompt = '';
var chordSlot = resolveCanonical(this.event.request.intent.slots.note);
var typeSlot = resolveCanonical(this.event.request.intent.slots.chordtype);
var urlPath = 'https://YOUR_CHORDS_URL';
var chords = {
'do' : {
'maggiore' : urlPath + 'c_maj.mp3',
'minore': urlPath + 'c_min.mp3'
},
'do diesis' : {
'maggiore' : urlPath + 'c_diesis_maj.mp3',
'minore': urlPath + 'c_diesis_min.mp3'
},
're bemolle' : {
'maggiore' : urlPath + 'c_diesis_maj.mp3',
'minore': urlPath + 'c_diesis_min.mp3'
},
're' : {
'maggiore' : urlPath + 'd_maj.mp3',
'minore': urlPath + 'd_min.mp3'
},
're diesis' : {
'maggiore' : urlPath + 'd_diesis_maj.mp3',
'minore': urlPath + 'd_diesis_min.mp3'
},
'mi bemolle' : {
'maggiore' : urlPath + 'd_diesis_maj.mp3',
'minore': urlPath + 'd_diesis_min.mp3'
},
'mi' : {
'maggiore' : urlPath + 'e_maj.mp3',
'minore': urlPath + 'e_min.mp3'
},
'fa' : {
'maggiore' : urlPath + 'f_maj.mp3',
'minore': urlPath + 'f_min.mp3'
},
'fa diesis' : {
'maggiore' : urlPath + 'f_diesis_maj.mp3',
'minore': urlPath + 'f_diesis_min.mp3'
},
'sol bemolle' : {
'maggiore' : urlPath + 'f_diesis_maj.mp3',
'minore': urlPath + 'f_diesis_min.mp3'
},
'sol' : {
'maggiore' : urlPath + 'g_maj.mp3',
'minore': urlPath + 'g_min.mp3'
},
'sol diesis' : {
'maggiore' : urlPath + 'g_diesis_maj.mp3',
'minore': urlPath + 'g_diesis_min.mp3'
},
'la bemolle' : {
'maggiore' : urlPath + 'g_diesis_maj.mp3',
'minore': urlPath + 'g_diesis_min.mp3'
},
'la' : {
'maggiore' : urlPath + 'a_maj.mp3',
'minore': urlPath + 'a_min.mp3'
},
'la diesis' : {
'maggiore' : urlPath + 'a_diesis_maj.mp3',
'minore': urlPath + 'a_diesis_min.mp3'
},
'si bemolle' : {
'maggiore' : urlPath + 'a_diesis_maj.mp3',
'minore': urlPath + 'a_diesis_min.mp3'
},
'si' : {
'maggiore' : urlPath + 'b_maj.mp3',
'minore': urlPath + 'b_min.mp3'
}
}
var types = [
'maggiore',
'minore'
];
var chord = '';
var type = '';
if(!chordSlot) {
this.emit(':ask', 'Non ho sentito bene. Di che nota o accordo si tratta?', 'Mi puoi chiedere qualcosa tipo suona la nota Mi cantino')
} else {
chord = chordSlot.toLowerCase();
this.attributes['chord'] = chord;
}
if(chords[chord]) {
type = 'maggiore';
if(typeSlot && types.indexOf(typeSlot.toLowerCase()) > -1) {
type = typeSlot;
}
audioSrc = chords[chord][type];
selectedSpeech = chordSlot + ' ' + type;
var textArray = [
'Ecco per te un accordo ',
'Ecco a te un ',
'Accordo ',
' ',
'Ti suono un ',
'Ascolta il '
]
var randomIndex = Math.floor(Math.random() * textArray.length);
var randomResponseIncipit = textArray[randomIndex];
speechOutput = randomResponseIncipit + selectedSpeech + ': <audio src="' + audioSrc + '" /> Chiedimi di nuovo una nota per accordare la tua chitarra, o un accordo maggiore o minore.';
speechReprompt = 'Che cosa vuoi ascoltare?';
} else {
speechOutput = 'Mi dispiace, non conosco la nota o l\'accordo che mi hai chiesto.'
speechReprompt = 'Posso riprodurre ad esempio un sol minore, maggiore una nota per accordare la tua chitarra. Cosa ti suono?';
}
var cardTitle = 'Sto suonando l\' accordo ' + selectedSpeech;
var cardSubtitle = 'Ci sono tante canzoni che usano questo accordo :) ';
this.emit(":ask", speechOutput, speechReprompt, cardTitle, cardSubtitle);
},
'AMAZON.YesIntent': function () {
},
'AMAZON.NoIntent': function () {
this.emit('StopIntent');
},
'AskGuitarTuningIntent': function () {
speechOutput = 'Certamente, che nota vorresti accordare?';
var speechReprompt = 'Per esempio, chiedimi di suonare un mi cantino, un la, un sol, un mi basso';
this.emit(':ask', speechOutput, speechReprompt);
},
'AskPlayChordIntent': function () {
speechOutput = 'Va bene, che accordo ti posso suonare?';
var speechReprompt = 'Ad esempio, puoi chiedermi di suonarti un sol maggiore, o un la minore';
this.emit(':ask', speechOutput, speechReprompt);
},
'Unhandled': function () {
speechOutput = "Il chitarrista 2 punto 0 non ha capito che cosa hai chiesto. Vuoi accordare la tua chitarra? Chiedimi di suonare una nota.";
this.emit(':ask', speechOutput, speechOutput);
}
};
exports.handler = (event, context) => {
const alexa = Alexa.handler(event, context);
alexa.appId = APP_ID;
alexa.registerHandlers(handlers);
alexa.execute();
};
function resolveCanonical(slot){
let canonical;
try{
canonical = slot.resolutions.resolutionsPerAuthority[0].values[0].value.name;
}catch(err){
console.log(err.message);
canonical = slot.value;
};
return canonical;
};
function delegateSlotCollection(){
console.log("in delegateSlotCollection");
console.log("current dialogState: "+this.event.request.dialogState);
if (this.event.request.dialogState === "STARTED") {
console.log("in Beginning");
let updatedIntent= null;
if(this.isOverridden()) {
return;
}
this.handler.response = buildSpeechletResponse({
sessionAttributes: this.attributes,
directives: getDialogDirectives('Dialog.Delegate', updatedIntent, null),
shouldEndSession: false
});
this.emit(':responseReady', updatedIntent);
} else if (this.event.request.dialogState !== "COMPLETED") {
console.log("in not completed");
if(this.isOverridden()) {
return;
}
this.handler.response = buildSpeechletResponse({
sessionAttributes: this.attributes,
directives: getDialogDirectives('Dialog.Delegate', null, null),
shouldEndSession: false
});
this.emit(':responseReady');
} else {
console.log("in completed");
console.log("returning: "+ JSON.stringify(this.event.request.intent));
return this.event.request.intent;
}
}
function randomPhrase(array) {
let i = 0;
i = Math.floor(Math.random() * array.length);
return(array[i]);
}
function isSlotValid(request, slotName){
let slot = request.intent.slots[slotName];
let slotValue;
if (slot && slot.value) {
slotValue = slot.value.toLowerCase();
return slotValue;
} else {
return false;
}
}
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
};
}
}
function buildSpeechletResponse(options) {
let alexaResponse = {
shouldEndSession: options.shouldEndSession
};
if (options.output) {
alexaResponse.outputSpeech = createSpeechObject(options.output);
}
if (options.reprompt) {
alexaResponse.reprompt = {
outputSpeech: createSpeechObject(options.reprompt)
};
}
if (options.directives) {
alexaResponse.directives = options.directives;
}
if (options.cardTitle && options.cardContent) {
alexaResponse.card = {
type: 'Simple',
title: options.cardTitle,
content: options.cardContent
};
if(options.cardImage && (options.cardImage.smallImageUrl || options.cardImage.largeImageUrl)) {
alexaResponse.card.type = 'Standard';
alexaResponse.card['image'] = {};
delete alexaResponse.card.content;
alexaResponse.card.text = options.cardContent;
if(options.cardImage.smallImageUrl) {
alexaResponse.card.image['smallImageUrl'] = options.cardImage.smallImageUrl;
}
if(options.cardImage.largeImageUrl) {
alexaResponse.card.image['largeImageUrl'] = options.cardImage.largeImageUrl;
}
}
} else if (options.cardType === 'LinkAccount') {
alexaResponse.card = {
type: 'LinkAccount'
};
} else if (options.cardType === 'AskForPermissionsConsent') {
alexaResponse.card = {
type: 'AskForPermissionsConsent',
permissions: options.permissions
};
}
let returnResult = {
version: '1.0',
response: alexaResponse
};
if (options.sessionAttributes) {
returnResult.sessionAttributes = options.sessionAttributes;
}
return returnResult;
}
function getDialogDirectives(dialogType, updatedIntent, slotName) {
let directive = {
type: dialogType
};
if (dialogType === 'Dialog.ElicitSlot') {
directive.slotToElicit = slotName;
} else if (dialogType === 'Dialog.ConfirmSlot') {
directive.slotToConfirm = slotName;
}
if (updatedIntent) {
directive.updatedIntent = updatedIntent;
}
return [directive];
}