summaryrefslogtreecommitdiff
path: root/plugins/exec.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/exec.py')
-rw-r--r--plugins/exec.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/exec.py b/plugins/exec.py
index bf7d7c38..4dbe9590 100644
--- a/plugins/exec.py
+++ b/plugins/exec.py
@@ -8,7 +8,7 @@ import subprocess
class Plugin(BasePlugin):
def init(self):
- self.add_command('exec', self.command_exec,
+ self.api.add_command('exec', self.command_exec,
usage='[-o|-O] <command>',
help='Execute a shell command and prints the result in the information buffer. The command should be ONE argument, that means it should be between \"\". The first argument (before the command) can be -o or -O. If -o is specified, it sends the result in the current conversation. If -O is specified, it sends the command and its result in the current conversation.\nExample: /exec -O \"uptime\" will send “uptime\n20:36:19 up 3:47, 4 users, load average: 0.09, 0.13, 0.09” in the current conversation.',
short='Execute a command')
@@ -22,20 +22,20 @@ class Plugin(BasePlugin):
command = args[1]
arg = args[0]
else:
- self.core.command_help('exec')
+ self.api.run_command('/help exec')
return
try:
process = subprocess.Popen(['sh', '-c', command], stdout=subprocess.PIPE)
except OSError as e:
- self.core.information('Failed to execute command: %s' % (e,), 'Error')
+ self.api.information('Failed to execute command: %s' % (e,), 'Error')
return
result = process.communicate()[0].decode('utf-8')
if arg and arg == '-o':
- if not self.core.send_message('%s' % (result,)):
- self.core.information('Cannot send result (%s), this is not a conversation tab' % result)
+ if not self.api.send_message('%s' % (result,)):
+ self.api.information('Cannot send result (%s), this is not a conversation tab' % result)
elif arg and arg == '-O':
- if not self.core.send_message('%s:\n%s' % (command, result)):
- self.core.information('Cannot send result (%s), this is not a conversation tab' % result)
+ if not self.api.send_message('%s:\n%s' % (command, result)):
+ self.api.information('Cannot send result (%s), this is not a conversation tab' % result)
else:
- self.core.information('%s:\n%s' % (command, result), 'Info')
+ self.api.information('%s:\n%s' % (command, result), 'Info')
return