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.
43 lines
1022 B
Lua
43 lines
1022 B
Lua
local me = {}
|
|
|
|
local utilities = require('otouto.utilities')
|
|
|
|
function me:init(config)
|
|
me.triggers = utilities.triggers(self.info.username, config.cmd_pat):t('me', true).table
|
|
me.command = 'me'
|
|
me.doc = '`Returns userdata stored by the bot.`'
|
|
end
|
|
|
|
function me:action(msg, config)
|
|
|
|
local userdata = self.database.userdata[tostring(msg.from.id)] or {}
|
|
|
|
if msg.from.id == config.admin then
|
|
if msg.reply_to_message then
|
|
userdata = self.database.userdata[tostring(msg.reply_to_message.from.id)]
|
|
else
|
|
local input = utilities.input(msg.text)
|
|
if input then
|
|
local user_id = utilities.id_from_username(self, input)
|
|
if user_id then
|
|
userdata = self.database.userdata[tostring(user_id)] or {}
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
local output = ''
|
|
for k,v in pairs(userdata) do
|
|
output = output .. '*' .. k .. ':* `' .. tostring(v) .. '`\n'
|
|
end
|
|
|
|
if output == '' then
|
|
output = 'There is no data stored for this user.'
|
|
end
|
|
|
|
utilities.send_message(self, msg.chat.id, output, true, nil, true)
|
|
|
|
end
|
|
|
|
return me
|