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.

34 lines
746 B
Lua
Raw Normal View History

local shell = {}
2016-06-07 00:31:34 -04:00
local utilities = require('otouto.utilities')
function shell:init(config)
shell.triggers = utilities.triggers(self.info.username, config.cmd_pat):t('sh', true).table
end
2016-05-26 17:26:30 -07:00
function shell:action(msg, config)
2016-05-26 17:26:30 -07:00
if msg.from.id ~= config.admin then
utilities.send_reply(self, msg, config.errors.sudo)
end
local input = utilities.input(msg.text)
2016-02-05 20:29:29 -03:00
input = input:gsub('', '--')
if not input then
utilities.send_reply(self, msg, 'Bitte gebe ein Kommando ein.')
return
end
local output = io.popen(input):read('*all')
2015-12-14 14:48:17 -05:00
if output:len() == 0 then
output = 'Ausgeführt.'
2015-12-14 14:48:17 -05:00
else
output = '```\n' .. output .. '\n```'
end
utilities.send_message(self, msg.chat.id, output, true, msg.message_id, true)
end
return shell