2018-10-07 19:48:39 +00:00
|
|
|
import modules.userinfo as userinfo
|
|
|
|
|
2022-07-21 12:39:41 +00:00
|
|
|
|
2019-08-09 22:06:34 +00:00
|
|
|
class ChansCommand:
|
2019-01-26 18:58:21 +00:00
|
|
|
def __init__(self, *args):
|
|
|
|
self.chans(*args)
|
2018-10-07 19:48:39 +00:00
|
|
|
|
2022-07-21 12:40:01 +00:00
|
|
|
def chans(self, addr, authed, data, obj, spl, success, failure, info, incUsage, length):
|
2018-10-07 19:48:39 +00:00
|
|
|
if authed:
|
2018-10-08 19:08:10 +00:00
|
|
|
if len(spl) < 2:
|
|
|
|
incUsage("chans")
|
|
|
|
return
|
2018-10-07 19:48:39 +00:00
|
|
|
result = userinfo.getChans(spl[1:])
|
|
|
|
rtrn = ""
|
|
|
|
for i in result.keys():
|
|
|
|
rtrn += "Matches from: %s" % i
|
|
|
|
rtrn += "\n"
|
|
|
|
for x in result[i]:
|
2022-07-21 12:39:41 +00:00
|
|
|
rtrn += x
|
2018-10-07 19:48:39 +00:00
|
|
|
rtrn += "\n"
|
|
|
|
rtrn += "\n"
|
|
|
|
info(rtrn)
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
incUsage(None)
|