monolith/legacy/commands/loadmod.py

27 lines
825 B
Python
Raw Normal View History

from utils.loaders.single_loader import loadSingle
2022-07-21 12:39:41 +00:00
class LoadmodCommand:
def __init__(self, *args):
self.loadmod(*args)
def loadmod(self, addr, authed, data, obj, spl, success, failure, info, incUsage, length):
if authed:
if length == 2:
rtrn = loadSingle(spl[1])
2022-07-21 12:40:05 +00:00
if rtrn is True:
success("Loaded module: %s" % spl[1])
return
elif rtrn == "RELOAD":
success("Reloaded module: %s" % spl[1])
return
else:
failure("Error loading module %s: %s" % (spl[1], rtrn))
return
else:
incUsage("loadmod")
return
else:
incUsage(None)
return