2018-03-14 20:13:40 +00:00
|
|
|
import main
|
2020-11-02 20:14:02 +00:00
|
|
|
import modules.chankeep
|
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 JoinCommand:
|
2019-01-26 18:58:21 +00:00
|
|
|
def __init__(self, *args):
|
|
|
|
self.join(*args)
|
2018-02-23 22:05:40 +00:00
|
|
|
|
2022-09-05 06:20:30 +00:00
|
|
|
def join(
|
|
|
|
self, addr, authed, data, obj, spl, success, failure, info, incUsage, length
|
|
|
|
):
|
2018-02-23 22:05:40 +00:00
|
|
|
if authed:
|
2020-11-02 20:14:02 +00:00
|
|
|
if length == 3:
|
|
|
|
if not spl[1] in main.network.keys():
|
|
|
|
failure("Network does not exist: %s" % spl[1])
|
|
|
|
return
|
|
|
|
modules.chankeep.joinSingle(spl[1], spl[2])
|
|
|
|
success("Joined %s" % spl[2])
|
|
|
|
|
|
|
|
elif length == 4:
|
2019-08-11 20:58:14 +00:00
|
|
|
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():
|
2019-08-25 20:29:11 +00:00
|
|
|
failure("Relay %s does not exist on network %s" % (spl[2], spl[1]))
|
2019-08-11 20:58:14 +00:00
|
|
|
return
|
2022-07-21 12:39:41 +00:00
|
|
|
if not spl[1] + spl[2] in main.IRCPool.keys():
|
2018-02-23 22:05:40 +00:00
|
|
|
failure("Name has no instance: %s" % spl[1])
|
|
|
|
return
|
2022-07-21 12:39:41 +00:00
|
|
|
main.IRCPool[spl[1] + spl[2]].join(spl[3])
|
2019-08-11 20:58:14 +00:00
|
|
|
success("Joined %s" % spl[3])
|
2018-02-23 22:05:40 +00:00
|
|
|
return
|
2019-08-11 20:58:14 +00:00
|
|
|
elif length == 5:
|
|
|
|
if not spl[1] in main.network.keys():
|
|
|
|
failure("Network does not exist: %s" % spl[1])
|
|
|
|
return
|
|
|
|
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():
|
2018-02-23 22:05:40 +00:00
|
|
|
failure("Name has no instance: %s" % spl[1])
|
|
|
|
return
|
2022-07-21 12:39:41 +00:00
|
|
|
main.IRCPool[spl[1] + spl[2]].join(spl[3], spl[4])
|
2019-08-11 20:58:14 +00:00
|
|
|
success("Joined %s with key %s" % (spl[3], spl[4]))
|
2018-02-23 22:05:40 +00:00
|
|
|
return
|
|
|
|
else:
|
|
|
|
incUsage("join")
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
incUsage(None)
|