forked from nathaniel-ortiz/redditswapbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflair.py
executable file
·268 lines (231 loc) · 10.7 KB
/
flair.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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
#!/usr/bin/env python2
import sys, os
import re
import ast
import praw
import sqlite3
import datetime
from ConfigParser import SafeConfigParser
from datetime import datetime, timedelta
from time import sleep, time
from log_conf import LoggerManager
import argparse
# determine curr or prev month
parser = argparse.ArgumentParser(description="Process flairs")
parser.add_argument("-m", action="store", dest="month", default="curr", help="curr or prev month? (default: curr)")
results = parser.parse_args()
conf_link_id = 'link_id'
if results.month == "prev":
conf_link_id = 'prevlink_id'
# load config file
containing_dir = os.path.abspath(os.path.dirname(sys.argv[0]))
cfg_file = SafeConfigParser()
path_to_cfg = os.path.join(containing_dir, 'config.cfg')
cfg_file.read(path_to_cfg)
username = cfg_file.get('reddit', 'username')
password = cfg_file.get('reddit', 'password')
app_key = cfg_file.get('reddit', 'app_key')
app_secret = cfg_file.get('reddit', 'app_secret')
subreddit = cfg_file.get('reddit', 'subreddit')
link_id = cfg_file.get('trade', conf_link_id)
equal_warning = cfg_file.get('trade', 'equal')
age_warning = cfg_file.get('trade', 'age')
karma_warning = cfg_file.get('trade', 'karma')
dev_warning = cfg_file.get('trade', 'dev')
reply = cfg_file.get('trade', 'reply')
age_check = cfg_file.getint('trade', 'age_check')
karma_check = cfg_file.getint('trade', 'karma_check')
flair_db = cfg_file.get('trade', 'flair_db')
flair_dev = cfg_file.getint('trade', 'flair_dev')
notrade_flairclass = ast.literal_eval(cfg_file.get('trade', 'notrade_flairclass'))
# Configure logging
logger = LoggerManager().getLogger(__name__)
def main():
def conditions():
if not hasattr(comment.author, 'name'):
return False
if 'confirm' not in comment.body.lower():
return False
if comment.author.name == username:
return False
if comment.is_root is True:
return False
if comment.banned_by:
return False
return True
def check_self_reply(comment, parent):
if comment.author.name == parent.author.name:
if equal_warning:
comment.reply(equal_warning)
comment.report('Flair: Self Reply')
parent.report('Flair: Self Reply')
save()
return False
return True
def verify(item):
karma = item.author.link_karma + item.author.comment_karma
age = (datetime.utcnow() - datetime.utcfromtimestamp(item.author.created_utc)).days
curs.execute('''SELECT * FROM flair WHERE username=?''', (item.author.name,))
row = curs.fetchone()
if row is not None:
if not item.author_flair_css_class:
item.author_flair_css_class = 0
if not row['flair_css_class']:
db_flair_css_class = 0
if item.author_flair_css_class in notrade_flairclass:
return True
if (int(item.author_flair_css_class or 0) > (int(row['flair_css_class'] or 0) + int(flair_dev))) or (int(item.author_flair_css_class or 0) < (int(row['flair_css_class'] or 0) - int(flair_dev))):
logger.info('Rechecking deviation: ' + item.author.name)
second_chance = next(r.subreddit(subreddit).flair(item.author.name))
if second_chance['flair_css_class'] == item.author_flair_css_class:
item.report('Flair: Deviation between DB and Reddit')
if dev_warning:
item.reply(dev_warning)
r.subreddit(subreddit).message('Flair Devation Detected', 'User: /u/' + item.author.name + '\n\nDB: ' + str(row['flair_css_class']) + '\n\nReddit: ' + str(item.author_flair_css_class))
logger.info('Flair Deviation - User: ' + item.author.name + ', DB: ' + str(row['flair_css_class']) + ', Reddit: ' + str(item.author_flair_css_class))
save()
return True
if item.author_flair_css_class < 1:
if age < age_check:
item.report('Flair: Account Age')
if age_warning:
item.reply(age_warning)
save()
return False
if karma < karma_check:
item.report('Flair: Account Karma')
if karma_warning:
item.reply(karma_warning)
save()
return False
return True
def values(item):
if not item.author_flair_css_class:
logger.info('Rechecking empty flair: ' + item.author.name)
second_chance = next(r.subreddit(subreddit).flair(item.author.name))
if second_chance['flair_css_class'] == item.author_flair_css_class:
item.author_flair_css_class = '1'
else:
item.author_flair_css_class = str(int(item.author_flair_css_class or 0) + 1)
elif (item.author_flair_css_class and (item.author_flair_css_class in notrade_flairclass)):
pass
else:
item.author_flair_css_class = str(int(item.author_flair_css_class) + 1)
if not item.author_flair_text:
item.author_flair_text = ''
def flair(item):
if item.author_flair_css_class not in notrade_flairclass:
# Set flair in subreddit
r.subreddit(subreddit).flair.set(item.author, item.author_flair_text, item.author_flair_css_class)
logger.info('Set ' + item.author.name + '\'s flair to ' + item.author_flair_css_class)
# Set flair in database
curs.execute('''UPDATE OR IGNORE flair SET flair_text=?, flair_css_class=? WHERE username=?''', (item.author_flair_text, item.author_flair_css_class, item.author.name, ))
curs.execute('''INSERT OR IGNORE INTO flair (username, flair_text, flair_css_class) VALUES (?, ?, ?)''', (item.author.name, item.author_flair_text, item.author_flair_css_class, ))
con.commit()
for com in flat_comments:
if hasattr(com.author, 'name'):
if com.author.name == item.author.name:
com.author_flair_css_class = item.author_flair_css_class
def save():
with open(link_id + ".log", 'a') as myfile:
myfile.write('%s\n' % comment.id)
try:
# Load old comments
with open(link_id + ".log", 'a+') as myfile:
completed = myfile.read()
try:
con = sqlite3.connect(flair_db)
con.row_factory = sqlite3.Row
except sqlite3.Error, e:
logger.exception("Error %s:" % e.args[0])
curs = con.cursor()
# Log in
logger.debug('Logging in as /u/' + username)
r = praw.Reddit(client_id=app_key,
client_secret=app_secret,
username=username,
password=password,
user_agent=username)
mods = r.subreddit(subreddit).moderator()
# Get the submission and the comments
logger.info('Starting to grab comments')
submission = r.submission(id=link_id)
submission.comments.replace_more(limit=None, threshold=0)
flat_comments = submission.comments.list()
logger.info('Finished grabbing comments')
for comment in flat_comments:
if not hasattr(comment, 'author'):
continue
if comment.id in completed:
continue
if not conditions():
continue
parent = [com for com in flat_comments if com.fullname == comment.parent_id][0]
if not hasattr(parent.author, 'link_karma'):
continue
if not check_self_reply(comment, parent):
continue
if not comment.author.name.lower() in parent.body.lower():
continue
# Check Account Age, Karma, and Flair Deviation
logger.debug('Verifying comment id: ' + comment.id + ' and parent id: ' + parent.id)
if not verify(comment):
continue
if not verify(parent):
continue
# Get Future Values to Flair
values(comment)
values(parent)
# Flairs up in here
flair(comment)
flair(parent)
if reply:
comment.reply(reply)
save()
for msg in r.inbox.unread(limit=None):
if not msg.was_comment:
if msg.author in mods:
logger.info('Processing PM from mod: ' + msg.author.name)
mod_link = re.search('^(https?:\/\/(?:www\.)?reddit\.com\/r\/.*\/comments\/.{6}\/.*\/.{7}\/)$', msg.body)
if not mod_link:
msg.reply('You have submitted an invalid URL')
msg.mark_as_read()
continue
else:
match = re.search(r'[^/]+(?=\/$|$)', msg.body)
check_id = match.group(0)
tocheck = r.comment(id=check_id).refresh()
flat_comments = tocheck.replies.list()
for comment in flat_comments:
if not hasattr(comment, 'author'):
continue
if comment.mod_reports:
comment.mod.approve()
if comment.author.name == username:
comment.mod.remove()
continue
if parent.mod_reports:
parent.mod.approve()
parent = tocheck
logger.info('Mod - Verifying comment id: ' + comment.id + ' and parent id: ' + parent.id)
if not conditions():
continue
if not hasattr(parent.author, 'link_karma'):
continue
values(comment)
values(parent)
flair(comment)
flair(parent)
if reply:
comment.reply(reply)
msg.reply('Trade flair added for ' + comment.author.name + ' and ' + parent.author.name)
msg.mark_read()
else:
logger.info('Processing PM from user: ' + msg.author.name)
msg.reply('[BEEP BOOP! I AM A BOT!](http://i.imgur.com/9dJ2quO.gif)')
msg.mark_read()
con.close()
except Exception as e:
logger.error(e)
if __name__ == '__main__':
main()