2018-03-14 20:13:40 +00:00
|
|
|
import main
|
2018-02-23 22:05:40 +00:00
|
|
|
|
2022-07-21 12:39:41 +00:00
|
|
|
|
2019-08-09 22:06:34 +00:00
|
|
|
class PartCommand:
|
2019-01-26 18:58:21 +00:00
|
|
|
def __init__(self, *args):
|
|
|
|
self.part(*args)
|
2018-02-23 22:05:40 +00:00
|
|
|
|
2022-09-05 06:20:30 +00:00
|
|
|
def part(
|
|
|
|
self, addr, authed, data, obj, spl, success, failure, info, incUsage, length
|
|
|
|
):
|
2018-02-23 22:05:40 +00:00
|
|
|
if authed:
|
2019-08-11 20:58:14 +00:00
|
|
|
if length == 4:
|
|
|
|
if not spl[1] in main.network.keys():
|
|
|
|
failure("Network does not exist: %s" % spl[1])
|
2018-02-23 22:05:40 +00:00
|
|
|
return
|
2019-08-11 20:58:14 +00:00
|
|
|
if not int(spl[2]) in main.network[spl[1]].relays.keys():
|
|
|
|
failure("Relay % does not exist on network %", (spl[2], spl[1]))
|
2018-02-23 22:05:40 +00:00
|
|
|
return
|
2022-07-21 12:39:41 +00:00
|
|
|
if not spl[1] + spl[2] in main.IRCPool.keys():
|
|
|
|
failure("Name has no instance: %s" % spl[1] + spl[2])
|
2019-08-11 20:58:14 +00:00
|
|
|
return
|
2022-07-21 12:39:41 +00:00
|
|
|
main.IRCPool[spl[1] + spl[2]].part(spl[3])
|
2019-08-11 20:58:14 +00:00
|
|
|
success("Left %s" % spl[3])
|
2018-02-23 22:05:40 +00:00
|
|
|
return
|
|
|
|
else:
|
|
|
|
incUsage("part")
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
incUsage(None)
|