forked from kimagure44/webhook-node-dialogflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnode01.js
89 lines (70 loc) · 3.42 KB
/
node01.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
'use strict';
// Libreria express para crear un api rest
const express = require("express");
const bodyParser = require("body-parser");
// Para hacer peticiones http de forma simple
const request = require('request');
// Para usar express dentro de Node
const app = express();
// Definimos el puerto
const port = process.env.PORT || 8899;
// Traducción en tiempo real
const translate = require('google-translate-api');
// Middleware de análisis del cuerpo de Node.js
app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json());
// Métodos de ruta (VERBOS HTTP: POST, GET, PUT, DELETE, etc...). Endpoint
app.post("/api/tiempo", (req, res) => {
// JSON QUE ENVIA DIALOGFLOW
let ubicacion = req.body.result.parameters["any"];
// Valor de kelvin para hacer la transformación a centígrados
let kelvin = 273.15;
// URL del API para la consulta de la temperatura por la posición geográfica
let url = `http://api.openweathermap.org/data/2.5/forecast?q=${ubicacion}&APPID=329d011b7d13867174bfd1f61e9fb3db`;
// Realizamos la petición
request(url, function(error, response, body) {
// Convertimos a JSON, la respuesta del servicio
let _body = JSON.parse(body);
// Que no de error el servicio externo
if (_body.cod === '200') {
// Pequeñas conversiones
let meses = ["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"];
let mesTxt = meses[parseInt(_body.list[0].dt_txt.split(" ")[0].split("-")[1]) - 1];
let fecha = `${_body.list[0].dt_txt.split(" ")[0].split("-")[2]} de ${mesTxt} de ${_body.list[0].dt_txt.split(" ")[0].split("-")[0]}`;
let temperatura = _body.list[0].main.temp - kelvin;
/*let _frase = `La temperatura prevista para el día ${fecha} (${_body.list[0].dt_txt.split(" ")[1]}) en ${_body.city.name} es de ${temperatura.toFixed(1)} grados `;
translate(_frase, { to: 'es' }).then(resTra => {
let _response = new Object();
_response.speech = resTra.text;
_response.displayText = resTra.text;
_response.source = "webhook";
res.status(200).send(_response);
}).catch(err => {
console.error(err);
});*/
// Formamos la respuesta que enviaremos a Dialogflow
let _response = new Object();
// DEFAULT RESPONSE EN DIALOGFLOW
_response.speech = `La temperatura prevista para el día ${fecha} a las ${_body.list[0].dt_txt.split(" ")[1]} en ${_body.city.name} es de ${temperatura.toFixed(1)} grados `;
_response.displayText = _response.speech;
_response.source = "webhook";
// Enviamos la respuesta
res.status(_body.cod).send(_response);
} else {
// ERROR!!!
translate(_body.message, { to: 'es' }).then(resTra => {
let _response = new Object();
_response.speech = resTra.text;
_response.displayText = resTra.text;
_response.source = "webhook";
res.status(200).send(_response);
}).catch(err => {
console.error(err);
});
}
});
});
// Escuchando nuestro servidor Node
app.listen(port, () => {
console.log(`API REST en el puerto: http://localhost:${port}`);
});