Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

include the tweeter ID to end the loop #85

Merged
merged 1 commit into from
Sep 10, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 43 additions & 34 deletions read_and_reply.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,46 +57,55 @@ const makeViz = (data) => {

module.exports.read_and_reply = read_and_reply = (tweetEvent) => {

let quoteStatus = tweetEvent.tweet_create_events[0].is_quote_status
let id = tweetEvent.tweet_create_events[0].id_str
let tweeter = tweetEvent.tweet_create_events[0].user.id

console.log(tweetEvent)
console.log(tweetEvent.tweet_create_events[0])
console.log(quoteStatus)

if (quoteStatus) {
let user1 = tweetEvent.tweet_create_events[0].user.screen_name
let user2 = tweetEvent.tweet_create_events[0].quoted_status.user.screen_name
let tweet = '@' + user1 + ' ' + '@' + user2 + ' ' + makeViz(parse(tweetEvent.tweet_create_events[0].quoted_status.text))
console.log(user1, user2, tweet)
if (tweeter !== 1031985269984165900) {

// request options
const request_options = {
oauth: auth.twitter_oauth,
url: 'https://api.twitter.com/1.1/statuses/update.json?status=' + encodeURIComponent(tweet) + '&in_reply_to_status_id=' + id,
}
let quoteStatus = tweetEvent.tweet_create_events[0].is_quote_status
let id = tweetEvent.tweet_create_events[0].id_str

// POST request to tweet
request.post(request_options).then(function (body) {
console.log(body)
}).catch(function (body) {
console.log(body)
})

} else {
let user = tweetEvent.tweet_create_events[0].user.screen_name
let tweet = '@' + user + ' ' + makeViz(parse(tweetEvent.tweet_create_events[0].text))

// request options
const request_options = {
oauth: auth.twitter_oauth,
url: 'https://api.twitter.com/1.1/statuses/update.json?status=' + encodeURIComponent(tweet) + '&in_reply_to_status_id=' + id,
}
if (quoteStatus) {
let user1 = tweetEvent.tweet_create_events[0].user.screen_name
let user2 = tweetEvent.tweet_create_events[0].quoted_status.user.screen_name
let tweet = '@' + user1 + ' ' + '@' + user2 + ' ' + makeViz(parse(tweetEvent.tweet_create_events[0].quoted_status.text))
console.log(user1, user2, tweet)

// request options
const request_options = {
oauth: auth.twitter_oauth,
url: 'https://api.twitter.com/1.1/statuses/update.json?status=' + encodeURIComponent(tweet) + '&in_reply_to_status_id=' + id,
}

// POST request to tweet
request.post(request_options).then(function (body) {
console.log(body)
}).catch(function (body) {
console.log(body)
})
// POST request to tweet
request.post(request_options).then(function (body) {
console.log(body)
}).catch(function (body) {
console.log(body)
})

} else {
let user = tweetEvent.tweet_create_events[0].user.screen_name
let tweet = '@' + user + ' ' + makeViz(parse(tweetEvent.tweet_create_events[0].text))

// request options
const request_options = {
oauth: auth.twitter_oauth,
url: 'https://api.twitter.com/1.1/statuses/update.json?status=' + encodeURIComponent(tweet) + '&in_reply_to_status_id=' + id,
}

// POST request to tweet
request.post(request_options).then(function (body) {
console.log(body)
}).catch(function (body) {
console.log(body)
})

}

}

}