mirror of
https://github.com/ncoevoet/ChanTracker.git
synced 2025-04-29 06:51:09 -05:00
Merge branch 'master' of https://github.com/ncoevoet/ChanTracker
This commit is contained in:
commit
8ea6f2fc84
14
plugin.py
14
plugin.py
@ -53,6 +53,16 @@ ircutils._hostmaskPatternEqualCache = utils.structures.CacheDict(4000)
|
|||||||
|
|
||||||
cache = utils.structures.CacheDict(4000)
|
cache = utils.structures.CacheDict(4000)
|
||||||
|
|
||||||
|
def modes(channel, args=(), prefix='', msg=None):
|
||||||
|
"""Returns a MODE that applies changes on channel."""
|
||||||
|
if conf.supybot.protocols.irc.strictRfc():
|
||||||
|
assert isChannel(channel), repr(channel)
|
||||||
|
modes = args
|
||||||
|
if msg and not prefix:
|
||||||
|
prefix = msg.prefix
|
||||||
|
return IrcMsg(prefix=prefix, command='MODE',
|
||||||
|
args=[channel] + ircutils.joinModes(modes), msg=msg)
|
||||||
|
|
||||||
def matchHostmask (pattern,n):
|
def matchHostmask (pattern,n):
|
||||||
# return the machted pattern for Nick
|
# return the machted pattern for Nick
|
||||||
if n.prefix == None or not ircutils.isUserHostmask(n.prefix):
|
if n.prefix == None or not ircutils.isUserHostmask(n.prefix):
|
||||||
@ -1263,7 +1273,7 @@ class ChanTracker(callbacks.Plugin,plugins.ChannelDBHandler):
|
|||||||
itself. it bypass autoexpire and everything, bot will ask for OP, if needed.
|
itself. it bypass autoexpire and everything, bot will ask for OP, if needed.
|
||||||
"""
|
"""
|
||||||
def f(L):
|
def f(L):
|
||||||
return ircmsgs.modes(channel,L)
|
return modes(channel,L)
|
||||||
self._modes(irc.state.supported.get('modes', 1),self.getChan(irc,channel),ircutils.separateModes(modes),f)
|
self._modes(irc.state.supported.get('modes', 1),self.getChan(irc,channel),ircutils.separateModes(modes),f)
|
||||||
self.forceTickle = True
|
self.forceTickle = True
|
||||||
self._tickle(irc)
|
self._tickle(irc)
|
||||||
@ -1699,7 +1709,7 @@ class ChanTracker(callbacks.Plugin,plugins.ChannelDBHandler):
|
|||||||
while len(i.queue):
|
while len(i.queue):
|
||||||
irc.queueMsg(i.queue.dequeue())
|
irc.queueMsg(i.queue.dequeue())
|
||||||
def f(L):
|
def f(L):
|
||||||
return ircmsgs.modes(channel,L)
|
return modes(channel,L)
|
||||||
for channel in list(irc.state.channels.keys()):
|
for channel in list(irc.state.channels.keys()):
|
||||||
chan = self.getChan(irc,channel)
|
chan = self.getChan(irc,channel)
|
||||||
# check expired items
|
# check expired items
|
||||||
|
Loading…
x
Reference in New Issue
Block a user