-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbot.js
55 lines (42 loc) · 1.74 KB
/
bot.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
//Require
var twit = require('twit');
var config = require('./config.js');
var fs = require('fs');
//Principal para usar la API de Twitter
var Twitter = new twit(config);
//Function para twittear
var tweetParams = function(params) {
Twitter.post('statuses/update',
params, function(err, data, response) {
console.log(data)
})
}
var stream = Twitter.stream('statuses/filter', { track: ['@cdmxbot #buscoa'] });
stream.on('tweet', tweetEvent);
function tweetEvent(tweet) {
// User
var name = tweet.user.screen_name;
// Texto
var txt = tweet.text;
var regexp = new RegExp('#([^\\s]*)','g'); //Quitando las hashtags
txt = txt.replace(regexp, '');
txt = txt.replace('@cdmxbot', ''); //Quitando la mención al bot
var tweetID = tweet.id_str;
//Buscaremos #sismo junto a lo que haya escrito el usuario, sólo desde el 19 de septiembre
var thequery = '#sismo AND ' + txt + ' since:2017-09-19';
//Busca lo recibido
//Luego por cada tweet encontrado, se responde al usuario
Twitter.get('search/tweets', { q: thequery, count: 3, result_type:'recent' }, function(err, data, response) {
var total = data.statuses.length;
Array.from(data.statuses).forEach(function(item, index){
//Armando el objeto para twittear la respuesta
var reply = '@' + name + ' Encontré esto (' + (index+1) + '/' + total + '): https://twitter.com/statuses/' + item.id_str ;
var params = {
status: reply,
in_reply_to_status_id: tweetID
};
//Twitteando la respuesta
tweetParams(params);
});
})
};