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/shout.lua

54 lines
1.3 KiB
Lua
Raw Normal View History

local shout = {}
2016-06-07 06:31:34 +02:00
local utilities = require('otouto.utilities')
shout.command = 'shout <text>'
function shout:init(config)
shout.triggers = utilities.triggers(self.info.username, config.cmd_pat):t('shout', true).table
shout.doc = config.cmd_pat .. 'shout <text> \nShouts something. Input may be the replied-to message.'
end
function shout:action(msg)
local input = utilities.input(msg.text)
if not input then
if msg.reply_to_message and #msg.reply_to_message.text > 0 then
input = msg.reply_to_message.text
else
utilities.send_message(self, msg.chat.id, shout.doc, true, msg.message_id, true)
return
end
end
input = utilities.trim(input)
input = input:upper()
2016-06-13 19:59:44 +02:00
local output = ''
local inc = 0
2016-06-13 19:59:44 +02:00
local ilen = 0
for match in input:gmatch(utilities.char.utf_8) do
2016-06-15 21:21:12 +02:00
if ilen < 20 then
2016-06-13 19:59:44 +02:00
ilen = ilen + 1
output = output .. match .. ' '
end
end
2016-06-13 19:59:44 +02:00
ilen = 0
output = output .. '\n'
2016-06-13 19:59:44 +02:00
for match in input:sub(2):gmatch(utilities.char.utf_8) do
2016-06-15 21:21:12 +02:00
if ilen < 19 then
2016-06-13 19:59:44 +02:00
local spacing = ''
for _ = 1, inc do
spacing = spacing .. ' '
end
inc = inc + 1
ilen = ilen + 1
output = output .. match .. ' ' .. spacing .. match .. '\n'
end
end
output = '```\n' .. utilities.trim(output) .. '\n```'
utilities.send_message(self, msg.chat.id, output, true, false, true)
end
return shout