2018-03-30 11:36:34 +00:00
|
|
|
local storage = minetest.get_mod_storage()
|
|
|
|
|
|
|
|
local function get_irc_mods()
|
|
|
|
return storage:get_string("irc_mods"):split(",")
|
|
|
|
end
|
|
|
|
|
|
|
|
local function add_irc_mod(name)
|
|
|
|
local mods = get_irc_mods()
|
|
|
|
if table.indexof(mods, name) > 0 then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
mods[#mods + 1] = name
|
|
|
|
storage:set_string("irc_mods", table.concat(mods, ","))
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
local function remove_irc_mod(name)
|
|
|
|
local mods = get_irc_mods()
|
|
|
|
local idx = table.indexof(mods, name)
|
|
|
|
if idx > 0 then
|
|
|
|
table.remove(mods, idx)
|
|
|
|
storage:set_string("irc_mods", table.concat(mods, ","))
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
minetest.register_chatcommand("report_sub", {
|
|
|
|
privs = { kick = true },
|
|
|
|
func = function(name, param)
|
|
|
|
if param:lower():trim() == "remove" then
|
|
|
|
if remove_irc_mod(name) then
|
|
|
|
return true, "Successfully removed!"
|
|
|
|
else
|
|
|
|
return false, "Unable to remove, are you even subscribed?"
|
|
|
|
end
|
|
|
|
else
|
|
|
|
if add_irc_mod(name) then
|
|
|
|
return true, "Successfully added!"
|
|
|
|
else
|
|
|
|
return false, "Unable to add, are you already subscribed?"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
})
|
|
|
|
|
2015-12-07 23:28:50 +00:00
|
|
|
minetest.register_chatcommand("report", {
|
|
|
|
func = function(name, param)
|
2015-12-18 01:50:19 +00:00
|
|
|
param = param:trim()
|
|
|
|
if param == "" then
|
|
|
|
return false, "Please add a message to your report. " ..
|
|
|
|
"If it's about (a) particular player(s), please also include their name(s)."
|
|
|
|
end
|
|
|
|
local _, count = string.gsub(param, " ", "")
|
|
|
|
if count == 0 then
|
|
|
|
minetest.chat_send_player(name, "If you're reporting a player, " ..
|
|
|
|
"you should also include a reason why. (Eg: swearing, sabotage)")
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Send to online moderators / admins
|
|
|
|
-- Get comma separated list of online moderators and admins
|
|
|
|
local mods = {}
|
2015-12-07 23:28:50 +00:00
|
|
|
for _, player in pairs(minetest.get_connected_players()) do
|
2016-03-17 15:39:49 +00:00
|
|
|
local toname = player:get_player_name()
|
|
|
|
if minetest.check_player_privs(toname, {kick = true, ban = true}) then
|
|
|
|
table.insert(mods, toname)
|
2018-04-06 13:04:56 +00:00
|
|
|
minetest.chat_send_player(toname, minetest.colorize("#FFFF00",
|
|
|
|
"-!- " .. name .. " reported: " .. param))
|
2015-12-07 23:28:50 +00:00
|
|
|
end
|
|
|
|
end
|
2015-12-18 01:50:19 +00:00
|
|
|
|
2018-03-30 11:36:34 +00:00
|
|
|
-- Build message for offline listeners
|
|
|
|
local msg
|
|
|
|
if #mods == 0 then
|
2018-03-30 12:00:26 +00:00
|
|
|
msg = "Report from " ..name .. ": " .. param .. " (no mods online)"
|
2018-03-30 11:36:34 +00:00
|
|
|
else
|
2018-03-30 12:00:26 +00:00
|
|
|
msg = "Report from " ..name .. ": " .. param .. " (mods online: " ..
|
2018-03-30 11:36:34 +00:00
|
|
|
table.concat(mods, ", ") .. ")"
|
|
|
|
end
|
2016-04-08 16:59:12 +00:00
|
|
|
|
2018-03-30 11:36:34 +00:00
|
|
|
-- Send to IRC moderators
|
2018-03-30 12:00:26 +00:00
|
|
|
for _, toname in pairs(get_irc_mods()) do
|
|
|
|
if not minetest.get_player_by_name(toname) then
|
|
|
|
minetest.chat_send_player(toname, msg)
|
2018-03-30 11:36:34 +00:00
|
|
|
end
|
2016-04-08 16:59:12 +00:00
|
|
|
end
|
2018-02-02 14:24:04 +00:00
|
|
|
|
|
|
|
return true, "Reported. We'll get back to you."
|
2015-12-07 23:28:50 +00:00
|
|
|
end
|
|
|
|
})
|