3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-01 09:19:23 +01:00

inspircd: implement services account tracking (#25)

This commit is contained in:
James Lu 2016-02-20 17:54:46 -08:00
parent 0fff91edfd
commit cabdb11f86

View File

@ -675,4 +675,18 @@ class InspIRCdProtocol(TS6BaseProtocol):
log.debug("(%s) Got RSQUIT for '%s', which is either invalid or not "
"a server of ours!", self.irc.name, args[0])
def handle_metadata(self, numeric, command, args):
"""
Handles the METADATA command, used by servers to send metadata (services
login name, certfp data, etc.) for clients.
"""
uid = args[0]
if args[1] == 'accountname':
# <- :00A METADATA 1MLAAAJET accountname :
# <- :00A METADATA 1MLAAAJET accountname :tester
# Sets the services login name of the client.
self.irc.callHooks([uid, 'CLIENT_SERVICES_LOGIN', {'text': args[-1]}])
Class = InspIRCdProtocol