-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
136 lines (106 loc) · 4.24 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
const express = require("express");
const app = express();
const server = require("http").createServer(app);
const WebSocket = require("ws");
const wss = new WebSocket.Server({ server });
require("dotenv").config();
app.use(express.urlencoded({
extended: true
}));
// Inicializar Google Speech to Text
const speech = require("@google-cloud/speech");
const client = new speech.SpeechClient();
// Configurar a Requisição de Transcrição
const request = {
config: {
encoding: "MULAW",
sampleRateHertz: 8000,
languageCode: "pt-BR"
},
interimResults: true
};
// Inicializar Twilio
const twilio = require('twilio');
const twilioClient = twilio( process.env.TWILIO_ACCOUNT_ID, process.env.TWILIO_AUTH_TOKEN);
// Tratar Conexão do Web Socket
wss.on("connection", function connection(ws, req) {
console.log("Nova conexão iniciada", req.url);
const recognizeStream = client
.streamingRecognize(request)
.on("error", console.error)
.on("data", data => {
let callSid = req.url.replace('/', '');
console.log(callSid, data.results[0].alternatives[0].transcript);
// verificar conteudo recebido e redirecionar quando for o caso
if (checkContent(callSid, data.results[0].alternatives[0].transcript)) {
recognizeStream.destroy();
const twiml = new twilio.twiml.VoiceResponse();
twiml.say({ voice: 'alice', language: 'pt-BR' }, 'Você acertou a palavra-chave.');
twiml.pause({ length: 1 });
twiml.say({ voice: 'alice', language: 'pt-BR' }, 'Parabéns!');
twiml.play('http://demo.twilio.com/docs/classic.mp3');
twilioClient.calls(callSid)
.update({ twiml: twiml.toString() })
.then(call => console.log('> > > > > > > > > > ', escondeNumero(call.from), ' < < < < < < < < < <'));
}
});
ws.on("message", function incoming(message) {
const msg = JSON.parse(message);
switch (msg.event) {
case "connected":
console.log(`Uma nova chamada foi conectada.`);
break;
case "start":
console.log(`Começando Media Stream ${msg.streamSid}`);
break;
case "media":
// console.log('Recebendo áudio...');
if (recognizeStream.destroyed) return;
recognizeStream.write(msg.media.payload);
break;
case "stop":
console.log(`Chamada finalizada!`);
recognizeStream.destroy();
break;
}
});
});
// Home da página
app.get("/", (req, res) => res.send("Olá mundo!"));
// encerrar chamadas em aberto
app.get("/encerrar", (req, res) => {
twilioClient.calls.each(call => {
if (call.status === 'in-progress') {
const twiml = new twilio.twiml.VoiceResponse();
twiml.say({ voice: 'alice', language: 'pt-BR' }, 'Então é isso pessoal! Obrigado por participar da nossa demonstração.');
twilioClient.calls(call.sid)
.update({ twiml: twiml.toString() })
.then(call => console.log('encerrada: ', call.to));
}
});
res.send('Obrigado!');
});
// Receber chamada telefônica
app.post("/", (req, res) => {
console.log(`Nova chamada de ${req.body.FromCity}/${req.body.FromState} do número ${escondeNumero(req.body.From)}`, );
res.set("Content-Type", "text/xml");
res.send(`
<Response>
<Start>
<Stream url="wss://${req.headers.host}/${req.body.CallSid}"/>
</Start>
<Say voice="alice" language="pt-BR">Olá. Estou reconhecendo sua voz nos próximos 60 segundos.</Say>
<Pause length="60" />
<Say voice="alice" language="pt-BR">O tempo acabou... Obrigada!</Say>
</Response>
`);
});
console.log("Escutando na porta 8080");
server.listen(8080);
function escondeNumero(number) {
// +5511999991234 => +55119****1234
return number.substr(0, number.length - 8) + '****-' + number.substr(number.length - 4 )
}
function checkContent(callSid, content) {
return content.toLowerCase().includes('bazinga');
}