Implement a command to get the channels common to one or more users
This commit is contained in:
22
commands/chans.py
Normal file
22
commands/chans.py
Normal file
@@ -0,0 +1,22 @@
|
||||
import main
|
||||
import modules.userinfo as userinfo
|
||||
|
||||
class Chans:
|
||||
def __init__(self, register):
|
||||
register("chans", self.chans)
|
||||
|
||||
def chans(self, addr, authed, data, obj, spl, success, failure, info, incUsage, length):
|
||||
if authed:
|
||||
result = userinfo.getChans(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)
|
||||
Reference in New Issue
Block a user