mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 12:22:18 +03:00
Context was extended about execute script
This commit is contained in:
parent
014dd0f468
commit
0c2f6892ab
1 changed files with 14 additions and 1 deletions
|
@ -37,6 +37,19 @@ class Context(object):
|
|||
def execute(self, command):
|
||||
return subprocess.Popen(command, shell=True)
|
||||
|
||||
def execute_script(self, script_path, parameters=None):
|
||||
command = []
|
||||
if script_path is not None:
|
||||
command.append(script_path)
|
||||
else:
|
||||
raise Exception('[Context] Script is required')
|
||||
|
||||
if parameters is not None:
|
||||
for p in parameters:
|
||||
command.append(p)
|
||||
|
||||
return subprocess.check_call(command)
|
||||
|
||||
def get_path(self):
|
||||
return self.config_manager.get('PLUGIN', 'pluginfolderpath')
|
||||
|
||||
|
@ -115,7 +128,7 @@ class Plugin(threading.Thread):
|
|||
else:
|
||||
self.logger.warning("[Plugin] Not supported object type " + obj_name)
|
||||
|
||||
# Empty context for next use
|
||||
# Empty context for next use
|
||||
self.context.empty_data()
|
||||
except Exception as e:
|
||||
self.logger.error("[Plugin] Plugin running exception. Exception Message: {} ".format(str(e)))
|
||||
|
|
Loading…
Reference in a new issue