monolith/commands/who.py

27 lines
757 B
Python
Raw Normal View History

import modules.userinfo as userinfo
2022-07-21 12:39:41 +00:00
class WhoCommand:
def __init__(self, *args):
self.who(*args)
def who(self, addr, authed, data, obj, spl, success, failure, info, incUsage, length):
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
rtrn += "\n"
2018-08-27 19:42:49 +00:00
rtrn += "\n"
info(rtrn)
return
else:
incUsage("who")
return
else:
incUsage(None)