mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-20 01:19:26 +01:00
Implement account-notify, extended-join and WHOX
Also integrate it with NickAuth. Closes #778.
This commit is contained in:
parent
0810bcadc7
commit
871607614a
@ -167,6 +167,66 @@ class NickAuth(callbacks.Plugin):
|
|||||||
else:
|
else:
|
||||||
irc.error(_('No user has this nick on this network.'))
|
irc.error(_('No user has this nick on this network.'))
|
||||||
|
|
||||||
|
def doAccount(self, irc, msg):
|
||||||
|
account = msg.args[0]
|
||||||
|
user = ircdb.users.getUserFromNick(irc.network, account)
|
||||||
|
|
||||||
|
if not user:
|
||||||
|
try:
|
||||||
|
user = ircdb.users.getUser(msg.prefix)
|
||||||
|
except KeyError:
|
||||||
|
user = None
|
||||||
|
|
||||||
|
if user:
|
||||||
|
if account == '*':
|
||||||
|
user.clearAuth()
|
||||||
|
else:
|
||||||
|
user.addAuth(msg.prefix)
|
||||||
|
ircdb.users.setUser(user, flush=False)
|
||||||
|
|
||||||
|
|
||||||
|
def doJoin(self, irc, msg):
|
||||||
|
# extended-join is not supported
|
||||||
|
if len(msg.args) < 2:
|
||||||
|
return
|
||||||
|
|
||||||
|
account = msg.args[1]
|
||||||
|
user = ircdb.users.getUserFromNick(irc.network, account)
|
||||||
|
|
||||||
|
if not user:
|
||||||
|
try:
|
||||||
|
user = ircdb.users.getUser(msg.prefix)
|
||||||
|
except KeyError:
|
||||||
|
user = None
|
||||||
|
|
||||||
|
if user:
|
||||||
|
if account == '*':
|
||||||
|
user.clearAuth()
|
||||||
|
else:
|
||||||
|
user.addAuth(msg.prefix)
|
||||||
|
ircdb.users.setUser(user, flush=False)
|
||||||
|
|
||||||
|
def do354(self, irc, msg):
|
||||||
|
(_, ident, host, nick, account) = msg.args
|
||||||
|
prefix = '%s!%s@%s' % (nick, ident, host)
|
||||||
|
user = ircdb.users.getUserFromNick(irc.network, account)
|
||||||
|
|
||||||
|
if not user:
|
||||||
|
try:
|
||||||
|
user = ircdb.users.getUser(prefix)
|
||||||
|
except KeyError:
|
||||||
|
user = None
|
||||||
|
|
||||||
|
if user:
|
||||||
|
#if account == '0':
|
||||||
|
# user.clearAuth()
|
||||||
|
#else:
|
||||||
|
# user.addAuth(prefix)
|
||||||
|
# ircdb.users.setUser(user, flush=False)
|
||||||
|
if account != '0':
|
||||||
|
user.addAuth(prefix)
|
||||||
|
ircdb.users.setUser(user, flush=False)
|
||||||
|
|
||||||
|
|
||||||
Class = NickAuth
|
Class = NickAuth
|
||||||
|
|
||||||
|
@ -481,9 +481,10 @@ class IrcState(IrcCommandDispatcher):
|
|||||||
else:
|
else:
|
||||||
self.supported[arg] = None
|
self.supported[arg] = None
|
||||||
|
|
||||||
def do352(self, irc, msg):
|
def do354(self, irc, msg):
|
||||||
# WHO reply.
|
# WHO reply.
|
||||||
(nick, user, host) = (msg.args[5], msg.args[2], msg.args[3])
|
|
||||||
|
(_, user, host, nick, __) = msg.args
|
||||||
hostmask = '%s!%s@%s' % (nick, user, host)
|
hostmask = '%s!%s@%s' % (nick, user, host)
|
||||||
self.nicksToHostmasks[nick] = hostmask
|
self.nicksToHostmasks[nick] = hostmask
|
||||||
|
|
||||||
@ -927,25 +928,39 @@ class Irc(IrcCommandDispatcher):
|
|||||||
if self.zombie:
|
if self.zombie:
|
||||||
self.driver.die()
|
self.driver.die()
|
||||||
self._reallyDie()
|
self._reallyDie()
|
||||||
else:
|
|
||||||
if self.sasl_password:
|
return
|
||||||
if not self.sasl_username:
|
|
||||||
log.warning('%s: SASL username is not set, unable to '
|
caps = ['account-notify', 'extended-join']
|
||||||
'identify.', self.network)
|
|
||||||
else:
|
if self.sasl_password:
|
||||||
log.debug("%s: Requesting capability 'sasl'.",
|
if not self.sasl_username:
|
||||||
self.network)
|
log.warning('%s: SASL username is not set, unable to '
|
||||||
self.queueMsg(ircmsgs.IrcMsg(command='CAP', args=('REQ', 'sasl')))
|
'identify.', self.network)
|
||||||
if self.password:
|
else:
|
||||||
log.info('%s: Queuing PASS command, not logging the password.',
|
caps.append('sasl')
|
||||||
self.network)
|
|
||||||
self.queueMsg(ircmsgs.password(self.password))
|
log.debug('%s: Requesting capabilities: %s',
|
||||||
log.debug('%s: Queuing NICK command, nick is %s.',
|
self.network, ' '.join(caps))
|
||||||
self.network, self.nick)
|
|
||||||
self.queueMsg(ircmsgs.nick(self.nick))
|
for cap in caps:
|
||||||
log.debug('%s: Queuing USER command, ident is %s, user is %s.',
|
self.queueMsg(ircmsgs.IrcMsg(command='CAP', args=('REQ', cap)))
|
||||||
self.network, self.ident, self.user)
|
|
||||||
self.queueMsg(ircmsgs.user(self.ident, self.user))
|
if self.password:
|
||||||
|
log.info('%s: Queuing PASS command, not logging the password.',
|
||||||
|
self.network)
|
||||||
|
|
||||||
|
self.queueMsg(ircmsgs.password(self.password))
|
||||||
|
|
||||||
|
log.debug('%s: Queuing NICK command, nick is %s.',
|
||||||
|
self.network, self.nick)
|
||||||
|
|
||||||
|
self.queueMsg(ircmsgs.nick(self.nick))
|
||||||
|
|
||||||
|
log.debug('%s: Queuing USER command, ident is %s, user is %s.',
|
||||||
|
self.network, self.ident, self.user)
|
||||||
|
|
||||||
|
self.queueMsg(ircmsgs.user(self.ident, self.user))
|
||||||
|
|
||||||
def doAuthenticate(self, msg):
|
def doAuthenticate(self, msg):
|
||||||
if msg.args[0] == '+':
|
if msg.args[0] == '+':
|
||||||
@ -960,16 +975,20 @@ class Irc(IrcCommandDispatcher):
|
|||||||
self.queueMsg(ircmsgs.IrcMsg(command='AUTHENTICATE', args=(authstring,)))
|
self.queueMsg(ircmsgs.IrcMsg(command='AUTHENTICATE', args=(authstring,)))
|
||||||
|
|
||||||
def doCap(self, msg):
|
def doCap(self, msg):
|
||||||
if msg.args[2] == 'sasl':
|
for cap in msg.args[2].split(' '):
|
||||||
if msg.args[1] == 'ACK':
|
if msg.args[1] == 'ACK':
|
||||||
log.debug("%s: Server acknowledged 'sasl' capability",
|
log.info('%s: Server acknowledged %r capability',
|
||||||
self.network)
|
self.network, cap)
|
||||||
self.queueMsg(ircmsgs.IrcMsg(command='AUTHENTICATE',
|
|
||||||
args=('PLAIN',)))
|
if cap == 'sasl':
|
||||||
|
self.queueMsg(ircmsgs.IrcMsg(command='AUTHENTICATE',
|
||||||
|
args=('PLAIN',)))
|
||||||
elif msg.args[1] == 'NAK':
|
elif msg.args[1] == 'NAK':
|
||||||
log.warning("%s: Server refused 'sasl' capability",
|
log.warning('%s: Server refused %r capability',
|
||||||
self.network)
|
self.network, cap)
|
||||||
self.queueMsg(ircmsgs.IrcMsg(command='CAP', args=('END',)))
|
|
||||||
|
if cap == 'sasl':
|
||||||
|
self.queueMsg(ircmsgs.IrcMsg(command='CAP', args=('END',)))
|
||||||
|
|
||||||
def do903(self, msg):
|
def do903(self, msg):
|
||||||
log.info('%s: SASL authentication successful', self.network)
|
log.info('%s: SASL authentication successful', self.network)
|
||||||
@ -1068,7 +1087,7 @@ class Irc(IrcCommandDispatcher):
|
|||||||
def doJoin(self, msg):
|
def doJoin(self, msg):
|
||||||
if msg.nick == self.nick:
|
if msg.nick == self.nick:
|
||||||
channel = msg.args[0]
|
channel = msg.args[0]
|
||||||
self.queueMsg(ircmsgs.who(channel)) # Ends with 315.
|
self.queueMsg(ircmsgs.who(channel, args=('%uhna',))) # Ends with 315.
|
||||||
self.queueMsg(ircmsgs.mode(channel)) # Ends with 329.
|
self.queueMsg(ircmsgs.mode(channel)) # Ends with 329.
|
||||||
for channel in msg.args[0].split(','):
|
for channel in msg.args[0].split(','):
|
||||||
self.queueMsg(ircmsgs.mode(channel, '+b'))
|
self.queueMsg(ircmsgs.mode(channel, '+b'))
|
||||||
|
@ -736,7 +736,7 @@ def user(ident, user, prefix='', msg=None):
|
|||||||
return IrcMsg(prefix=prefix, command='USER',
|
return IrcMsg(prefix=prefix, command='USER',
|
||||||
args=(ident, '0', '*', user), msg=msg)
|
args=(ident, '0', '*', user), msg=msg)
|
||||||
|
|
||||||
def who(hostmaskOrChannel, prefix='', msg=None):
|
def who(hostmaskOrChannel, prefix='', msg=None, args=()):
|
||||||
"""Returns a WHO for the hostmask or channel hostmaskOrChannel."""
|
"""Returns a WHO for the hostmask or channel hostmaskOrChannel."""
|
||||||
if conf.supybot.protocols.irc.strictRfc():
|
if conf.supybot.protocols.irc.strictRfc():
|
||||||
assert isChannel(hostmaskOrChannel) or \
|
assert isChannel(hostmaskOrChannel) or \
|
||||||
@ -744,7 +744,7 @@ def who(hostmaskOrChannel, prefix='', msg=None):
|
|||||||
if msg and not prefix:
|
if msg and not prefix:
|
||||||
prefix = msg.prefix
|
prefix = msg.prefix
|
||||||
return IrcMsg(prefix=prefix, command='WHO',
|
return IrcMsg(prefix=prefix, command='WHO',
|
||||||
args=(hostmaskOrChannel,), msg=msg)
|
args=(hostmaskOrChannel,) + args, msg=msg)
|
||||||
|
|
||||||
def _whois(COMMAND, nick, mask='', prefix='', msg=None):
|
def _whois(COMMAND, nick, mask='', prefix='', msg=None):
|
||||||
"""Returns a WHOIS for nick."""
|
"""Returns a WHOIS for nick."""
|
||||||
|
Loading…
Reference in New Issue
Block a user