Compare commits

..

No commits in common. "redis" and "14e7d4e74e77ee92b55e5c117d7e17477b83ef8a" have entirely different histories.

2 changed files with 22 additions and 24 deletions

View File

@ -74,14 +74,14 @@ conf.registerGlobalValue(SnoParser, 'debug',
### ###
conf.registerGroup(SnoParser, 'redis') conf.registerGroup(SnoParser, 'redis')
conf.registerGlobalValue(SnoParser.redis, 'db1', conf.registerGlobalValue(SnoParser.redis, 'db1',
registry.Integer(1, registry.Integer('1',
""" """
Redis: Database number for counting of NICKNAMES. Redis: Database number for counting of NICKNAMES.
""" """
, private=True , private=True
)) ))
conf.registerGlobalValue(SnoParser.redis, 'db2', conf.registerGlobalValue(SnoParser.redis, 'db2',
registry.Integer(2, registry.Integer('2',
""" """
Redis: Database number for counting of IP ADDRESSES. Redis: Database number for counting of IP ADDRESSES.
""" """
@ -95,7 +95,7 @@ conf.registerGlobalValue(SnoParser.redis, 'host',
, private=True , private=True
)) ))
conf.registerGlobalValue(SnoParser.redis, 'port', conf.registerGlobalValue(SnoParser.redis, 'port',
registry.Integer(6379, registry.Integer('6379',
""" """
Redis: Port. Redis: Port.
""" """
@ -115,7 +115,7 @@ conf.registerGlobalValue(SnoParser.redis, 'password',
""" """
)) ))
conf.registerGlobalValue(SnoParser.redis, 'timeout', conf.registerGlobalValue(SnoParser.redis, 'timeout',
registry.Integer(5, registry.Integer('5',
""" """
Redis: Socket Timeout. The developer does not know what to recommend here, but `5` seems to yield good results. Redis: Socket Timeout. The developer does not know what to recommend here, but `5` seems to yield good results.
""" """
@ -141,7 +141,7 @@ conf.registerGlobalValue(SnoParser.whois, 'sample',
, private=True , private=True
)) ))
conf.registerGlobalValue(SnoParser.whois, 'ttl', conf.registerGlobalValue(SnoParser.whois, 'ttl',
registry.Integer(3600, registry.Integer('3600',
""" """
SnoParser: How long to cache WHOIS entries for. SnoParser: How long to cache WHOIS entries for.
""" """
@ -149,7 +149,7 @@ conf.registerGlobalValue(SnoParser.whois, 'ttl',
)) ))
conf.registerGroup(SnoParser.whois, 'redis') conf.registerGroup(SnoParser.whois, 'redis')
conf.registerGlobalValue(SnoParser.whois.redis, 'db', conf.registerGlobalValue(SnoParser.whois.redis, 'db',
registry.Integer(0, registry.Integer('0',
""" """
Redis: Database number for WHOIS query caching. Redis: Database number for WHOIS query caching.
""" """

View File

@ -243,10 +243,11 @@ class SnoParser(callbacks.Plugin):
ttl = self.redis_client_whois.ttl(ipaddress) ttl = self.redis_client_whois.ttl(ipaddress)
count = self.redis_client_ips.get(ipaddress) count = self.redis_client_ips.get(ipaddress)
decoded_count = count.decode('utf-8') decoded_count = count.decode('utf-8')
print('SnoParser manual query: ', data, ' ', ttl) print('SnoParser manual query: ', data, ' ', ttl)
irc.reply(f'{decoded_data} - Count: {decoded_count} - Remaining: {ttl}s') irc.reply(f'{decoded_data} - Count: {decoded_count} - Remaining: {ttl}s')
ipquery = wrap(ipquery, ['ip']) ipquery = wrap(ipquery, ['anything'])
def doNotice(self, irc, msg): def doNotice(self, irc, msg):
@ -358,15 +359,12 @@ class SnoParser(callbacks.Plugin):
self._sendSnotice(irc, msg, repl) self._sendSnotice(irc, msg, repl)
if 'OPER' in text and 'Client opered up' in text: if 'OPER' in text and 'Client opered up' in text:
operregex = "^-OPER- Client opered up \[(.*)\, \ (.*)\]$"
operregex = "^-OPER- Client opered up \[(.*)\]"
couple = re.match(operregex, text) couple = re.match(operregex, text)
hostmask = couple.group(1) account = couple.group(1)
oper = couple.group(2) DictFromSnotice = {'notice': 'oper'}
repl = f"\x02\x1FNOTICE:\x0F [{account}] opered up."
print(couple)
DictFromSnotice = {'notice': 'opered', 'hostmask': hostmask, 'oper': oper}
repl = f"\x02\x1FNOTICE:\x0F [{hostmask}] opered up as [{oper}]."
self._sendSnotice(irc, msg, repl) self._sendSnotice(irc, msg, repl)
@ -375,7 +373,7 @@ class SnoParser(callbacks.Plugin):
operregex = "^-OPER- Client deopered \[(.*)\]" operregex = "^-OPER- Client deopered \[(.*)\]"
couple = re.match(operregex, text) couple = re.match(operregex, text)
account = couple.group(1) account = couple.group(1)
DictFromSnotice = {'notice': 'deopered', 'name': account} DictFromSnotice = {'notice': 'oper'}
repl = f"\x02\x1FNOTICE:\x0F [{account}] opered down." repl = f"\x02\x1FNOTICE:\x0F [{account}] opered down."
self._sendSnotice(irc, msg, repl) self._sendSnotice(irc, msg, repl)