2016-04-08 23:12:02 +02:00
|
|
|
local bot = {}
|
2015-07-03 00:15:52 +02:00
|
|
|
|
2016-04-29 06:36:35 +02:00
|
|
|
-- Requires are moved to init to allow for reloads.
|
|
|
|
local bindings -- Load Telegram bindings.
|
|
|
|
local utilities -- Load miscellaneous and cross-plugin functions.
|
2015-07-03 00:15:52 +02:00
|
|
|
|
2016-07-25 11:03:35 +02:00
|
|
|
bot.version = '3.12'
|
2015-07-03 00:15:52 +02:00
|
|
|
|
2016-05-27 02:26:30 +02:00
|
|
|
function bot:init(config) -- The function run when the bot is started or reloaded.
|
2016-04-08 23:12:02 +02:00
|
|
|
|
2016-06-07 06:31:34 +02:00
|
|
|
bindings = require('otouto.bindings')
|
|
|
|
utilities = require('otouto.utilities')
|
2016-04-29 06:36:35 +02:00
|
|
|
|
2016-05-29 19:08:39 +02:00
|
|
|
assert(
|
2016-07-25 11:03:35 +02:00
|
|
|
config.bot_api_key ~= '',
|
2016-05-27 02:26:30 +02:00
|
|
|
'You did not set your bot token in the config!'
|
2016-05-29 19:08:39 +02:00
|
|
|
)
|
2016-05-27 02:26:30 +02:00
|
|
|
self.BASE_URL = 'https://api.telegram.org/bot' .. config.bot_api_key .. '/'
|
2015-07-10 09:52:22 +02:00
|
|
|
|
2016-01-12 11:22:28 +01:00
|
|
|
-- Fetch bot information. Try until it succeeds.
|
2016-05-21 02:47:13 +02:00
|
|
|
repeat
|
|
|
|
print('Fetching bot information...')
|
|
|
|
self.info = bindings.getMe(self)
|
|
|
|
until self.info
|
2016-04-08 23:12:02 +02:00
|
|
|
self.info = self.info.result
|
2015-07-03 00:15:52 +02:00
|
|
|
|
2016-03-08 14:15:48 +01:00
|
|
|
-- Load the "database"! ;)
|
2016-04-08 23:12:02 +02:00
|
|
|
if not self.database then
|
|
|
|
self.database = utilities.load_data(self.info.username..'.db')
|
2016-03-08 14:15:48 +01:00
|
|
|
end
|
|
|
|
|
otouto 3.11
"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.
2016-07-05 09:29:11 +02:00
|
|
|
-- Table to cache user info (usernames, IDs, etc).
|
|
|
|
self.database.users = self.database.users or {}
|
|
|
|
-- Table to store userdata (nicknames, lastfm usernames, etc).
|
|
|
|
self.database.userdata = self.database.userdata or {}
|
|
|
|
-- Save the bot's version in the database to make migration simpler.
|
|
|
|
self.database.version = bot.version
|
|
|
|
-- Add updated bot info to the user info cache.
|
2016-06-07 05:13:26 +02:00
|
|
|
self.database.users[tostring(self.info.id)] = self.info
|
|
|
|
|
2016-04-08 23:12:02 +02:00
|
|
|
self.plugins = {} -- Load plugins.
|
2016-05-27 02:26:30 +02:00
|
|
|
for _,v in ipairs(config.plugins) do
|
2016-06-07 06:31:34 +02:00
|
|
|
local p = require('otouto.plugins.'..v)
|
2016-04-08 23:12:02 +02:00
|
|
|
table.insert(self.plugins, p)
|
2016-05-27 02:26:30 +02:00
|
|
|
if p.init then p.init(self, config) end
|
2016-07-25 11:03:35 +02:00
|
|
|
if p.doc then p.doc = '```\n'..p.doc..'\n```' end
|
2015-11-25 03:22:04 +01:00
|
|
|
end
|
2015-07-03 00:15:52 +02:00
|
|
|
|
2016-04-08 23:12:02 +02:00
|
|
|
print('@' .. self.info.username .. ', AKA ' .. self.info.first_name ..' ('..self.info.id..')')
|
2015-07-03 00:15:52 +02:00
|
|
|
|
2016-04-08 23:12:02 +02:00
|
|
|
self.last_update = self.last_update or 0 -- Set loop variables: Update offset,
|
|
|
|
self.last_cron = self.last_cron or os.date('%M') -- the time of the last cron job,
|
otouto 3.11
"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.
2016-07-05 09:29:11 +02:00
|
|
|
self.last_database_save = self.last_database_save or os.date('%H') -- the time of the last database save,
|
2016-04-08 23:12:02 +02:00
|
|
|
self.is_started = true -- and whether or not the bot should be running.
|
2016-03-22 11:16:26 +01:00
|
|
|
|
2015-11-25 03:22:04 +01:00
|
|
|
end
|
2015-07-03 00:15:52 +02:00
|
|
|
|
2016-05-27 02:26:30 +02:00
|
|
|
function bot:on_msg_receive(msg, config) -- The fn run whenever a message is received.
|
2015-07-03 00:15:52 +02:00
|
|
|
|
otouto 3.11
"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.
2016-07-05 09:29:11 +02:00
|
|
|
if msg.date < os.time() - 5 then return end -- Do not process old messages.
|
|
|
|
|
2016-05-15 14:22:31 +02:00
|
|
|
-- Cache user info for those involved.
|
otouto 3.11
"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.
2016-07-05 09:29:11 +02:00
|
|
|
self.database.users[tostring(msg.from.id)] = msg.from
|
|
|
|
if msg.reply_to_message then
|
|
|
|
self.database.users[tostring(msg.reply_to_message.from.id)] = msg.reply_to_message.from
|
|
|
|
elseif msg.forward_from then
|
|
|
|
self.database.users[tostring(msg.forward_from.id)] = msg.forward_from
|
|
|
|
elseif msg.new_chat_member then
|
|
|
|
self.database.users[tostring(msg.new_chat_member.id)] = msg.new_chat_member
|
|
|
|
elseif msg.left_chat_member then
|
|
|
|
self.database.users[tostring(msg.left_chat_member.id)] = msg.left_chat_member
|
2016-03-08 14:15:48 +01:00
|
|
|
end
|
|
|
|
|
otouto 3.11
"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.
2016-07-05 09:29:11 +02:00
|
|
|
msg.text = msg.text or msg.caption or ''
|
|
|
|
msg.text_lower = msg.text:lower()
|
2016-04-03 21:18:25 +02:00
|
|
|
|
2016-07-15 21:24:20 +02:00
|
|
|
if msg.reply_to_message then
|
|
|
|
msg.reply_to_message.text = msg.reply_to_message.text or msg.reply_to_message.caption or ''
|
|
|
|
end
|
|
|
|
|
otouto 3.11
"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.
2016-07-05 09:29:11 +02:00
|
|
|
-- Support deep linking.
|
2016-05-27 05:28:44 +02:00
|
|
|
if msg.text:match('^'..config.cmd_pat..'start .+') then
|
|
|
|
msg.text = config.cmd_pat .. utilities.input(msg.text)
|
2016-04-12 11:24:56 +02:00
|
|
|
msg.text_lower = msg.text:lower()
|
2016-01-08 04:30:12 +01:00
|
|
|
end
|
|
|
|
|
2016-06-14 23:57:36 +02:00
|
|
|
for _, plugin in ipairs(self.plugins) do
|
2016-07-14 03:57:23 +02:00
|
|
|
for _, trigger in ipairs(plugin.triggers or {}) do
|
2016-06-14 23:57:36 +02:00
|
|
|
if string.match(msg.text_lower, trigger) then
|
2015-11-25 03:22:04 +01:00
|
|
|
local success, result = pcall(function()
|
2016-06-14 23:57:36 +02:00
|
|
|
return plugin.action(self, msg, config)
|
2015-11-25 03:22:04 +01:00
|
|
|
end)
|
|
|
|
if not success then
|
2016-06-14 23:57:36 +02:00
|
|
|
-- If the plugin has an error message, send it. If it does
|
|
|
|
-- not, use the generic one specified in config. If it's set
|
|
|
|
-- to false, do nothing.
|
|
|
|
if plugin.error then
|
|
|
|
utilities.send_reply(self, msg, plugin.error)
|
|
|
|
elseif plugin.error == nil then
|
|
|
|
utilities.send_reply(self, msg, config.errors.generic)
|
|
|
|
end
|
2016-05-27 02:26:30 +02:00
|
|
|
utilities.handle_exception(self, result, msg.from.id .. ': ' .. msg.text, config)
|
2015-11-25 03:22:04 +01:00
|
|
|
return
|
|
|
|
end
|
2016-05-15 14:22:31 +02:00
|
|
|
-- If the action returns a table, make that table the new msg.
|
2015-11-25 03:22:04 +01:00
|
|
|
if type(result) == 'table' then
|
|
|
|
msg = result
|
2016-05-15 14:22:31 +02:00
|
|
|
-- If the action returns true, continue.
|
2015-11-25 03:22:04 +01:00
|
|
|
elseif result ~= true then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
2015-07-03 00:15:52 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2016-05-27 05:28:44 +02:00
|
|
|
function bot:run(config)
|
2016-05-27 02:26:30 +02:00
|
|
|
bot.init(self, config) -- Actually start the script.
|
2015-08-29 08:15:01 +02:00
|
|
|
|
2016-04-14 05:48:20 +02:00
|
|
|
while self.is_started do -- Start a loop while the bot should be running.
|
2015-07-03 00:15:52 +02:00
|
|
|
|
2016-05-29 19:08:39 +02:00
|
|
|
local res = bindings.getUpdates(self, { timeout=20, offset = self.last_update+1 } )
|
2016-05-22 09:03:50 +02:00
|
|
|
if res then
|
|
|
|
for _,v in ipairs(res.result) do -- Go through every new message.
|
|
|
|
self.last_update = v.update_id
|
|
|
|
if v.message then
|
2016-05-27 02:26:30 +02:00
|
|
|
bot.on_msg_receive(self, v.message, config)
|
2016-04-14 05:48:20 +02:00
|
|
|
end
|
2016-04-08 23:12:02 +02:00
|
|
|
end
|
2016-05-22 09:03:50 +02:00
|
|
|
else
|
2016-06-07 05:13:26 +02:00
|
|
|
print('Connection error while fetching updates.')
|
2015-07-03 00:15:52 +02:00
|
|
|
end
|
|
|
|
|
2016-04-14 05:48:20 +02:00
|
|
|
if self.last_cron ~= os.date('%M') then -- Run cron jobs every minute.
|
|
|
|
self.last_cron = os.date('%M')
|
|
|
|
for i,v in ipairs(self.plugins) do
|
|
|
|
if v.cron then -- Call each plugin's cron function, if it has one.
|
2016-05-27 05:28:44 +02:00
|
|
|
local result, err = pcall(function() v.cron(self, config) end)
|
2016-05-29 19:08:39 +02:00
|
|
|
if not result then
|
2016-05-27 02:26:30 +02:00
|
|
|
utilities.handle_exception(self, err, 'CRON: ' .. i, config)
|
2016-04-14 05:48:20 +02:00
|
|
|
end
|
2016-01-13 19:00:17 +01:00
|
|
|
end
|
2015-07-15 08:15:23 +02:00
|
|
|
end
|
2015-07-03 00:15:52 +02:00
|
|
|
end
|
2016-04-14 05:48:20 +02:00
|
|
|
|
otouto 3.11
"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.
2016-07-05 09:29:11 +02:00
|
|
|
if self.last_database_save ~= os.date('%H') then
|
|
|
|
utilities.save_data(self.info.username..'.db', self.database) -- Save the database.
|
|
|
|
self.last_database_save = os.date('%H')
|
|
|
|
end
|
|
|
|
|
2015-07-03 00:15:52 +02:00
|
|
|
end
|
2015-08-29 08:15:01 +02:00
|
|
|
|
2016-04-14 05:48:20 +02:00
|
|
|
-- Save the database before exiting.
|
|
|
|
utilities.save_data(self.info.username..'.db', self.database)
|
|
|
|
print('Halted.')
|
2015-07-03 00:15:52 +02:00
|
|
|
end
|
2015-08-29 08:15:01 +02:00
|
|
|
|
2016-04-14 05:48:20 +02:00
|
|
|
return bot
|