mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-27 05:09:23 +01:00
Added stripFormatting, to configure whether the outFilter will strip formatting first. Also added an elucidating comment.
This commit is contained in:
parent
69f71d1850
commit
d031997999
@ -103,12 +103,20 @@ conf.registerGlobalValue(conf.supybot.plugins.BadWords, 'replaceMethod',
|
|||||||
conf.registerGlobalValue(conf.supybot.plugins.BadWords,'simpleReplacement',
|
conf.registerGlobalValue(conf.supybot.plugins.BadWords,'simpleReplacement',
|
||||||
registry.String('[CENSORED]', """Determines what word will replace bad
|
registry.String('[CENSORED]', """Determines what word will replace bad
|
||||||
words if the replacement method is 'simple'."""))
|
words if the replacement method is 'simple'."""))
|
||||||
|
conf.registerGlobalValue(conf.supybot.plugins.BadWords, 'stripFormatting',
|
||||||
|
registry.Boolean(True, """Determines whether the bot will strip
|
||||||
|
formatting characters from messages before it checks them for bad words.
|
||||||
|
If this is False, it will be relatively trivial to circumvent this plugin's
|
||||||
|
filtering. If it's True, however, it will interact poorly with other
|
||||||
|
plugins that do coloring or bolding of text."""))
|
||||||
|
|
||||||
class BadWords(privmsgs.CapabilityCheckingPrivmsg):
|
class BadWords(privmsgs.CapabilityCheckingPrivmsg):
|
||||||
priority = 1
|
priority = 1
|
||||||
capability = 'admin'
|
capability = 'admin'
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
privmsgs.CapabilityCheckingPrivmsg.__init__(self)
|
privmsgs.CapabilityCheckingPrivmsg.__init__(self)
|
||||||
|
# This is so we can not filter certain outgoing messages (like list,
|
||||||
|
# which would be kinda useless if it were filtered).
|
||||||
self.filtering = True
|
self.filtering = True
|
||||||
self.lastModified = 0
|
self.lastModified = 0
|
||||||
self.words = conf.supybot.plugins.BadWords.words
|
self.words = conf.supybot.plugins.BadWords.words
|
||||||
@ -130,6 +138,7 @@ class BadWords(privmsgs.CapabilityCheckingPrivmsg):
|
|||||||
self.makeRegexp(self.words())
|
self.makeRegexp(self.words())
|
||||||
self.lastModified = time.time()
|
self.lastModified = time.time()
|
||||||
s = msg.args[1]
|
s = msg.args[1]
|
||||||
|
if self.registryValue('stripFormatting'):
|
||||||
s = ircutils.stripFormatting(s)
|
s = ircutils.stripFormatting(s)
|
||||||
s = self.regexp.sub(self.sub, s)
|
s = self.regexp.sub(self.sub, s)
|
||||||
msg = ircmsgs.privmsg(msg.args[0], s, msg=msg)
|
msg = ircmsgs.privmsg(msg.args[0], s, msg=msg)
|
||||||
|
Loading…
Reference in New Issue
Block a user