9ebdbd9d3c
"things occurred" Added some utilities (id_from_username, id_from_message), removed some utilities (latcyr, others?). Removed cycle-wasting "shortcuts" -- no more automatic id_str or name; text_lower remains. Moved userdata (nicknames, lastfm, etc) to a different tree in the database (automatic migration will occur). /me now returns userdata. Speaking of migration, database now stores the latest version run to make future automigration easy. Database now saves hourly rather than minutely. Changed readme and some plugins to reflect above changes. Removed broken rockspec (Brayden, feel free to re-add once it's working). Added option to automatically block people (via drua) when blacklisted. Fixed about.lua trigger problems. administration 1.11 - Removed /kickme and /broadcast. Users should leave manually, and announcements should be made via channel rather than spam. /setqotd now handles forwarded messages correctly. /kick, /ban, /hammer, /mod, /admin now support multiple arguments. Added get_targets function. No migration is necessary.
37 lines
990 B
Lua
Executable File
37 lines
990 B
Lua
Executable File
local about = {}
|
|
|
|
local bot = require('otouto.bot')
|
|
local utilities = require('otouto.utilities')
|
|
|
|
about.command = 'about'
|
|
about.doc = '`Returns information about the bot.`'
|
|
|
|
about.triggers = {
|
|
''
|
|
}
|
|
|
|
function about:action(msg, config)
|
|
|
|
-- Filthy hack, but here is where we'll stop forwarded messages from hitting
|
|
-- other plugins.
|
|
if msg.forward_from then return end
|
|
|
|
local output = config.about_text .. '\nBased on [otouto](http://github.com/topkecleon/otouto) v'..bot.version..' by topkecleon.'
|
|
|
|
if
|
|
(msg.new_chat_member and msg.new_chat_member.id == self.info.id)
|
|
or msg.text_lower:match('^'..config.cmd_pat..'about$')
|
|
or msg.text_lower:match('^'..config.cmd_pat..'about@'..self.info.username:lower()..'$')
|
|
or msg.text_lower:match('^'..config.cmd_pat..'start$')
|
|
or msg.text_lower:match('^'..config.cmd_pat..'start@'..self.info.username:lower()..'$')
|
|
then
|
|
utilities.send_message(self, msg.chat.id, output, true, nil, true)
|
|
return
|
|
end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
return about
|