2015-07-29 00:13:46 +02:00
|
|
|
--[[
|
|
|
|
|
|
|
|
This works using the settings in the "moderation" section of config.lua.
|
|
|
|
"realm" should be set to the group ID of the admin group. A negative number.
|
|
|
|
"data" will be the file name of where the moderation 'database' will be stored. The file will be created if it does not exist.
|
|
|
|
"admins" is a table of administrators for the Liberbot admin group. They will have the power to add groups and moderators to the database. The value can be a nickname for the admin, but it only needs to be true for it to work.
|
|
|
|
|
2015-08-23 08:46:34 +02:00
|
|
|
Your bot should have privacy mode disabled.
|
|
|
|
|
2015-07-29 00:13:46 +02:00
|
|
|
]]--
|
|
|
|
|
|
|
|
local help = {}
|
|
|
|
|
|
|
|
help.trigger = '^/modhelp'
|
|
|
|
|
|
|
|
help.action = function(msg)
|
|
|
|
|
2015-08-29 08:15:01 +02:00
|
|
|
local data = load_data('moderation.json')
|
2015-07-29 00:13:46 +02:00
|
|
|
|
|
|
|
local do_send = false
|
|
|
|
if data[tostring(msg.chat.id)] and data[tostring(msg.chat.id)][tostring(msg.from.id)] then do_send = true end
|
2015-08-18 11:55:25 +02:00
|
|
|
if config.moderation.admins[tostring(msg.from.id)] then do_send = true end
|
2015-07-29 00:13:46 +02:00
|
|
|
if do_send == false then return end
|
|
|
|
|
|
|
|
local message = [[
|
|
|
|
Moderator commands:
|
|
|
|
/modban - Ban a user via reply or username.
|
|
|
|
/modkick - Kick a user via reply or username.
|
|
|
|
/modlist - Get a list of moderators for this group.
|
|
|
|
Administrator commands:
|
2015-08-04 22:11:55 +02:00
|
|
|
/add - Add this group to the database.
|
|
|
|
/remove - Remove this group from the database.
|
|
|
|
/promote - Promote a user via reply.
|
|
|
|
/demote - Demote a user via reply.
|
2015-07-29 00:13:46 +02:00
|
|
|
/modcast - Send a broastcast to every group.
|
2015-08-18 11:55:25 +02:00
|
|
|
/hammer - Ban a user from all groups via reply or username.
|
2015-07-29 00:13:46 +02:00
|
|
|
]]
|
|
|
|
|
|
|
|
send_message(msg.chat.id, message)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
local ban = {}
|
|
|
|
|
|
|
|
ban.trigger = '^/modban'
|
|
|
|
|
|
|
|
ban.action = function(msg)
|
|
|
|
|
2015-08-29 08:15:01 +02:00
|
|
|
local data = load_data('moderation.json')
|
2015-07-29 00:13:46 +02:00
|
|
|
|
|
|
|
if not data[tostring(msg.chat.id)] then return end
|
2015-08-18 11:55:25 +02:00
|
|
|
if not data[tostring(msg.chat.id)][tostring(msg.from.id)] then
|
|
|
|
if not config.moderation.admins[tostring(msg.from.id)] then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
2015-07-29 00:13:46 +02:00
|
|
|
|
|
|
|
local target = get_target(msg)
|
|
|
|
if not target then
|
|
|
|
return send_message(msg.chat.id, 'No one to remove.\nBots must be removed by username.')
|
|
|
|
end
|
|
|
|
|
|
|
|
if msg.reply_to_message and data[tostring(msg.chat.id)][tostring(msg.reply_to_message.from.id)] then
|
|
|
|
return send_message(msg.chat.id, 'Cannot remove a moderator.')
|
|
|
|
end
|
|
|
|
|
|
|
|
local chat_id = math.abs(msg.chat.id)
|
|
|
|
|
|
|
|
send_message(config.moderation.realm, '/ban ' .. target .. ' from ' .. chat_id)
|
|
|
|
|
|
|
|
if msg.reply_to_message then
|
|
|
|
target = msg.reply_to_message.from.first_name
|
|
|
|
end
|
|
|
|
|
|
|
|
send_message(config.moderation.realm, target .. ' banned from ' .. msg.chat.title .. ' by ' .. msg.from.first_name .. '.')
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
local kick = {}
|
|
|
|
|
|
|
|
kick.trigger = '^/modkick'
|
|
|
|
|
|
|
|
kick.action = function(msg)
|
|
|
|
|
2015-08-29 08:15:01 +02:00
|
|
|
local data = load_data('moderation.json')
|
2015-07-29 00:13:46 +02:00
|
|
|
|
|
|
|
if not data[tostring(msg.chat.id)] then return end
|
2015-08-18 11:55:25 +02:00
|
|
|
if not data[tostring(msg.chat.id)][tostring(msg.from.id)] then
|
|
|
|
if not config.moderation.admins[tostring(msg.from.id)] then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
2015-07-29 00:13:46 +02:00
|
|
|
|
|
|
|
local target = get_target(msg)
|
|
|
|
if not target then
|
2015-08-18 11:55:25 +02:00
|
|
|
return send_message(msg.chat.id, 'No one to remove.\nBots must be removed by username.')
|
2015-07-29 00:13:46 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
if msg.reply_to_message and data[tostring(msg.chat.id)][tostring(msg.reply_to_message.from.id)] then
|
|
|
|
return send_message(msg.chat.id, 'Cannot remove a moderator.')
|
|
|
|
end
|
|
|
|
|
|
|
|
local chat_id = math.abs(msg.chat.id)
|
|
|
|
|
|
|
|
send_message(config.moderation.realm, '/kick ' .. target .. ' from ' .. chat_id)
|
|
|
|
|
|
|
|
if msg.reply_to_message then
|
|
|
|
target = msg.reply_to_message.from.first_name
|
|
|
|
end
|
|
|
|
|
|
|
|
send_message(config.moderation.realm, target .. ' kicked from ' .. msg.chat.title .. ' by ' .. msg.from.first_name .. '.')
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
local add = {}
|
|
|
|
|
2015-08-04 22:11:55 +02:00
|
|
|
add.trigger = '^/[mod]*add$'
|
2015-07-29 00:13:46 +02:00
|
|
|
|
|
|
|
add.action = function(msg)
|
|
|
|
|
2015-08-29 08:15:01 +02:00
|
|
|
local data = load_data('moderation.json')
|
2015-07-29 00:13:46 +02:00
|
|
|
|
2015-08-18 11:55:25 +02:00
|
|
|
if not config.moderation.admins[tostring(msg.from.id)] then return end
|
2015-07-29 00:13:46 +02:00
|
|
|
|
|
|
|
if data[tostring(msg.chat.id)] then
|
|
|
|
return send_message(msg.chat.id, 'Group is already added.')
|
|
|
|
end
|
|
|
|
|
|
|
|
data[tostring(msg.chat.id)] = {}
|
2015-08-29 08:15:01 +02:00
|
|
|
save_data('moderation.json', data)
|
2015-07-29 00:13:46 +02:00
|
|
|
|
|
|
|
send_message(msg.chat.id, 'Group has been added.')
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
local rem = {}
|
|
|
|
|
2015-08-04 22:11:55 +02:00
|
|
|
rem.trigger = '^/[mod]*rem[ove]*$'
|
2015-07-29 00:13:46 +02:00
|
|
|
|
|
|
|
rem.action = function(msg)
|
|
|
|
|
2015-08-29 08:15:01 +02:00
|
|
|
local data = load_data('moderation.json')
|
2015-07-29 00:13:46 +02:00
|
|
|
|
2015-08-18 11:55:25 +02:00
|
|
|
if not config.moderation.admins[tostring(msg.from.id)] then return end
|
2015-07-29 00:13:46 +02:00
|
|
|
|
|
|
|
if not data[tostring(msg.chat.id)] then
|
|
|
|
return send_message(msg.chat.id, 'Group is not added.')
|
|
|
|
end
|
|
|
|
|
|
|
|
data[tostring(msg.chat.id)] = nil
|
2015-08-29 08:15:01 +02:00
|
|
|
save_data('moderation.json', data)
|
2015-07-29 00:13:46 +02:00
|
|
|
|
|
|
|
send_message(msg.chat.id, 'Group has been removed.')
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
local promote = {}
|
|
|
|
|
2015-08-04 22:11:55 +02:00
|
|
|
promote.trigger = '^/[mod]*prom[ote]*$'
|
2015-07-29 00:13:46 +02:00
|
|
|
|
|
|
|
promote.action = function(msg)
|
|
|
|
|
2015-08-29 08:15:01 +02:00
|
|
|
local data = load_data('moderation.json')
|
2015-08-18 11:55:25 +02:00
|
|
|
local chatid = tostring(msg.chat.id)
|
2015-07-29 00:13:46 +02:00
|
|
|
|
2015-08-18 11:55:25 +02:00
|
|
|
if not config.moderation.admins[tostring(msg.from.id)] then return end
|
2015-07-29 00:13:46 +02:00
|
|
|
|
2015-08-18 11:55:25 +02:00
|
|
|
if not data[chatid] then
|
2015-07-29 00:13:46 +02:00
|
|
|
return send_message(msg.chat.id, 'Group is not added.')
|
|
|
|
end
|
|
|
|
|
|
|
|
if not msg.reply_to_message then
|
|
|
|
return send_message(msg.chat.id, 'Promotions must be done via reply.')
|
|
|
|
end
|
|
|
|
|
2015-08-18 11:55:25 +02:00
|
|
|
local targid = tostring(msg.reply_to_message.from.id)
|
|
|
|
|
|
|
|
if data[chatid][targid] then
|
2015-07-29 00:13:46 +02:00
|
|
|
return send_message(msg.chat.id, msg.reply_to_message.from.first_name..' is already a moderator.')
|
|
|
|
end
|
|
|
|
|
2015-08-18 11:55:25 +02:00
|
|
|
if config.moderation.admins[targid] then
|
|
|
|
return send_message(msg.chat.id, 'Administrators do not need to be promoted.')
|
|
|
|
end
|
|
|
|
|
2015-07-29 00:13:46 +02:00
|
|
|
if not msg.reply_to_message.from.username then
|
|
|
|
msg.reply_to_message.from.username = msg.reply_to_message.from.first_name
|
|
|
|
end
|
|
|
|
|
2015-08-18 11:55:25 +02:00
|
|
|
data[chatid][targid] = msg.reply_to_message.from.first_name
|
2015-08-29 08:15:01 +02:00
|
|
|
save_data('moderation.json', data)
|
2015-07-29 00:13:46 +02:00
|
|
|
|
|
|
|
send_message(msg.chat.id, msg.reply_to_message.from.first_name..' has been promoted.')
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
local demote = {}
|
|
|
|
|
2015-08-09 20:21:33 +02:00
|
|
|
demote.trigger = '^/[mod]*dem[ote]*'
|
2015-07-29 00:13:46 +02:00
|
|
|
|
|
|
|
demote.action = function(msg)
|
|
|
|
|
2015-08-29 08:15:01 +02:00
|
|
|
local data = load_data('moderation.json')
|
2015-07-29 00:13:46 +02:00
|
|
|
|
2015-08-18 11:55:25 +02:00
|
|
|
if not config.moderation.admins[tostring(msg.from.id)] then return end
|
2015-07-29 00:13:46 +02:00
|
|
|
|
|
|
|
if not data[tostring(msg.chat.id)] then
|
|
|
|
return send_message(msg.chat.id, 'Group is not added.')
|
|
|
|
end
|
|
|
|
|
2015-08-09 02:53:46 +02:00
|
|
|
local input = get_input(msg.text)
|
|
|
|
if not input then
|
|
|
|
if msg.reply_to_message then
|
|
|
|
input = msg.reply_to_message.from.id
|
|
|
|
else
|
|
|
|
return send_msg('Demotions must be done by reply or by specifying a moderator\'s ID.')
|
|
|
|
end
|
2015-07-29 00:13:46 +02:00
|
|
|
end
|
|
|
|
|
2015-08-09 02:53:46 +02:00
|
|
|
if not data[tostring(msg.chat.id)][tostring(input)] then
|
|
|
|
return send_message(msg.chat.id, input..' is not a moderator.')
|
2015-07-29 00:13:46 +02:00
|
|
|
end
|
|
|
|
|
2015-08-09 02:53:46 +02:00
|
|
|
data[tostring(msg.chat.id)][tostring(input)] = nil
|
2015-08-29 08:15:01 +02:00
|
|
|
save_data('moderation.json', data)
|
2015-07-29 00:13:46 +02:00
|
|
|
|
2015-08-09 02:53:46 +02:00
|
|
|
send_message(msg.chat.id, input..' has been demoted.')
|
2015-07-29 00:13:46 +02:00
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
local broadcast = {}
|
|
|
|
|
|
|
|
broadcast.trigger = '^/modcast'
|
|
|
|
|
|
|
|
broadcast.action = function(msg)
|
|
|
|
|
2015-08-29 08:15:01 +02:00
|
|
|
local data = load_data('moderation.json')
|
2015-07-29 00:13:46 +02:00
|
|
|
|
2015-08-18 11:55:25 +02:00
|
|
|
if not config.moderation.admins[tostring(msg.from.id)] then return end
|
2015-07-29 00:13:46 +02:00
|
|
|
|
|
|
|
if msg.chat.id ~= config.moderation.realm then
|
|
|
|
return send_message(msg.chat.id, 'This command must be run in the admin group.')
|
|
|
|
end
|
|
|
|
|
|
|
|
local message = get_input(msg.text)
|
|
|
|
|
|
|
|
if not message then
|
|
|
|
return send_message(msg.chat.id, 'You must specify a message to broadcast.')
|
|
|
|
end
|
|
|
|
|
|
|
|
for k,v in pairs(data) do
|
|
|
|
send_message(k, message)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
local modlist = {}
|
|
|
|
|
|
|
|
modlist.trigger = '^/modlist'
|
|
|
|
|
|
|
|
modlist.action = function(msg)
|
|
|
|
|
2015-08-29 08:15:01 +02:00
|
|
|
local data = load_data('moderation.json')
|
2015-07-29 00:13:46 +02:00
|
|
|
|
|
|
|
if not data[tostring(msg.chat.id)] then
|
|
|
|
return send_message(msg.chat.id, 'Group is not added.')
|
|
|
|
end
|
|
|
|
|
2015-08-18 11:55:25 +02:00
|
|
|
local message = ''
|
2015-07-29 00:13:46 +02:00
|
|
|
|
|
|
|
for k,v in pairs(data[tostring(msg.chat.id)]) do
|
2015-08-18 11:55:25 +02:00
|
|
|
message = message ..' - '..v.. ' (' .. k .. ')\n'
|
|
|
|
end
|
|
|
|
|
|
|
|
if message ~= '' then
|
|
|
|
message = 'Moderators for ' .. msg.chat.title .. ':\n' .. message .. '\n'
|
|
|
|
end
|
|
|
|
|
|
|
|
message = message .. 'Administrators for ' .. config.moderation.realmname .. ':\n'
|
|
|
|
for k,v in pairs(config.moderation.admins) do
|
|
|
|
message = message ..' - '..v.. ' (' .. k .. ')\n'
|
2015-07-29 00:13:46 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
send_message(msg.chat.id, message)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2015-08-18 11:55:25 +02:00
|
|
|
local badmin = {}
|
|
|
|
|
|
|
|
badmin.trigger = '^/hammer'
|
|
|
|
|
|
|
|
badmin.action = function(msg)
|
|
|
|
|
|
|
|
if not config.moderation.admins[tostring(msg.from.id)] then return end
|
|
|
|
|
|
|
|
local target = get_target(msg)
|
|
|
|
if not target then
|
|
|
|
return send_message(msg.chat.id, 'No one to remove.\nBots must be removed by username.')
|
|
|
|
end
|
|
|
|
|
|
|
|
send_message(config.moderation.realm, '/ban ' .. target .. ' from all')
|
|
|
|
|
|
|
|
if msg.reply_to_message then
|
|
|
|
target = msg.reply_to_message.from.first_name
|
|
|
|
end
|
|
|
|
|
|
|
|
send_message(config.moderation.realm, target .. ' was banhammered by ' .. msg.from.first_name .. '.')
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2015-07-29 00:13:46 +02:00
|
|
|
local modactions = {
|
|
|
|
help,
|
|
|
|
ban,
|
|
|
|
kick,
|
|
|
|
add,
|
|
|
|
rem,
|
|
|
|
promote,
|
|
|
|
demote,
|
|
|
|
broadcast,
|
2015-08-18 11:55:25 +02:00
|
|
|
modlist,
|
|
|
|
badmin
|
2015-07-29 00:13:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
local triggers = {
|
|
|
|
'^/modhelp',
|
|
|
|
'^/modlist',
|
|
|
|
'^/modcast',
|
2015-08-04 22:11:55 +02:00
|
|
|
'^/[mod]*add$',
|
|
|
|
'^/[mod]*rem[ove]*$',
|
|
|
|
'^/[mod]*prom[ote]*$',
|
2015-08-09 20:21:33 +02:00
|
|
|
'^/[mod]*dem[ote]*',
|
2015-07-29 00:13:46 +02:00
|
|
|
'^/modkick',
|
2015-08-18 11:55:25 +02:00
|
|
|
'^/modban',
|
|
|
|
'^/hammer'
|
2015-07-29 00:13:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
local action = function(msg)
|
|
|
|
for k,v in pairs(modactions) do
|
|
|
|
if string.match(msg.text, v.trigger) then
|
|
|
|
return v.action(msg)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return {
|
|
|
|
triggers = triggers,
|
2015-08-18 11:55:25 +02:00
|
|
|
action = action
|
2015-07-29 00:13:46 +02:00
|
|
|
}
|