forked from DigiPlatMOOC/esercitazione-bot-telegram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
52 lines (42 loc) · 1.52 KB
/
server.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
const util = require('util');
const express = require('express');
const app = express();
// Includiamo la libreria "body-parser" per gestire le richieste in JSON.
const bodyparser = require('body-parser');
app.use(bodyparser.json());
// Includiamo il modulo "request" per effettuare richieste HTTP
const https = require('https');
// Webhook per Telegram
app.post('/telegram', (req, res) => {
console.log("Richiesta: " + JSON.stringify(req.body));
const chatid = req.body.message.chat.id;
const text = req.body.message.text;
console.log("Utente in chat " + chatid + " ha scritto '" + text + "'");
const clientreq = https.request({
method: 'POST',
host: 'api.telegram.org',
path: '/bot' + process.env.BOTTOKEN + '/getMe'
}, function(resp) {
// Questa funzione viene richiamata a richiesta eseguita
if(resp.statusCode != 200) {
console.log("Richiesta HTTP fallita");
return;
}
console.log("Richiesta HTTP riuscita");
var body = '';
resp.on('data', function(d) {
body += d;
});
resp.on('end', function() {
// Ora body contiene il contenuto (corpo) della risposta
console.log("Risposta da API Telegram: " + body);
const j = JSON.parse(body);
// j è un oggetto JavaScript che contiene i dati della risposta
// ...
});
});
clientreq.end(); // questa chiamata esegue la richiesta
});
const listener = app.listen(process.env.PORT, function() {
console.log('Your app is listening on port ' + listener.address().port);
});