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

118 lines
2.6 KiB
Lua
Raw Normal View History

2015-07-03 00:15:52 +02:00
HTTP = require('socket.http')
HTTPS= require('ssl.https')
URL = require('socket.url')
JSON = require('dkjson')
2015-07-03 00:15:52 +02:00
VERSION = '2.11'
2015-07-03 00:15:52 +02:00
function on_msg_receive(msg)
if blacklist[tostring(msg.from.id)] then return end
if floodcontrol[-msg.chat.id] then -- This stuff is useful for the moderation plugin to not be completely unusable when floodcontrol is activated.
msg.flood = msg.chat.id
msg.chat.id = msg.from.id
end
if msg.new_chat_participant and msg.new_chat_participant.id == bot.id then
msg.text = '/about'
end -- If bot is added to a group, send the about message.
2015-09-22 01:34:02 +02:00
if msg.date < os.time() - 10 then return end -- don't react to old messages
2015-07-03 00:15:52 +02:00
if not msg.text then return end -- don't react to media messages
if msg.forward_from then return end -- don't react to forwarded messages
2015-07-03 00:15:52 +02:00
local lower = string.lower(msg.text)
for i,v in pairs(plugins) do
for j,w in pairs(v.triggers) do
if string.match(lower, w) then
if v.typing then
2015-09-22 01:34:02 +02:00
send_chat_action(msg.chat.id, 'typing')
2015-07-19 22:46:06 +02:00
end
local a,b = pcall(function() -- Janky error handling
v.action(msg)
end)
if not a then
print('',msg.text,'\n',b) -- debugging
send_msg(msg, b)
end
2015-07-03 00:15:52 +02:00
end
end
end
end
function bot_init()
print('Loading configuration...')
2015-07-03 00:15:52 +02:00
config = dofile('config.lua')
2015-07-03 00:15:52 +02:00
require('bindings')
require('utilities')
blacklist = load_data('blacklist.json')
2015-07-03 00:15:52 +02:00
print('Fetching bot information...')
2015-07-03 00:15:52 +02:00
bot = get_me()
while bot == false do
print('Failure fetching bot information. Trying again...')
bot = get_me()
2015-07-19 22:46:06 +02:00
end
bot = bot.result
2015-07-03 00:15:52 +02:00
print('Loading plugins...')
plugins = {}
for i,v in ipairs(config.plugins) do
local p = dofile('plugins/'..v)
2015-07-03 00:15:52 +02:00
table.insert(plugins, p)
end
print('Plugins loaded: ' .. #plugins .. '. Generating help message...')
2015-07-03 00:15:52 +02:00
2015-07-04 16:54:41 +02:00
help_message = ''
2015-07-03 00:15:52 +02:00
for i,v in ipairs(plugins) do
if v.doc then
local a = string.sub(v.doc, 1, string.find(v.doc, '\n')-1)
help_message = help_message .. ' - ' .. a .. '\n'
end
end
print('@'.. bot.username ..', AKA '.. bot.first_name ..' ('.. bot.id ..')')
2015-07-11 05:43:30 +02:00
2015-07-03 00:15:52 +02:00
is_started = true
end
bot_init()
last_update = 0
last_cron = os.time()
while is_started do
2015-07-03 00:15:52 +02:00
local res = get_updates(last_update+1)
2015-07-19 22:46:06 +02:00
if not res then
print('Error getting updates.')
else
2015-07-19 22:46:06 +02:00
for i,v in ipairs(res.result) do
if v.update_id > last_update then
last_update = v.update_id
on_msg_receive(v.message)
end
2015-07-03 00:15:52 +02:00
end
end
-- cron-like thing
-- run PLUGIN.cron() every five seconds
if last_cron < os.time() - 5 then
for k,v in pairs(plugins) do
if v.cron then
a,b = pcall(function() v.cron() end)
if not a then print(b) end
end
2015-07-03 00:15:52 +02:00
end
last_cron = os.time()
2015-07-03 00:15:52 +02:00
end
2015-07-03 00:15:52 +02:00
end
2015-07-19 22:46:06 +02:00
print('Halted.')