2018-05-07 18:58:19 +00:00
|
|
|
import main
|
|
|
|
|
2022-07-21 12:39:41 +00:00
|
|
|
|
2019-08-09 22:06:34 +00:00
|
|
|
class MsgCommand:
|
2019-01-26 18:58:21 +00:00
|
|
|
def __init__(self, *args):
|
|
|
|
self.msg(*args)
|
2018-05-07 18:58:19 +00:00
|
|
|
|
2022-07-21 12:40:01 +00:00
|
|
|
def msg(self, addr, authed, data, obj, spl, success, failure, info, incUsage, length):
|
2018-05-07 18:58:19 +00:00
|
|
|
if authed:
|
2019-08-11 20:58:14 +00:00
|
|
|
if length >= 5:
|
|
|
|
if not spl[1] in main.network.keys():
|
|
|
|
failure("Network does not exist: %s" % spl[1])
|
2018-05-07 18:58:19 +00:00
|
|
|
return
|
2019-08-11 20:58:14 +00:00
|
|
|
if not int(spl[2]) in main.network[spl[1]].relays.keys():
|
2022-07-21 12:40:05 +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-05-07 18:58:19 +00:00
|
|
|
failure("Name has no instance: %s" % spl[1])
|
|
|
|
return
|
2022-07-21 12:39:41 +00:00
|
|
|
if not spl[3] in main.IRCPool[spl[1] + spl[2]].channels:
|
2019-08-11 20:58:14 +00:00
|
|
|
info("Bot not on channel: %s" % spl[3])
|
2022-07-21 12:39:41 +00:00
|
|
|
main.IRCPool[spl[1] + spl[2]].msg(spl[3], " ".join(spl[4:]))
|
2022-07-21 12:40:01 +00:00
|
|
|
success("Sent %s to %s on relay %s on network %s" % (" ".join(spl[4:]), spl[3], spl[2], spl[1]))
|
2018-05-07 18:58:19 +00:00
|
|
|
return
|
|
|
|
else:
|
|
|
|
incUsage("msg")
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
incUsage(None)
|