-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRule.py
405 lines (232 loc) · 11 KB
/
Rule.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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
import DatabaseManager
import RedditManagerUtils
import RulesManager
def less(value_one, value_two):
return value_one < value_two
def less_equal(value_one, value_two):
return value_one <= value_two
def equal(value_one, value_two):
return value_one == value_two
def greater_equal(value_one, value_two):
return value_one >= value_two
def greater(value_one, value_two):
return value_one > value_two
def not_equal(value_one, value_two):
return value_one != value_two
conditions = dict([('less', less),
('less_equal', less_equal),
('equal', equal),
('greater_equal', greater_equal),
('greater', greater),
('not_equal', not_equal)])
class Input():
def __init__(self, context=None):
self.context = context
pass
def evaluate(self):
return False
class ValuedInput(Input):
def __init__(self, range=None, value=None, condition=None, occurrences=None, context=None):
super().__init__(context)
# Tuple range
self.range = range
# Integer value
self.value = value
# The condition in which to activate
self.condition = condition
# How many times does the condition need to occur to activate?
if occurrences is None:
self.occurrences = 1
else:
self.occurrences = occurrences
def init_with_dict(self, dict):
if 'value' in dict:
self.value = dict['value']
if 'context' in dict:
self.context = dict['context']
if 'condition' in dict:
self.condition = dict['condition']
if 'occurances' in dict:
self.occurrences = dict['occurances']
if 'range' in dict and isinstance(dict['range'], list) and len(dict['range']) == 2:
list_range = dict['range']
self.range = (list_range[0],list_range[1])
# TODO: Finish
def evaluate(self, value=None, value_list=None):
final_list = []
if value is not None:
final_list.append(value)
if value_list is not None:
final_list.extend(value_list)
count = 0
for cur_value in final_list:
if self.range is not None:
if cur_value in range(self.range[0],self.range[1]):
count += 1
elif conditions[self.condition](cur_value, self.value):
count += 1
if count >= self.occurrences:
return True
return False
class BooleanInput(Input):
def __init__(self, value=None, context = None):
super().__init__(context)
self.value = value
def init_with_dict(self, dict):
if 'value' in dict:
self.value = dict['value']
if 'context' in dict:
self.context = dict['context']
def evaluate(self, eval_value=None):
return eval_value == self.value
class maximum_all_rank(ValuedInput):
def __init__(self, range=None, value=None, condition=None, occurrences=None, context=None):
super().__init__(range, value, condition, occurrences, context)
def evaluate(self, eval_post=None, eval_user=None):
if eval_post is not None:
return super().evaluate(value=eval_post.max_all_rank)
elif eval_user is not None:
post_list = DatabaseManager.DatabaseManager.get_all_user_posts(eval_user.username)
value_list = []
for a_post in post_list:
if a_post.max_all_rank is not None and a_post.subreddit == self.context:
value_list.append(a_post.max_all_rank)
return super().evaluate(value_list=value_list)
class maximum_sub_rank(ValuedInput):
def __init__(self, range=None, value=None, condition=None, occurrences=None, context=None):
super().__init__(range, value, condition, occurrences, context)
def evaluate(self, eval_post=None, eval_user=None):
if eval_post is not None:
return super().evaluate(value=eval_post.max_sub_rank)
elif eval_user is not None:
post_list = DatabaseManager.DatabaseManager.get_all_user_posts(eval_user.username)
value_list = []
for a_post in post_list:
if a_post.max_sub_rank is not None and a_post.subreddit == self.context:
value_list.append(a_post.max_sub_rank)
return super().evaluate(value_list=value_list)
class link_score(ValuedInput):
def __init__(self, range=None, value=None, condition=None, occurrences=None, context=None):
super().__init__(range, value, condition, occurrences, context)
def evaluate(self, eval_post=None, eval_user=None):
if eval_post is not None:
return super().evaluate(value=eval_post.post_karma)
elif eval_user is not None:
post_list = DatabaseManager.DatabaseManager.get_all_user_posts(eval_user.username)
value_list = []
for a_post in post_list:
if a_post.post_karma is not None and a_post.subreddit == self.context:
value_list.append(a_post.post_karma)
return super().evaluate(value_list=value_list)
class comment_score(ValuedInput):
def __init__(self, range=None, value=None, condition=None, occurrences=None, context=None):
super().__init__(range, value, condition, occurrences, context)
def evaluate(self, eval_comment=None, eval_user=None):
if eval_comment is not None:
return super().evaluate(value=eval_comment.post_karma)
elif eval_user is not None:
comment_list = DatabaseManager.DatabaseManager.get_all_user_comments(eval_user.username)
value_list = []
for a_comment in comment_list:
if a_comment.comment_karma is not None and a_comment.subreddit == self.context:
value_list.append(a_comment.comment_karma)
return super().evaluate(value_list=value_list)
class total_link_score(ValuedInput):
def __init__(self, range=None, value=None, condition=None, occurrences=None, context=None):
super().__init__(range, value, condition, occurrences, context)
def evaluate(self, eval_post=None, eval_user=None):
if eval_post is not None:
# TODO: This shouldn't be used for posts. But what-if it is?
return super().evaluate(value=eval_post.post_karma)
elif eval_user is not None:
post_score = DatabaseManager.DatabaseManager.get_user_post_score(eval_user.username, self.context)
return super().evaluate(value=post_score)
class total_comment_score(ValuedInput):
def __init__(self, range=None, value=None, condition=None, occurrences=None, context=None):
super().__init__(range, value, condition, occurrences, context)
def evaluate(self, eval_post=None, eval_user=None):
if eval_post is not None:
# TODO: lol wut
pass
elif eval_user is not None:
comment_score = DatabaseManager.DatabaseManager.get_user_comment_score(eval_user.username, self.context)
return super().evaluate(value=comment_score)
class banned(BooleanInput):
def __init__(self, value=None, context=None):
super().__init__(value, context)
def evaluate(self, eval_post=None, eval_user=None):
if eval_post is not None:
return super().evaluate(
eval_value=DatabaseManager.DatabaseManager.is_banned(username=eval_post.username, subreddit=self.context)
)
elif eval_user is not None:
return super().evaluate(
eval_value=DatabaseManager.DatabaseManager.is_banned(username=eval_user.username, subreddit=self.context)
)
return False
class moderator(BooleanInput):
def __init__(self, value=None, context=None):
super().__init__(value, context)
def evaluate(self, eval_post=None, eval_user=None):
if eval_post is not None:
return super().evaluate(
eval_value=DatabaseManager.DatabaseManager.is_moderator(eval_post.username, self.context))
elif eval_user is not None:
return super().evaluate(
eval_value=DatabaseManager.DatabaseManager.is_moderator(eval_user.username, self.context))
return False
class Output():
def __init__(self, context):
self.context = context
pass
def perform_action(self):
pass
class ban(Output):
def __init__(self, value=None, length=None, context=None):
super().__init__(context)
self.value = value
self.length = length
def perform_action(self, eval_post=None, eval_user=None):
pass
class flair(Output):
def __init__(self, managed=None, user_text=None, user_class=None,
submission_text=None, submission_class=None,
context=None):
super().__init__(context)
self.managed = managed
self.user_text = user_text
self.user_class = user_class
self.submission_text = submission_text
self.submission_class = submission_class
def init_with_dict(self, dict):
try:
if 'managed' in dict:
self.managed = bool(dict['managed'])
if 'user_text' in dict:
self.user_text = dict['user_text']
if 'user_class' in dict:
self.user_class = dict['user_class']
if 'submission_text' in dict:
self.submission_text = dict['submission_text']
if 'submission_class' in dict:
self.submission_class = dict['submission_class']
except Exception as e:
print(e)
def perform_action(self, eval_post=None, eval_user=None):
if self.managed is not None and not self.managed:
return # Don't do anything to this flair.
if eval_post is not None:
RedditManagerUtils.RedditManager.give_post_flair(post_id=eval_post.post_id,
flair_text=self.submission_text,
flair_class=self.submission_class)
if self.user_text is not None:
# TODO: Also needs to update the user's flair if the user flair params are set.
pass
pass
elif eval_user is not None:
#RedditManager.RedditManager.give_user_flair(eval_user.username, self.context, self.user_text, self.user_class)
RulesManager.RulesManager.add_to_batch_flair(RedditManagerUtils.user_flair_struct(username=eval_user.username,
subreddit=self.context,
flair_text=self.user_text,
flair_class=self.user_class))
pass