-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtwitterbot.py
139 lines (114 loc) · 4.33 KB
/
twitterbot.py
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import tweepy
import requests
import re
import threading
import logging
from requests.auth import HTTPBasicAuth
from ConfigParser import SafeConfigParser
script_dir = os.path.dirname(os.path.realpath(__file__))
logging_file = "/".join([script_dir, 'twitterbot.log'])
logger = logging.getLogger(__name__)
logger.setLevel(logging.INFO)
handler = logging.FileHandler(logging_file)
handler.setLevel(logging.INFO)
logger.addHandler(handler)
ini_file = "/".join([script_dir, 'twitterbot.ini'])
parser = SafeConfigParser()
parser.read(ini_file)
# Required keys/tokens to access Twitter and GitHub
CONSUMER_KEY = parser.get('twitter', 'consumer.key')
CONSUMER_SECRET = parser.get('twitter', 'consumer.secret')
ACCESS_KEY = parser.get('twitter', 'access.key')
ACCESS_SECRET = parser.get('twitter', 'access.secret')
GITHUB_TOKEN = parser.get('github', 'token')
USER_AGENT = parser.get('bot', 'user.agent')
ETAG = parser.get('bot', 'etag')
# Configuration info
word_boundary = "\\b"
allowed_phrases = []
avoid_phrases = []
last_message = ""
# Connect to Twitter
auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)
auth.set_access_token(ACCESS_KEY, ACCESS_SECRET)
api = tweepy.API(auth)
# GitHub Variables
git_io_url = "https://git.io"
events_url = "https://api.github.com/events"
headers = {
"User-Agent": USER_AGENT,
"ETag": ETAG
}
basicAuth = HTTPBasicAuth(GITHUB_TOKEN, "x-oauth-basic")
# Helper Methods
def get_commit_info(url):
r = requests.get(url, headers=headers, auth=basicAuth)
json = r.json()
message = json['commit']['message']
html_url = json['html_url']
tweet = {
"url": shorten_url(html_url),
"message": message
}
return tweet
def check_commit(message):
allowed_phrase_found = re.search("|".join(allowed_phrases), message, re.I | re.M)
avoid_phrase_found = re.search("|".join(avoid_phrases), message, re.I | re.M)
return len(message) < 125 and allowed_phrase_found and not avoid_phrase_found
def shorten_url(url):
shortener_url = "/".join([git_io_url, "create"])
form = {
"url": url
}
r = requests.post(shortener_url, data=form)
return "/".join([git_io_url, r.text])
def send_tweets(tweets):
global last_message
for tweet in tweets:
commit_message = tweet['message']
tweet_message = " ".join([commit_message, tweet['url']])
# Ideally this will become some sort of set of commit URLs (before shortening) and it can be
# stored in and read from a file
if last_message != commit_message:
last_message = commit_message
logger.info("Sending tweet " + tweet_message)
api.update_status(status=tweet_message)
# Look for commits
def poll():
logger.debug("Starting commit check thread.")
threading.Timer(5.0, poll).start()
logger.debug("Looking for commits...")
tweets = []
r = requests.get(events_url, headers=headers, auth=basicAuth)
# Find all push events
indices = [i for i, x in enumerate(r.json()) if x['type'] == "PushEvent"]
for i in indices:
# Read the commits in the push event
for commit in r.json()[i]['payload']['commits']:
message = commit['message']
# Check if the commit message meets the requirements
if check_commit(message):
# Generate tweet object
url = commit['url']
logger.debug("Found commit that meets criteria. URL: " + url)
logger.debug("Commit message: " + message)
tweet = get_commit_info(url)
tweets.append(tweet)
logger.debug("Sending out tweets.")
send_tweets(tweets)
# Load the allowed/avoid phrases every minute so the bot can be updated on the fly
def load_config():
global allowed_phrases
global avoid_phrases
threading.Timer(300.0, load_config).start()
logger.debug("Loading allowed.phrases and avoid.phrases properties")
parser.read('twitterbot.ini')
allowed_phrases_config = parser.get('bot', 'allowed.phrases').split(',')
avoid_phrases_config = parser.get('bot', 'avoid.phrases').split(',')
allowed_phrases = [word_boundary + phrase.strip() + word_boundary for phrase in allowed_phrases_config]
avoid_phrases = [word_boundary + phrase.strip() + word_boundary for phrase in avoid_phrases_config]
load_config()
poll()