-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
71 lines (63 loc) · 1.91 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
const Telegraf = require('telegraf') // https://www.npmjs.com/package/telegraf
const fs = require('fs')
const http = require('http');
const https = require('https');
const exec = require('child_process').exec;
const decode = require('unescape');
/**
* Api key de telegram generado por @BotFather
*/
const bot = new Telegraf('token...')
/**
* Comandos del bot de telegram
*/
bot.hears('bot', (ctx) => ctx.reply('Quien me ha invocado?'))
bot.command('/joke', (ctx) => joke(ctx))
bot.command('/mozilla', (ctx) => mozilla(ctx))
/**
*
* @param {*} command
* @param {*} callback
* Funcion que ejecuta un comando de terminal y captura la salida en un callback
*/
let execute = function (command, callback){
exec(command, function(error, stdout, stderr){ callback(stdout); });
};
/**
*
* @param {*} ctx
* Funcion de ejemplo para subir archivos a telegram a travez de firefox send
*/
let mozilla = function(ctx){
let message = ctx.update.message
ctx.reply("Enviando archivo, espere...");
let cmd = message.text.split(" ")
console.log(cmd)
// el commando ffsend tiene que ser descargado de https://github.com/timvisee/ffsend/releases dependiendo de su S.O.
execute(`./ffsend upload ${cmd[1]}`, (res)=>{
ctx.reply(res)
})
}
/**
*
* @param {*} ctx
* Funcion que obtiene un chiste sobre Chuck Norris y lo responde en el chat
*/
let joke = function (ctx) {
var url = 'https://geek-jokes.sameerkumar.website/api';
// Hacer peticion HTTP GET
https.get(url, function(res){
var body = '';
res.on('data', function(chunk){
body += chunk;
});
res.on('end', function(){
var joke = JSON.parse(body);
console.log("Got a response: ", joke);
ctx.reply(decode(joke))
});
}).on('error', function(e){
ctx.reply('Ocurrio un error con el servidor de chistes, :( ');
});
}
bot.startPolling()