monolith/legacy/commands/who.py

29 lines
771 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)
2022-09-05 06:20:30 +00:00
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)