forked from molly/SubstitutionBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubstitutionbot.py
191 lines (168 loc) · 5.92 KB
/
substitutionbot.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
# Copyright (c) 2014 Molly White
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
import os
import re
import HTMLParser
import json
import tweepy
import urllib2
from offensive import offensive
from secrets import *
from time import gmtime, strftime
__location__ = os.path.realpath(
os.path.join(os.getcwd(), os.path.dirname(__file__)))
substitutions = {
"witnesses": "these dudes I know",
"witness": "this dude I know",
"allegedly": "kinda probably",
"alleged": "kinda probably",
"new study": "Tumblr post",
"new studies": "Tumblr posts",
"rebuild": "avenge",
"rebuilds": "avenges",
"rebuilding": "avenging",
"space": "spaaace",
"google glass": "Virtual Boy",
"google glasses": "Virtual Boys",
"smartphone": "Pokedex",
"phone": "Pokedex",
"cellphone": "Pokedex",
"smartphones": "Pokedexes",
"cellphones": "Pokedex",
"phones": "Pokedex",
"electric": "atomic",
"electrical": "atomic",
"electronic": "atomic",
"senator": "Elf-Lord",
"senators": "Elf-Lords",
"car": "cat",
"cars": "cats",
"election": "eating contest",
"elections": "eating contest",
"congressional leaders": "river spirits",
"congressional leader": "river spirit",
"homeland security": "Homestar Runner",
"could not be reached for comment": "is guilty and everyone knows it",
"ice": "floor water",
"glove": "hand-coat",
"gloves": "hand-coats",
"sun": "spacelight",
"bird": "flappy plane",
"birds": "flappy planes",
"tweet": "beep",
"tweets": "beeps",
"tweeting": "beeping",
"tree": "stick tower",
"trees": "stick towers",
"basketball": "shootyhoops",
"NBA": "shootyhoops",
"gun": "point-and-shooty",
"guns": "point-and-shooties",
"automatic weapon": "automatic liberty machine",
"automatic weapons": "automatic liberty machines",
"automatic rifle": "automatic liberty machine",
"automatic rifles": "automatic liberty machines",
"semi-automatic weapon": "taste of liberty",
"semi-automatic weapons": "tastes of liberty",
"Ron Paul": "Uncle Liberty",
"Rand Paul": "Cousin Liberty",
"robot": "smashy-mashy walk-and-crashy",
"robots": "smashy-mashy walk-and-crashies",
"force": "horse",
"forces": "horses"
}
hparser = HTMLParser.HTMLParser()
def get():
# Get the headlines, iterate through them to try to find a suitable one
page = 1
while page <= 3:
try:
request = urllib2.Request(
"http://content.guardianapis.com/search?format=json&page-size=50&page=" +
str(page) + "&api-key=" + GUARDIAN_KEY)
response = urllib2.urlopen(request)
except urllib2.URLError as e:
print e.reason
else:
blob = json.load(response)
results = blob["response"]["results"]
for item in results:
headline = item["webTitle"]
# Skip anything too offensive
if not tact(headline):
continue
# Remove attribution string
if "|" in headline:
headline = headline.split("|")[:-1]
headline = ' '.join(headline).strip()
if process(headline.split()):
return
else:
page += 1
# Log that no tweet could be made
f = open(os.path.join(__location__, "substitutionbot.log"), 'a')
t = strftime("%d %b %Y %H:%M:%S", gmtime())
f.write("\n" + t + " No possible tweet.")
f.close()
def process(headline):
# Do the substitution
replacement = False
for key in substitutions.keys():
for index, word in enumerate(headline):
if word.lower() == key:
headline[index] = substitutions[key]
replacement = True
if not replacement:
return False
headline = " ".join(headline)
headline = hparser.unescape(headline)
# Don't tweet anything that's too long
if len(headline) > 140:
return False
# Don't tweet a headline we've tweeted before
f = open(os.path.join(__location__, "substitutionbot.log"), 'r')
log = f.read()
f.close()
if headline in log:
return False
# All systems go!
return tweet(headline)
def tweet(headline):
# Actually Tweet this thing!
auth = tweepy.OAuthHandler(C_KEY, C_SECRET)
auth.set_access_token(A_TOKEN, A_TOKEN_SECRET)
api = tweepy.API(auth)
tweets = api.user_timeline('CyberPrefixer')
# Log tweet to file
f = open(os.path.join(__location__, "substitutionbot.log"), 'a')
t = strftime("%d %b %Y %H:%M:%S", gmtime())
f.write("\n" + t + " " + headline)
f.close()
# Post tweet
api.update_status(headline)
return True
def tact(headline):
# Avoid producing particularly tactless tweets
if re.search(offensive, headline) is None:
return True
else:
return False
if __name__ == "__main__":
get()