|
1 |
| -from datetime import datetime |
| 1 | +from modules.logger import setup_logger |
2 | 2 | import logging
|
| 3 | +from datetime import datetime |
3 | 4 | import praw
|
4 | 5 | import prawcore
|
5 |
| -import sys |
6 |
| -from login import reddit |
7 |
| - |
8 |
| - |
9 |
| -file_handler = logging.FileHandler(filename='duplicates_{}.log'.format(datetime.now().strftime('%m_%d_%y'))) |
10 |
| -stdout_handler = logging.StreamHandler(sys.stdout) |
11 |
| -handlers = [file_handler, stdout_handler] |
12 |
| - |
13 |
| -logging.basicConfig( |
14 |
| - level=logging.INFO, |
15 |
| - format='[%(asctime)s] {%(filename)s:%(lineno)d} %(levelname)s - %(message)s', |
16 |
| - handlers=handlers |
17 |
| -) |
| 6 | +from modules.login import reddit |
18 | 7 |
|
19 |
| -logger = logging.getLogger(__name__) |
| 8 | +logger = setup_logger('duplicates') |
20 | 9 |
|
21 | 10 | def action():
|
22 | 11 | for sub_id in reddit.subreddit('all').stream.submissions():
|
23 |
| - logging.debug('Starting submission {}'.format(sub_id)) |
24 |
| - blockeduser = 0 |
25 |
| - duplicates = [] |
26 |
| - submission = praw.models.Submission(reddit, id = sub_id) |
27 |
| - with open('blockusers.txt','r') as newfile: |
28 |
| - for line in newfile.readlines(): |
29 |
| - line = line.strip('\n') |
30 |
| - if str(submission.author) == line or 'bot' in str(submission.author).lower(): |
31 |
| - blockeduser = 1 |
32 |
| - logger.debug('User {}\'s submission {} was blocked from posting'.format(str(submission.author),str(sub_id))) |
33 |
| - else: |
34 |
| - pass |
35 |
| - if blockeduser == 0: |
36 |
| - for duplicate in submission.duplicates(): |
37 |
| - dup_sub = praw.models.Submission(reddit, id = duplicate) |
38 |
| - if 'imagesof' not in str(dup_sub.subreddit).lower() and 'auto' not in str(dup_sub.subreddit).lower() and 'bot' not in str(dup_sub.author).lower(): |
39 |
| - time = dup_sub.created |
40 |
| - time = str(datetime.fromtimestamp(time)) |
41 |
| - author = str(dup_sub.author) |
42 |
| - if str(submission.author) == author: |
43 |
| - author = author + '[author of both threads]' |
44 |
| - duplicates.append({'title':str(dup_sub.title), 'subreddit':str(dup_sub.subreddit), 'link':'https://www.reddit.com'+str(dup_sub.permalink), 'time':str(time), 'author':author, 'karma': str(dup_sub.score)}) |
45 |
| - if len(duplicates) > 0: |
46 |
| - message = 'Here is a list of threads in other subreddits about the same content:\n' |
47 |
| - for dup in duplicates: |
48 |
| - message = str(message + '\n * [{}]({}) on /r/{} with {} karma (created at {} by {})').format(dup['title'], dup['link'], dup['subreddit'], dup['karma'],dup['time'], dup['author']) |
49 |
| - message = message + '\n\n ---- \n\n ^^I ^^am ^^a ^^bot ^^[FAQ](https://www.reddit.com/r/DuplicatesBot/wiki/index)-[Code](https://github.com/PokestarFan/DuplicateBot)-[Bugs](https://www.reddit.com/r/DuplicatesBot/comments/6ypgmx/bugs_and_problems/)-[Suggestions](https://www.reddit.com/r/DuplicatesBot/comments/6ypg85/suggestion_for_duplicatesbot/)-[Block](https://www.reddit.com/r/DuplicatesBot/wiki/index#wiki_block_bot_from_tagging_on_your_posts)' |
50 |
| - try: |
51 |
| - submission.reply(message) |
52 |
| - logger.info('Message posted on {}'.format(sub_id)) |
53 |
| - logger.debug('Message: {}'.format(message)) |
54 |
| - message = '' |
55 |
| - except(praw.exceptions.APIException, UnboundLocalError)as e: |
56 |
| - logger.info('Submission {} has been skipped due to missing text'.format(sub_id)) |
| 12 | + try: |
| 13 | + logging.debug('Starting submission {}'.format(sub_id)) |
| 14 | + blockeduser = 0 |
| 15 | + duplicates = [] |
| 16 | + submission = praw.models.Submission(reddit, id = sub_id) |
| 17 | + with open('blockusers.txt','r') as newfile: |
| 18 | + for line in newfile.readlines(): |
| 19 | + line = line.strip('\n') |
| 20 | + if str(submission.author) == line or 'bot' in str(submission.author).lower(): |
| 21 | + blockeduser = 1 |
| 22 | + logger.debug('User {}\'s submission {} was blocked from posting'.format(str(submission.author),str(sub_id))) |
| 23 | + else: |
| 24 | + pass |
| 25 | + if blockeduser == 0: |
| 26 | + for duplicate in submission.duplicates(): |
| 27 | + dup_sub = praw.models.Submission(reddit, id = duplicate) |
| 28 | + if 'imagesof' not in str(dup_sub.subreddit).lower() and 'auto' not in str(dup_sub.subreddit).lower() and 'bot' not in str(dup_sub.author).lower() and 'mistyfront' not in str(dup_sub.subreddit).lower() and 'unitedfederation' not in str(dup_sub.subreddit).lower(): |
| 29 | + time = dup_sub.created |
| 30 | + time = str(datetime.fromtimestamp(time)) |
| 31 | + author = str(dup_sub.author) |
| 32 | + if str(submission.author) == author: |
| 33 | + author = author + '[author of both threads]' |
| 34 | + duplicates.append({'title':str(dup_sub.title), 'subreddit':str(dup_sub.subreddit), 'link':'https://www.reddit.com'+str(dup_sub.permalink), 'time':str(time), 'author':author, 'karma': str(dup_sub.score)}) |
| 35 | + if len(duplicates) > 0: |
| 36 | + message = 'Here is a list of threads in other subreddits about the same content:\n' |
| 37 | + for dup in duplicates: |
| 38 | + message = str(message + '\n * [{}]({}) on /r/{} with {} karma (created at {} by {})').format(dup['title'], dup['link'], dup['subreddit'], dup['karma'],dup['time'], dup['author']) |
| 39 | + message = message + '\n\n ---- \n\n ^^I ^^am ^^a ^^bot ^^[FAQ](https://www.reddit.com/r/DuplicatesBot/wiki/index)-[Code](https://github.com/PokestarFan/DuplicateBot)-[Bugs](https://www.reddit.com/r/DuplicatesBot/comments/6ypgmx/bugs_and_problems/)-[Suggestions](https://www.reddit.com/r/DuplicatesBot/comments/6ypg85/suggestion_for_duplicatesbot/)-[Block](https://www.reddit.com/r/DuplicatesBot/wiki/index#wiki_block_bot_from_tagging_on_your_posts)' |
57 | 40 | try:
|
| 41 | + submission.reply(message) |
| 42 | + logger.info('Message posted on {}'.format(sub_id)) |
58 | 43 | logger.debug('Message: {}'.format(message))
|
| 44 | + message = '' |
| 45 | + except(praw.exceptions.APIException, UnboundLocalError)as e: |
| 46 | + logger.debug('Submission {} has been skipped due to missing text'.format(sub_id)) |
| 47 | + message = '' |
| 48 | + except(prawcore.exceptions.Forbidden): |
| 49 | + logger.debug('You are blocked on /r/{}'.format(str(submission.subreddit))) |
| 50 | + message = '' |
| 51 | + except(AssertionError): |
| 52 | + logger.debug('Assertion Error occured! Printing message and traceback.') |
| 53 | + logger.debug(message + str(len(message)), exc_info=True) |
| 54 | + message = '' |
| 55 | + except(KeyboardInterrupt): |
| 56 | + raise KeyboardInterrupt |
59 | 57 | except:
|
60 |
| - logger.debug('Message output for exception ') |
61 |
| - message = '' |
62 |
| - except(prawcore.exceptions.Forbidden): |
63 |
| - logger.info('You are blocked on /r/{}'.format(str(submission.subreddit))) |
64 |
| - message = '' |
65 |
| - except: |
66 |
| - logger.error('Error occured!', exc_info=True) |
67 |
| - message = '' |
| 58 | + logger.error('Error occured!', exc_info=True) |
| 59 | + message = '' |
| 60 | + except(KeyboardInterrupt): |
| 61 | + raise KeyboardInterrupt |
| 62 | + except: |
| 63 | + logger.error('Error on submission {} occured.'.format(str(sub_id)), exc_info=True) |
| 64 | + |
68 | 65 |
|
69 | 66 |
|
70 | 67 | if __name__ == '__main__':
|
|
0 commit comments