Implement users command to see the mutual users of one or more channels and squash some bugs

This commit is contained in:
2018-10-08 20:08:10 +01:00
parent a98ed4e4d0
commit 44aa0f1727
4 changed files with 50 additions and 6 deletions

25
commands/users.py Normal file
View File

@@ -0,0 +1,25 @@
import main
import modules.userinfo as userinfo
class Users:
def __init__(self, register):
register("users", self.users)
def users(self, addr, authed, data, obj, spl, success, failure, info, incUsage, length):
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]:
rtrn += (x)
rtrn += "\n"
rtrn += "\n"
info(rtrn)
return
else:
incUsage(None)