mirror of
https://github.com/thewesker/bug-em.git
synced 2025-12-20 04:01:05 -05:00
170 lines
7.5 KiB
JavaScript
170 lines
7.5 KiB
JavaScript
var Twit = require('twit')
|
|
var fs = require('fs')
|
|
var screenshot = require('url-to-screenshot');
|
|
var low = require('lowdb');
|
|
var path = require('path')
|
|
var childProcess = require('child_process')
|
|
var phantomjs = require('phantomjs-prebuilt')
|
|
var binPath = phantomjs.path
|
|
var storage = require('lowdb/file-sync');
|
|
var session = low('./config.json', {'storage': storage});
|
|
|
|
var T = new Twit({
|
|
consumer_key: 'XEpOzvNVnIL0z5cFggsZQzrTt',
|
|
consumer_secret: 'tsOwdaDQXKisIYDhGXSo1552NLhgJdDtd3gglsBqBUQrbmGzG2',
|
|
access_token: '3220758997-Z5PIScOrRfjV3CsabXROoLObAMQyRxO9XZXu3qh',
|
|
access_token_secret: 'K01MHdAtxZBflo1yf7yFG25j7180RrT16sSNkF663ExAg',
|
|
timeout_ms: 60*1000, // optional HTTP request timeout to apply to all requests.
|
|
})
|
|
|
|
// filter the public stream by english tweets containing `#apple`
|
|
//
|
|
var stream = T.stream('statuses/filter', { follow: '25073877, 1339835893, 179932936, 6160792, 2853461537, 1214598626' })
|
|
stream.on('tweet', function (tweet) {
|
|
if (tweet.user.screen_name === 'a__robot') {
|
|
var nameID = tweet.id_str;
|
|
var trumptweeturl = 'https://twitter.com/a__robot/status/' + nameID;
|
|
|
|
var s = screenshot(trumptweeturl)
|
|
.width(500)
|
|
.height(500)
|
|
.clip()
|
|
.capture(function(err, img) {
|
|
if (err) throw err;
|
|
fs.writeFileSync('./pics/trump.png', img);
|
|
console.log('screenshot saved as trump.png');
|
|
});
|
|
|
|
var trumpmessages = session.object.trumpmessages;
|
|
var randomtrumpmessage = trumpmessages[Math.floor(Math.random() * trumpmessages.length)];
|
|
var b64content = fs.readFileSync('./pics/trump.png', { encoding: 'base64' })
|
|
|
|
|
|
// first we must post the media to Twitter
|
|
T.post('media/upload', { media_data: b64content }, function (err, data, response) {
|
|
// now we can assign alt text to the media, for use by screen readers and
|
|
// other text-based presentations and interpreters
|
|
var mediaIdStr = data.media_id_string
|
|
var altText = "There isn't actually much point to this but whatever"
|
|
var meta_params = { media_id: mediaIdStr, alt_text: { text: altText } }
|
|
var nameID = tweet.id_str;
|
|
var name = tweet.user.screen_name;
|
|
|
|
T.post('media/metadata/create', meta_params, function (err, data, response) {
|
|
if (!err) {
|
|
// now we can reference the media and post a tweet (media will attach to the tweet)
|
|
var params = {in_reply_to_status_id: nameID, status: '@' + name + ' ' + randomtrumpmessage, media_ids: [mediaIdStr] }
|
|
|
|
T.post('statuses/update', params, function (err, data, response) {
|
|
console.log("Replied to Trump's Tweet with " + randomtrumpmessage)
|
|
})
|
|
}
|
|
})
|
|
})
|
|
}
|
|
if (tweet.user.screen_name === 'HillaryClinton') {
|
|
var b64content = fs.readFileSync('./pics/hillary.gif', { encoding: 'base64' })
|
|
var hillarymessages = session.object.hillarymessages;
|
|
var randomhillarymessage = hillarymessages[Math.floor(Math.random() * hillarymessages.length)];
|
|
// first we must post the media to Twitter
|
|
T.post('media/upload', { media_data: b64content }, function (err, data, response) {
|
|
// now we can assign alt text to the media, for use by screen readers and
|
|
// other text-based presentations and interpreters
|
|
var mediaIdStr = data.media_id_string
|
|
var altText = "There isn't actually much point to this but whatever"
|
|
var meta_params = { media_id: mediaIdStr, alt_text: { text: altText } }
|
|
var nameID = tweet.id_str;
|
|
var name = tweet.user.screen_name;
|
|
|
|
T.post('media/metadata/create', meta_params, function (err, data, response) {
|
|
if (!err) {
|
|
// now we can reference the media and post a tweet (media will attach to the tweet)
|
|
var params = {in_reply_to_status_id: nameID, status: '@' + name + " " + randomhillarymessage, media_ids: [mediaIdStr] }
|
|
|
|
T.post('statuses/update', params, function (err, data, response) {
|
|
console.log("Replied to Hillary's Tweet with " + randomhillarymessage)
|
|
})
|
|
}
|
|
})
|
|
})
|
|
}
|
|
if (tweet.user.screen_name === 'HulkHogan') {
|
|
var b64content = fs.readFileSync('./pics/hulk.gif', { encoding: 'base64' })
|
|
var hulkmessages = session.object.hulkmessages;
|
|
var randomhulkmessage = hulkmessages[Math.floor(Math.random() * hulkmessages.length)];
|
|
// first we must post the media to Twitter
|
|
T.post('media/upload', { media_data: b64content }, function (err, data, response) {
|
|
// now we can assign alt text to the media, for use by screen readers and
|
|
// other text-based presentations and interpreters
|
|
var mediaIdStr = data.media_id_string
|
|
var altText = "There isn't actually much point to this but whatever"
|
|
var meta_params = { media_id: mediaIdStr, alt_text: { text: altText } }
|
|
var nameID = tweet.id_str;
|
|
var name = tweet.user.screen_name;
|
|
|
|
T.post('media/metadata/create', meta_params, function (err, data, response) {
|
|
if (!err) {
|
|
// now we can reference the media and post a tweet (media will attach to the tweet)
|
|
var params = {in_reply_to_status_id: nameID, status: '@' + name + " " + randomhulkmessage, media_ids: [mediaIdStr] }
|
|
|
|
T.post('statuses/update', params, function (err, data, response) {
|
|
console.log("Replied to Hulk's Tweet with " + randomhulkmessage)
|
|
})
|
|
}
|
|
})
|
|
})
|
|
}
|
|
if (tweet.user.screen_name === 'Nero') {
|
|
var b64content = fs.readFileSync('./pics/nero.gif', { encoding: 'base64' })
|
|
var neromessages = session.object.neromessages;
|
|
var randomneromessage = neromessages[Math.floor(Math.random() * neromessages.length)];
|
|
// first we must post the media to Twitter
|
|
T.post('media/upload', { media_data: b64content }, function (err, data, response) {
|
|
// now we can assign alt text to the media, for use by screen readers and
|
|
// other text-based presentations and interpreters
|
|
var mediaIdStr = data.media_id_string
|
|
var altText = "There isn't actually much point to this but whatever"
|
|
var meta_params = { media_id: mediaIdStr, alt_text: { text: altText } }
|
|
var nameID = tweet.id_str;
|
|
var name = tweet.user.screen_name;
|
|
|
|
T.post('media/metadata/create', meta_params, function (err, data, response) {
|
|
if (!err) {
|
|
// now we can reference the media and post a tweet (media will attach to the tweet)
|
|
var params = {in_reply_to_status_id: nameID, status: '@' + name + " " + randomneromessage, media_ids: [mediaIdStr] }
|
|
|
|
T.post('statuses/update', params, function (err, data, response) {
|
|
console.log("Replied to Milo's Tweet with " + randomneromessage)
|
|
})
|
|
}
|
|
})
|
|
})
|
|
}
|
|
if (tweet.user.screen_name === 'ScottAdamsSays') {
|
|
var b64content = fs.readFileSync('./pics/scott.gif', { encoding: 'base64' })
|
|
var scottmessages = session.object.scottmessages;
|
|
var randomscottmessage = scottmessages[Math.floor(Math.random() * scottmessages.length)];
|
|
// first we must post the media to Twitter
|
|
T.post('media/upload', { media_data: b64content }, function (err, data, response) {
|
|
// now we can assign alt text to the media, for use by screen readers and
|
|
// other text-based presentations and interpreters
|
|
var mediaIdStr = data.media_id_string
|
|
var altText = "There isn't actually much point to this but whatever"
|
|
var meta_params = { media_id: mediaIdStr, alt_text: { text: altText } }
|
|
var nameID = tweet.id_str;
|
|
var name = tweet.user.screen_name;
|
|
|
|
T.post('media/metadata/create', meta_params, function (err, data, response) {
|
|
if (!err) {
|
|
// now we can reference the media and post a tweet (media will attach to the tweet)
|
|
var params = {in_reply_to_status_id: nameID, status: '@' + name + " " + randomscottmessage, media_ids: [mediaIdStr] }
|
|
|
|
T.post('statuses/update', params, function (err, data, response) {
|
|
console.log("Replied to Gary Johnson's Tweet with " + randomscottmessage)
|
|
})
|
|
}
|
|
})
|
|
})
|
|
}
|
|
})
|