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