2018-03-14 20:13:40 +00:00
|
|
|
import main
|
2018-02-23 22:05:40 +00:00
|
|
|
|
|
|
|
class Get:
|
|
|
|
def __init__(self, register):
|
|
|
|
register("get", self.get)
|
|
|
|
|
|
|
|
def get(self, addr, authed, data, obj, spl, success, failure, info, incUsage, length):
|
|
|
|
if authed:
|
|
|
|
if length == 3:
|
2018-03-14 20:13:40 +00:00
|
|
|
if not spl[1] in main.pool.keys():
|
2018-02-23 22:05:40 +00:00
|
|
|
failure("Name does not exist: %s" % spl[1])
|
|
|
|
return
|
2018-03-14 20:13:40 +00:00
|
|
|
if not spl[1] in main.IRCPool.keys():
|
2018-02-23 22:05:40 +00:00
|
|
|
failure("Name has no instance: %s" % spl[1])
|
|
|
|
return
|
2018-03-14 20:13:40 +00:00
|
|
|
info(str(main.IRCPool[spl[1]].get(spl[2])))
|
2018-02-23 22:05:40 +00:00
|
|
|
return
|
|
|
|
else:
|
|
|
|
incUsage("get")
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
incUsage(None)
|