3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-12-17 23:52:49 +01:00

automode: refactor to send only one MODE per channel (#275)

This commit is contained in:
James Lu 2016-07-12 21:53:15 -07:00
parent 80d7be8c7d
commit 76554dccd1

View File

@ -204,7 +204,7 @@ def save(irc, source, args):
reply(irc, 'Done.')
modebot.add_cmd(save)
def match(irc, channel, uid):
def match(irc, channel, uid=None):
"""
Automode matcher engine.
"""
@ -216,7 +216,12 @@ def match(irc, channel, uid):
# Check every mask defined in the channel ACL.
outgoing_modes = []
# If a UID is given, match that. Otherwise, match all users in the given channel.
uids = [uid] if uid else irc.channels[channel].users
for mask, modes in dbentry.items():
for uid in uids:
if irc.matchHost(mask, uid):
# User matched a mask. Filter the mode list given to only those that are valid
# prefix mode characters.
@ -245,8 +250,7 @@ def syncacc(irc, source, args):
reply(irc, "Error: Invalid arguments given. Needs 1: channel.")
return
for user in irc.channels[channel].users:
match(irc, channel, user)
match(irc, channel)
reply(irc, 'Done.')
@ -284,10 +288,8 @@ def handle_join(irc, source, command, args):
ACL.
"""
channel = irc.toLower(args['channel'])
match(irc, channel, source)
# Iterate over all the joining UIDs:
for uid in args['users']:
match(irc, channel, uid)
utils.add_hook(handle_join, 'JOIN')
utils.add_hook(handle_join, 'PYLINK_RELAY_JOIN') # Handle the relay version of join
utils.add_hook(handle_join, 'PYLINK_SERVICE_JOIN') # And the version for service bots