3
3
4
4
import praw
5
5
import prawcore
6
+ from markdowntable import Table as ta
6
7
from pokestarfansloggingsetup import setup_logger
7
8
8
9
from modules .login import reddit
9
- from modules .table import starter
10
10
11
11
logger = setup_logger ('duplicates' )
12
12
13
13
14
14
# noinspection PyBroadException
15
15
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](' \
18
20
'https://www.reddit.com/r/DuplicatesBot/comments/6ypgmx/bugs_and_problems/)-[Suggestions](' \
19
21
'https://www.reddit.com/r/DuplicatesBot/comments/6ypg85/suggestion_for_duplicatesbot/)-[Block ' \
20
22
'user (op only)' \
@@ -23,7 +25,7 @@ def generate_and_reply(submission):
23
25
'={user})-[Block from subreddit (mods only)](' \
24
26
'https://www.reddit.com/message/compose/?to=DuplicatesBotBlocker&subject=remove%20subreddit' \
25
27
'&message={sub})\n ' \
26
- ' \n ^^Now ^^ you ^^ can ^^ remove ^^ the ^^ comment ^^ by ^^ replying ^^ delete! ' .format (user =
28
+ ' \n Now you can remove the comment by replying delete! ' .format (user =
27
29
str (
28
30
submission .author ), sub = str (submission .subreddit ))
29
31
global message
@@ -36,7 +38,7 @@ def generate_and_reply(submission):
36
38
if str (submission .author ) == author :
37
39
author = author + ' [author of both threads]'
38
40
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 )])
40
42
if len (duplicates ) > 0 :
41
43
message = 'Here is a list of threads in other subreddits about the same content:\n '
42
44
for dup in duplicates :
@@ -45,28 +47,24 @@ def generate_and_reply(submission):
45
47
message += '\n ' + footer
46
48
try :
47
49
submission .reply (message )
48
- logger .info ('Message posted on {}' .format (sub_id ))
50
+ logger .info ('Message posted on {}' .format (str ( submission ) ))
49
51
logger .debug ('Message: {}' .format (message ))
50
- message = ''
51
- except praw .exceptions .APIException :
52
+ except (praw .exceptions .APIException , UnboundLocalError ):
52
53
logger .debug ('Submission {} has been skipped due to missing text.' .format (sub_id ))
53
- message = ''
54
54
except prawcore .exceptions .Forbidden :
55
55
logger .debug ('You are blocked on /r/{}' .format (str (submission .subreddit )))
56
- message = ''
57
56
except AssertionError :
58
57
logger .debug ('Assertion Error occured! Printing message and traceback.' )
59
58
logger .debug (message + str (len (message )), exc_info = True )
60
- message = ''
61
59
except (KeyboardInterrupt , SystemExit ):
62
60
raise
63
61
except Exception :
64
62
logger .error ('Error occurred!' , exc_info = True )
65
- message = ''
66
63
except :
67
64
logger .critical (
68
65
'Massive Error occurred! Not part of the Exception, KeyboardInterrupt or SystemExit exceptions. Fix ASAP.' ,
69
66
exc_info = True )
67
+ finally :
70
68
message = ''
71
69
72
70
0 commit comments