-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_1.js
70 lines (53 loc) · 1.91 KB
/
index_1.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
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
}));
// Tratar Conexão do Web Socket
wss.on("connection", function connection(ws, req) {
console.log("Nova conexão iniciada", req.url);
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...');
break;
case "stop":
console.log(`Chamada finalizada!`);
break;
}
});
});
// Home da página
app.get("/", (req, res) => res.send("Olá mundo!"));
// 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 )
}