2018-03-14 20:13:40 +00:00
|
|
|
import main
|
2018-02-23 22:05:40 +00:00
|
|
|
|
|
|
|
class Part:
|
|
|
|
def __init__(self, register):
|
|
|
|
register("part", self.part)
|
|
|
|
|
|
|
|
def part(self, addr, authed, data, obj, spl, success, failure, info, incUsage, length):
|
|
|
|
if authed:
|
|
|
|
if length == 3:
|
2018-03-14 20:13:40 +00:00
|
|
|
if not spl[1] in main.pool.keys():
|
2018-02-23 22:05:40 +00:00
|
|
|
failure("Name does not exist: %s" % spl[1])
|
|
|
|
return
|
2018-03-14 20:13:40 +00:00
|
|
|
if not spl[1] in main.IRCPool.keys():
|
2018-02-23 22:05:40 +00:00
|
|
|
failure("Name has no instance: %s" % spl[1])
|
|
|
|
return
|
2018-03-14 20:13:40 +00:00
|
|
|
main.IRCPool[spl[1]].part(spl[2])
|
2018-02-23 22:05:40 +00:00
|
|
|
success("Left %s" % spl[2])
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
incUsage("part")
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
incUsage(None)
|