2018-02-23 22:05:40 +00:00
|
|
|
import modules.userinfo as userinfo
|
|
|
|
|
2022-07-21 12:39:41 +00:00
|
|
|
|
2019-08-09 22:06:34 +00:00
|
|
|
class WhoCommand:
|
2019-01-26 18:58:21 +00:00
|
|
|
def __init__(self, *args):
|
|
|
|
self.who(*args)
|
2018-02-23 22:05:40 +00:00
|
|
|
|
2022-07-21 12:40:01 +00:00
|
|
|
def who(self, addr, authed, data, obj, spl, success, failure, info, incUsage, length):
|
2018-02-23 22:05:40 +00:00
|
|
|
if authed:
|
|
|
|
if length == 2:
|
|
|
|
result = userinfo.getWho(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-02-23 22:05:40 +00:00
|
|
|
rtrn += "\n"
|
2018-08-27 19:42:49 +00:00
|
|
|
rtrn += "\n"
|
2018-02-23 22:05:40 +00:00
|
|
|
info(rtrn)
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
incUsage("who")
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
incUsage(None)
|