This repository has been archived on 2021-04-24. You can view files and clone it, but cannot push or open issues or pull requests.
Mikubot-2/plugins/shell.lua
2016-04-15 06:57:42 -07:00

35 lines
701 B
Lua

local shell = {}
local bindings = require('bindings')
local utilities = require('utilities')
function shell:init()
shell.triggers = utilities.triggers(self.info.username):t('run', true).table
end
function shell:action(msg)
if msg.from.id ~= self.config.admin then
return
end
local input = utilities.input(msg.text)
input = input:gsub('', '--')
if not input then
bindings.sendReply(self, msg, 'Please specify a command to run.')
return
end
local output = io.popen(input):read('*all')
if output:len() == 0 then
output = 'Done!'
else
output = '```\n' .. output .. '\n```'
end
bindings.sendMessage(self, msg.chat.id, output, true, msg.message_id, true)
end
return shell