Skip to content
This repository was archived by the owner on Apr 28, 2023. It is now read-only.

Commit c907186

Browse files
author
PokestarFan
committed
Finally done
1 parent c7ad323 commit c907186

File tree

3 files changed

+48
-39
lines changed

3 files changed

+48
-39
lines changed

delete.py

+25-22
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,33 @@
1-
import praw
2-
from modules.logger import setup_logger
3-
from modules.login import reddit
4-
from modules.footer import footer
51
import logging
62
import time
73

4+
from modules.logger import setup_logger
5+
from modules.login import reddit
6+
87
logger = setup_logger('user_removed_comments')
98

109

1110
def main():
12-
try:
13-
for item in reddit.inbox.stream():
14-
logger.debug('On item {}'.format(str(item)))
15-
try:
16-
if 'delete' in item.body.lower():
17-
item.parent().delete()
18-
logging.info('Comment {} removed'.format(str(item.parent())))
19-
item.author.message('Removal of comment {}'.format(str(item.parent())),'The top level post has been removed.')
20-
except:
21-
logging.debug('Item {} skipped'.format(str(item)))
22-
except(KeyboardInterrupt):
23-
raise KeyboardInterrupt
24-
except:
25-
logging.error('Error!', exc_info=True)
26-
main()
27-
11+
try:
12+
for item in reddit.inbox.stream():
13+
logger.debug('On item {}'.format(str(item)))
14+
try:
15+
if 'delete' in item.body.lower() and item.author == item.submission.author:
16+
item.parent().delete()
17+
logging.info('Comment {} removed'.format(str(item.parent())))
18+
item.author.message('Removal of comment {}'.format(str(item.parent())),
19+
'The top level post has been removed.')
20+
except AttributeError:
21+
pass
22+
except:
23+
logging.debug('Item {} skipped'.format(str(item)))
24+
except(KeyboardInterrupt):
25+
raise KeyboardInterrupt
26+
except:
27+
logging.error('Error!', exc_info=True)
28+
main()
29+
30+
2831
while True:
29-
main()
30-
time.sleep(30)
32+
main()
33+
time.sleep(30)

duplicate.py

+10-12
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,20 @@
33

44
import praw
55
import prawcore
6+
from markdowntable import Table as ta
67
from pokestarfansloggingsetup import setup_logger
78

89
from modules.login import reddit
9-
from modules.table import starter
1010

1111
logger = setup_logger('duplicates')
1212

1313

1414
# noinspection PyBroadException
1515
def generate_and_reply(submission):
16-
footer = '\n\n----\n\n ^^I ^^am ^^a ^^bot ^^[FAQ](https://www.reddit.com/r/DuplicatesBot/wiki/index)-[' \
17-
'Code](https://github.com/PokestarFan/DuplicateBot)-[Bugs](' \
16+
starter = ta('Title')
17+
starter.all_columns('Subreddit', 'Author', 'Time', 'Karma')
18+
footer = '\n\n----\n\n I am a bot [FAQ](https://www.reddit.com/r/DuplicatesBot/wiki/index)-[' \
19+
'Code](https://github.com/PokestarFan/DuplicateBot)-[Bugs](' \
1820
'https://www.reddit.com/r/DuplicatesBot/comments/6ypgmx/bugs_and_problems/)-[Suggestions](' \
1921
'https://www.reddit.com/r/DuplicatesBot/comments/6ypg85/suggestion_for_duplicatesbot/)-[Block ' \
2022
'user (op only)' \
@@ -23,7 +25,7 @@ def generate_and_reply(submission):
2325
'={user})-[Block from subreddit (mods only)](' \
2426
'https://www.reddit.com/message/compose/?to=DuplicatesBotBlocker&subject=remove%20subreddit' \
2527
'&message={sub})\n' \
26-
'\n^^Now ^^you ^^can ^^remove ^^the ^^comment ^^by ^^replying ^^delete! '.format(user=
28+
'\nNow you can remove the comment by replying delete! '.format(user=
2729
str(
2830
submission.author), sub=str(submission.subreddit))
2931
global message
@@ -36,7 +38,7 @@ def generate_and_reply(submission):
3638
if str(submission.author) == author:
3739
author = author + ' [author of both threads]'
3840
duplicates.append(['[{}]({})'.format(str(dup_sub.title), 'https://www.reddit.com' + str(dup_sub.permalink)),
39-
str(dup_sub.subreddit), author, str(time), str(dup_sub.score)])
41+
'/r/' + str(dup_sub.subreddit), author, str(time), str(dup_sub.score)])
4042
if len(duplicates) > 0:
4143
message = 'Here is a list of threads in other subreddits about the same content:\n'
4244
for dup in duplicates:
@@ -45,28 +47,24 @@ def generate_and_reply(submission):
4547
message += '\n' + footer
4648
try:
4749
submission.reply(message)
48-
logger.info('Message posted on {}'.format(sub_id))
50+
logger.info('Message posted on {}'.format(str(submission)))
4951
logger.debug('Message: {}'.format(message))
50-
message = ''
51-
except praw.exceptions.APIException:
52+
except(praw.exceptions.APIException, UnboundLocalError):
5253
logger.debug('Submission {} has been skipped due to missing text.'.format(sub_id))
53-
message = ''
5454
except prawcore.exceptions.Forbidden:
5555
logger.debug('You are blocked on /r/{}'.format(str(submission.subreddit)))
56-
message = ''
5756
except AssertionError:
5857
logger.debug('Assertion Error occured! Printing message and traceback.')
5958
logger.debug(message + str(len(message)), exc_info=True)
60-
message = ''
6159
except(KeyboardInterrupt, SystemExit):
6260
raise
6361
except Exception:
6462
logger.error('Error occurred!', exc_info=True)
65-
message = ''
6663
except:
6764
logger.critical(
6865
'Massive Error occurred! Not part of the Exception, KeyboardInterrupt or SystemExit exceptions. Fix ASAP.',
6966
exc_info=True)
67+
finally:
7068
message = ''
7169

7270

entriesadder.py

+13-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
import praw
2-
from pokestarfansloggingsetup import setup_logger
31
import logging
2+
3+
from pokestarfansloggingsetup import setup_logger
4+
45
from modules.entrylogin import reddit
56

67
logger = setup_logger('usersubblocker')
@@ -39,6 +40,13 @@ def strip_message(message):
3940

4041

4142
def check_for_messages(reddit):
42-
for message in reddit.inbox.unread(mark_read=True):
43-
strip_message(message)
44-
reddit.inbox.mark_read(message)
43+
try:
44+
for message in reddit.inbox.unread(mark_read=True):
45+
strip_message(message)
46+
reddit.inbox.mark_read(message)
47+
except Exception:
48+
logging.error('error!', exc_info=True)
49+
50+
51+
while True:
52+
check_for_messages(reddit)

0 commit comments

Comments
 (0)