a4d7c40ad9
NEU: - Twitter-Plugin (ohne Markdown bisher) - Get- Set-Plugins - 9GAG - Adfly - Redis-Integration - Google Search - Google Images (modifiziert, mit Blacklist, bisher ohne Caching) - Einige Plugins lokalisiert Das ist momentan noch alles WIP, das meiste ist einfach bloß copy&paste vom proprietären Brawlbot v1.
34 lines
746 B
Lua
34 lines
746 B
Lua
local shell = {}
|
|
|
|
local utilities = require('otouto.utilities')
|
|
|
|
function shell:init(config)
|
|
shell.triggers = utilities.triggers(self.info.username, config.cmd_pat):t('sh', true).table
|
|
end
|
|
|
|
function shell:action(msg, config)
|
|
|
|
if msg.from.id ~= config.admin then
|
|
utilities.send_reply(self, msg, config.errors.sudo)
|
|
end
|
|
|
|
local input = utilities.input(msg.text)
|
|
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')
|
|
if output:len() == 0 then
|
|
output = 'Ausgeführt.'
|
|
else
|
|
output = '```\n' .. output .. '\n```'
|
|
end
|
|
utilities.send_message(self, msg.chat.id, output, true, msg.message_id, true)
|
|
|
|
end
|
|
|
|
return shell
|