acc7046d64
Added optional target for kick/ban logs. Added flag 7 to use default log per group. This way, a realm can have a public kick/ban log but governors are able to opt out. Added flag 8, antilink. Kicks for Telegram join links which do not refer to groups within the realm. Added flag 9, modrights, to give moderators access to changing the group photo, title, link, and motd (config option is deprecated. RIP). /unban will reset the target's autokick counter. Added configuration for default flag settings. Revision to bindings.lua. BASE_URL has been moved to bindings. There is no real reason for it to remain in instance. Token is passed to bindings.init at load. All plugins have been updated accordingly.
52 lines
1.3 KiB
Lua
52 lines
1.3 KiB
Lua
local shout = {}
|
|
|
|
local utilities = require('otouto.utilities')
|
|
|
|
shout.command = 'shout <text>'
|
|
local utf8 = '('..utilities.char.utf_8..'*)'
|
|
|
|
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_from_msg(msg)
|
|
if not input then
|
|
utilities.send_reply(msg, shout.doc, true)
|
|
return
|
|
end
|
|
|
|
input = utilities.trim(input)
|
|
input = input:upper()
|
|
|
|
local output = ''
|
|
local inc = 0
|
|
local ilen = 0
|
|
for match in input:gmatch(utf8) do
|
|
if ilen < 20 then
|
|
ilen = ilen + 1
|
|
output = output .. match .. ' '
|
|
end
|
|
end
|
|
ilen = 0
|
|
output = output .. '\n'
|
|
for match in input:sub(2):gmatch(utf8) do
|
|
if ilen < 19 then
|
|
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(msg.chat.id, output, true, false, true)
|
|
|
|
end
|
|
|
|
return shout
|