Implement loading new modules at runtime

This commit is contained in:
2018-02-23 23:26:21 +00:00
parent cb7142ef88
commit 378c4d9bba
5 changed files with 49 additions and 8 deletions

23
commands/loadmod.py Normal file
View File

@@ -0,0 +1,23 @@
from core.main import *
from utils.loaders.single_loader import loadSingle
class Loadmod:
def __init__(self, register):
register("loadmod", self.loadmod)
def loadmod(self, addr, authed, data, obj, spl, success, failure, info, incUsage, length):
if authed:
if length == 2:
rtrn = loadSingle(spl[1], register)
if rtrn == True:
success("Loaded module %s" % spl[1])
return
else:
failure("Error loading module %s: %s" % (spl[1], rtrn))
return
else:
incUsage("loadmod")
return
else:
incUsage(None)
return