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/otouto/plugins/shell.lua

34 lines
746 B
Lua
Raw Normal View History

local shell = {}
2016-06-07 06:31:34 +02: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-27 02:26:30 +02:00
function shell:action(msg, config)
2016-05-27 02:26:30 +02: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-06 00:29:29 +01: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 20:48:17 +01:00
if output:len() == 0 then
output = 'Ausgeführt.'
2015-12-14 20:48:17 +01:00
else
output = '```\n' .. output .. '\n```'
end
utilities.send_message(self, msg.chat.id, output, true, msg.message_id, true)
end
return shell