mirror of
https://github.com/mt-mods/playerfactions.git
synced 2025-04-05 23:10:17 +02:00
* Store hashes of passwords cleartext password storage is bad practice. * Depricate factions.get_password() returns nil after first run * loaded message * Properly use the configurable admin priv in output * Don't show password, since we can't anymore * remove code that is never reached * chown: reorder to first check if player has any factions at all There is no point in checking other params if this part fails. * chown: fix command signature password is required * proper admin priv listing in help for invite * wrap fixup code in do-block variable save_needed is not used for anything else * locale: many -> multiple * locale: remove unused entry * locale: ownership rephrasing * locale: tweak and add "No factions found." * locale: exists -> exist * locale: this -> that or better also fixed a french mistake: player doesn't own these -> player owns these * locale: reuse string for missing name besides, "nil" is a valid name. This way there is no confusion. * locale: reuse "missing player name" * locale: reuse "faction x doesn't exist" * locale: faction x already exists * locale: the player -> player x * locale: some more de-Frenching * add local is_admin stash commit... * disband: allow admin - permit admin to disband a faction without having any factions himself - permit admin to skip password check (he can supply any placeholder) - permit admin to disband his own single faction - don't call get_owner or valid_password if is admin - streamline duplicate code * list: check for true first instead of using negation - check for no factions first -> simpler code - whitespace: linebreak for easier reading * info: cleanup - whitespace linebreaks for easier reading and consistancy - update helptext signiture (also for disband) to reflect actual requirements and standard - loop members into table for consistant and easier to read code * player_info: cleanup - move depricated log entry to start of get_player_faction(), no point in skipping warning. - simplify get_player_factions() - whitespace linebreaks for easier reading and consistancy - loop members into table for consistant and easier to read code - simplify get_owned_factions() - make player_name param optional, default to caller (still need to check as caller name can be missing) - loop factions into table for consistant and easier to read code (also presumpted faster) * join: cleanup - don't call get_player_factions() unless needed - use get_player_factions() instead of depricated get_player_faction() - truth check of password in valid_password() for easier understanding of code - remove explicit nil check where not needed * leave: cleanup - update help text to standard syntax - remove unnecessary param count checks - simplify leave_faction() argument checking * kick: cleanup - simplify and reduce calls of core.get_player_privs() - update help text to standard syntax - streamline duplicate code - remove unnecessary param count checks - remove explicit nil check where not needed - don't call get_owner if is admin (until needed) * passwd: cleanup - update help text to standard syntax - streamline duplicate code - remove unnecessary param count checks - remove explicit nil check where not needed - don't call get_owner if is admin * chown: cleanup and tweak - update help text to standard syntax - streamline duplicate code - remove unnecessary param count checks - remove explicit nil check where not needed - updated locale to be neutral to admin or owner - don't call get_owner or valid_password if is admin - remove core.player_exists() call since target was checked when joined faction - abort early if no target or password provided * invite: cleanup and tweaks - reduced needed indents - remove explicit nil check where not needed - use get_player_factions() instead of depricated get_player_faction() and reduce calls of it - tweaked join_faction() - adds check if player already is in that faction * more tweaks - join: check if already member - leave: checks if user is in given faction at all - kick: early abort if no player provided - create: early abort if no faction or password are provided - create: use get_player_factions() instead of get_player_faction() - create: reduce explicit nil checks - disband: early abort if missing password - disband: reduce param-count-checks and use table.getn() - info: reduce explicit nil checks and use table.getn() - passwd: early abort if no password provided - in general remove explicit nil-checks where not needed * is_admin -> not_admin for slightly easier reading and shorter lines * fix translator missing argument * some facepalm fixes and tweaks of table.getn() for consistency, here # would work just as well. * set minimum server version to 5.9.0 * another facepalm moment * add mtt support * refactor handle_command for mtt It could've been done by only exposing handle_command, but this is cleaner for future maintenance as tasks are well separated. * bundle mtt related lines * needs fakelib, not areas areas will need this mod for testing * remove unused arguments * add owner to members on cleanup * rename chat to cc also no need to expose cc directly to mtt * register the actually set priv when it is missing * label data correctly * move settings higher up where they are expected to be * consistancy with variable names use faction_name, player_name, target_name, password etc. instead of a jumble of pw, fname, name, player_name etc. * reduce needles table-copy * fail to register same named factions * no-op depricated and useless get_password * some more checks in some API methods * whitespace and comments * pass translator to mtt * bugfix cc.disband inverted password check * standardize var name and reduce looping * add get_members() api-method and use it * player_info: count empty string as no player * player_info: switch if-else to avoid negation * unreachable comments * simpler check * add mtt-checks for front and backend commands * update french locale - informal tone - adds missing entries * add Spanish locale * add German locale * whitespace cleanup * add fakelib comment * provide alternative to table.pack() * add disband hook support * remove local f == factions
606 lines
19 KiB
Lua
606 lines
19 KiB
Lua
-- Translation support
|
|
local S = minetest.get_translator("playerfactions")
|
|
|
|
-- Global factions table
|
|
factions = {}
|
|
-- This variable "version" can be used by other mods to check
|
|
-- the compatibility of this mod
|
|
factions.version = 2
|
|
|
|
-- Settings
|
|
factions.mode_unique_faction = minetest.settings:get_bool(
|
|
"player_factions.mode_unique_faction", true)
|
|
factions.max_members_list = tonumber(minetest.settings:get(
|
|
"player_factions.max_members_list")) or 50
|
|
factions.priv = minetest.settings:get(
|
|
"player_factions.priv_admin") or "playerfactions_admin"
|
|
|
|
-- Privilege registration (if needed)
|
|
minetest.register_on_mods_loaded(function()
|
|
if not minetest.registered_privileges[factions.priv] then
|
|
minetest.register_privilege(factions.priv, {
|
|
description = S("Allow the use of all playerfactions commands"),
|
|
give_to_singleplayer = false
|
|
})
|
|
end
|
|
end)
|
|
|
|
-- Hooks
|
|
local disband_hooks = {}
|
|
-- When a faction is disbanded, these callbacks are called
|
|
-- hook(faction_name)
|
|
function factions.register_disband_hook(hook)
|
|
if 'function' ~= hook then
|
|
return false
|
|
end
|
|
table.insert(disband_hooks, hook)
|
|
return true
|
|
end
|
|
|
|
-- Data
|
|
local facts = {}
|
|
local storage = minetest.get_mod_storage()
|
|
if storage:get_string("facts") ~= "" then
|
|
facts = minetest.deserialize(storage:get_string("facts"))
|
|
end
|
|
|
|
local function save_factions()
|
|
storage:set_string("facts", minetest.serialize(facts))
|
|
end
|
|
|
|
local function table_copy(data)
|
|
local copy = {}
|
|
if type(data) == "table" then
|
|
for k, v in pairs(data) do
|
|
copy[k]=table_copy(v)
|
|
end
|
|
return copy
|
|
else
|
|
return data
|
|
end
|
|
end
|
|
|
|
-- Data manipulation (API)
|
|
function factions.get_facts()
|
|
return table_copy(facts)
|
|
end
|
|
|
|
function factions.player_is_in_faction(faction_name, player_name)
|
|
if not (facts[faction_name] and minetest.player_exists(player_name)) then
|
|
return false
|
|
end
|
|
return facts[faction_name].members[player_name]
|
|
end
|
|
|
|
function factions.get_player_faction(player_name)
|
|
minetest.log("warning", "Function factions.get_player_faction() "
|
|
.. "is deprecated in favor of factions.get_player_factions(). "
|
|
.. "Please check updates of mods depending on playerfactions.")
|
|
if not minetest.player_exists(player_name) then
|
|
return false
|
|
end
|
|
for faction_name, fact in pairs(facts) do
|
|
if fact.members[player_name] then
|
|
return faction_name
|
|
end
|
|
end
|
|
return nil
|
|
end
|
|
|
|
function factions.get_player_factions(player_name)
|
|
if not minetest.player_exists(player_name) then
|
|
return false
|
|
end
|
|
local player_factions = {}
|
|
for faction_name, fact in pairs(facts) do
|
|
if fact.members[player_name] then
|
|
table.insert(player_factions, faction_name)
|
|
end
|
|
end
|
|
return 0 < table.getn(player_factions) and player_factions or false
|
|
end
|
|
|
|
function factions.get_owned_factions(player_name)
|
|
local owned_factions = {}
|
|
for faction_name, fact in pairs(facts) do
|
|
if fact.owner == player_name then
|
|
table.insert(owned_factions, faction_name)
|
|
end
|
|
end
|
|
return 0 < table.getn(owned_factions) and owned_factions or false
|
|
end
|
|
|
|
function factions.get_administered_factions(player_name)
|
|
local is_admin = minetest.get_player_privs(player_name)[factions.priv]
|
|
local adm_factions = {}
|
|
for faction_name, fact in pairs(facts) do
|
|
if is_admin or fact.owner == player_name then
|
|
table.insert(adm_factions, faction_name)
|
|
end
|
|
end
|
|
return 0 < table.getn(adm_factions) and adm_factions or false
|
|
end
|
|
|
|
function factions.get_members(faction_name)
|
|
if not facts[faction_name] then
|
|
return false
|
|
end
|
|
local faction_members = {}
|
|
for player_name in pairs(facts[faction_name].members) do
|
|
table.insert(faction_members, player_name)
|
|
end
|
|
return 0 < table.getn(faction_members) and faction_members or false
|
|
end
|
|
|
|
function factions.get_owner(faction_name)
|
|
if not facts[faction_name] then
|
|
return false
|
|
end
|
|
return facts[faction_name].owner
|
|
end
|
|
|
|
function factions.chown(faction_name, player_name)
|
|
if not facts[faction_name] then
|
|
return false
|
|
end
|
|
facts[faction_name].owner = player_name
|
|
save_factions()
|
|
return true
|
|
end
|
|
|
|
function factions.register_faction(faction_name, player_name, password)
|
|
if not ('string' == type(faction_name) and 'string' == type(player_name)
|
|
and 'string' == type(password)) then
|
|
return false
|
|
end
|
|
if facts[faction_name] then
|
|
return false
|
|
end
|
|
facts[faction_name] = {
|
|
name = faction_name,
|
|
owner = player_name,
|
|
password256 = factions.hash_password(password),
|
|
members = { [player_name] = true }
|
|
}
|
|
save_factions()
|
|
return true
|
|
end
|
|
|
|
function factions.disband_faction(faction_name)
|
|
if not facts[faction_name] then
|
|
return false
|
|
end
|
|
facts[faction_name] = nil
|
|
save_factions()
|
|
for _, hook in ipairs(disband_hooks) do
|
|
hook(faction_name)
|
|
end
|
|
return true
|
|
end
|
|
|
|
|
|
function factions.hash_password(password)
|
|
return minetest.sha256(password)
|
|
end
|
|
|
|
|
|
function factions.valid_password(faction_name, password)
|
|
if not facts[faction_name] or not password then
|
|
return false
|
|
end
|
|
|
|
return factions.hash_password(password) == facts[faction_name].password256
|
|
end
|
|
|
|
function factions.get_password()
|
|
minetest.log("warning", "Deprecated use of factions.get_password(). "
|
|
.. "Please update to using factions.valid_password() instead.")
|
|
return nil
|
|
end
|
|
|
|
function factions.set_password(faction_name, password)
|
|
if not (facts[faction_name] and 'string' == type(password)) then
|
|
return false
|
|
end
|
|
|
|
facts[faction_name].password256 = factions.hash_password(password)
|
|
save_factions()
|
|
return true
|
|
end
|
|
|
|
function factions.join_faction(faction_name, player_name)
|
|
if not (facts[faction_name] and 'string' == type(player_name)
|
|
and minetest.player_exists(player_name)) then
|
|
return false
|
|
end
|
|
facts[faction_name].members[player_name] = true
|
|
save_factions()
|
|
return true
|
|
end
|
|
|
|
function factions.leave_faction(faction_name, player_name)
|
|
if not (facts[faction_name] and 'string' == type(player_name)
|
|
and minetest.player_exists(player_name)) then
|
|
return false
|
|
end
|
|
facts[faction_name].members[player_name] = nil
|
|
save_factions()
|
|
return true
|
|
end
|
|
|
|
-- Chat commands
|
|
local cc = {}
|
|
|
|
function cc.create(player_name, params)
|
|
local faction_name = params[2]
|
|
local password = params[3]
|
|
if not faction_name then
|
|
return false, S("Missing faction name.")
|
|
elseif not password then
|
|
return false, S("Missing password.")
|
|
elseif factions.mode_unique_faction and factions.get_player_factions(player_name) then
|
|
return false, S("You are already in a faction.")
|
|
elseif facts[faction_name] then
|
|
return false, S("Faction @1 already exists.", faction_name)
|
|
else
|
|
factions.register_faction(faction_name, player_name, password)
|
|
return true, S("Registered @1.", faction_name)
|
|
end
|
|
end
|
|
|
|
function cc.disband(player_name, params, not_admin)
|
|
local password = params[2]
|
|
if not password then
|
|
return false, S("Missing password.")
|
|
end
|
|
local faction_name = params[3]
|
|
local owned_factions = factions.get_administered_factions(player_name)
|
|
local number_factions = owned_factions and table.getn(owned_factions) or 0
|
|
if not_admin and number_factions == 0 then
|
|
return false, S("You don't own any factions.")
|
|
elseif not faction_name and number_factions == 1 then
|
|
faction_name = owned_factions[1]
|
|
elseif not faction_name then
|
|
return false, S(
|
|
"You are the owner of multiple factions, you have to choose one of them: @1.",
|
|
table.concat(owned_factions, ", "))
|
|
end
|
|
if not facts[faction_name] then
|
|
return false, S("Faction @1 doesn't exist.", faction_name)
|
|
elseif not_admin and player_name ~= factions.get_owner(faction_name) then
|
|
return false, S("Permission denied: You are not the owner of that faction,"
|
|
.. " and don't have the @1 privilege.", factions.priv)
|
|
elseif not_admin and not factions.valid_password(faction_name, password) then
|
|
return false, S("Permission denied: Wrong password.")
|
|
else
|
|
factions.disband_faction(faction_name)
|
|
return true, S("Disbanded @1.", faction_name)
|
|
end
|
|
end
|
|
|
|
function cc.list()
|
|
local faction_list = {}
|
|
for k in pairs(facts) do
|
|
table.insert(faction_list, k)
|
|
end
|
|
if table.getn(faction_list) == 0 then
|
|
return true, S("There are no factions yet.")
|
|
else
|
|
return true, S("Factions (@1): @2.",
|
|
table.getn(faction_list), table.concat(faction_list, ", "))
|
|
end
|
|
end
|
|
|
|
|
|
function cc.info(player_name, params)
|
|
local faction_name = params[2]
|
|
if not faction_name then
|
|
local player_factions = factions.get_player_factions(player_name)
|
|
if not player_factions then
|
|
return true, S("No factions found.")
|
|
elseif table.getn(player_factions) == 1 then
|
|
faction_name = player_factions[1]
|
|
else
|
|
return false, S(
|
|
"You are in multiple factions, you have to choose one of them: @1.",
|
|
table.concat(player_factions, ", "))
|
|
end
|
|
end
|
|
if not facts[faction_name] then
|
|
return false, S("Faction @1 doesn't exist.", faction_name)
|
|
else
|
|
local faction_members = factions.get_members(faction_name)
|
|
if table.getn(faction_members) > factions.max_members_list then
|
|
faction_members = { S("The faction has more than @1 members,"
|
|
.. " the members list can't be shown.", factions.max_members_list) }
|
|
end
|
|
local summary = S("Name: @1\nOwner: @2\nMembers: @3",
|
|
faction_name, factions.get_owner(faction_name),
|
|
table.concat(faction_members, ", "))
|
|
return true, summary
|
|
end
|
|
end
|
|
|
|
function cc.player_info(player_name, params)
|
|
player_name = params[2] or player_name
|
|
if not player_name or "" == player_name then
|
|
return false, S("Missing player name.")
|
|
end
|
|
local player_factions = factions.get_player_factions(player_name)
|
|
if not player_factions then
|
|
return false, S(
|
|
"Player @1 doesn't exist or isn't in any faction.", player_name)
|
|
else
|
|
local summary = S("@1 is in the following factions: @2.",
|
|
player_name, table.concat(player_factions, ", "))
|
|
local owned_factions = factions.get_owned_factions(player_name)
|
|
if owned_factions then
|
|
summary = summary .. "\n" .. S(
|
|
"@1 is the owner of the following factions: @2.",
|
|
player_name, table.concat(owned_factions, ", "))
|
|
else
|
|
summary = summary .. "\n" .. S(
|
|
"@1 doesn't own any factions.", player_name)
|
|
end
|
|
if minetest.get_player_privs(player_name)[factions.priv] then
|
|
summary = summary .. "\n" .. S(
|
|
"@1 has the @2 privilege so they can admin every faction.",
|
|
player_name, factions.priv)
|
|
end
|
|
return true, summary
|
|
end
|
|
end
|
|
|
|
function cc.join(player_name, params)
|
|
local faction_name = params[2]
|
|
local password = params[3]
|
|
if factions.mode_unique_faction and factions.get_player_factions(player_name) then
|
|
return false, S("You are already in a faction.")
|
|
elseif not faction_name then
|
|
return false, S("Missing faction name.")
|
|
elseif not facts[faction_name] then
|
|
return false, S("Faction @1 doesn't exist.", faction_name)
|
|
elseif facts[faction_name].members[player_name] then
|
|
return false, S("You are already in faction @1.", faction_name)
|
|
elseif not factions.valid_password(faction_name, password) then
|
|
return false, S("Permission denied: Wrong password.")
|
|
else
|
|
if factions.join_faction(faction_name, player_name) then
|
|
return true, S("Joined @1.", faction_name)
|
|
else
|
|
return false, S("Error joining faction.")
|
|
end
|
|
end
|
|
end
|
|
|
|
function cc.leave(player_name, params)
|
|
local player_factions = factions.get_player_factions(player_name)
|
|
local number_factions = player_factions and table.getn(player_factions) or 0
|
|
local faction_name = params[2]
|
|
if number_factions == 0 then
|
|
return false, S("You are not in a faction.")
|
|
elseif not faction_name then
|
|
if number_factions == 1 then
|
|
faction_name = player_factions[1]
|
|
else
|
|
return false, S(
|
|
"You are in multiple factions, you have to choose one of them: @1.",
|
|
table.concat(player_factions, ", "))
|
|
end
|
|
end
|
|
if not facts[faction_name] then
|
|
return false, S("Faction @1 doesn't exist.", faction_name)
|
|
elseif factions.get_owner(faction_name) == player_name then
|
|
return false, S("You cannot leave your own faction, change owner or disband it.")
|
|
elseif not facts[faction_name].members[player_name] then
|
|
return false, S("You aren't part of faction @1.", faction_name)
|
|
else
|
|
if factions.leave_faction(faction_name, player_name) then
|
|
return true, S("Left @1.", faction_name)
|
|
else
|
|
return false, S("Error leaving faction.")
|
|
end
|
|
end
|
|
end
|
|
|
|
function cc.kick(player_name, params, not_admin)
|
|
local target_name = params[2]
|
|
if not target_name then
|
|
return false, S("Missing player name.")
|
|
end
|
|
local faction_name = params[3]
|
|
local owned_factions = factions.get_administered_factions(player_name)
|
|
local number_factions = owned_factions and table.getn(owned_factions) or 0
|
|
if number_factions == 0 then
|
|
return false, S("You don't own any factions, you can't use this command.")
|
|
elseif not faction_name and number_factions == 1 then
|
|
faction_name = owned_factions[1]
|
|
elseif not faction_name then
|
|
return false, S(
|
|
"You are the owner of multiple factions, you have to choose one of them: @1.",
|
|
table.concat(owned_factions, ", "))
|
|
end
|
|
if not_admin and factions.get_owner(faction_name) ~= player_name then
|
|
return false, S("Permission denied: You are not the owner of that faction, "
|
|
.. "and don't have the @1 privilege.", factions.priv)
|
|
elseif not facts[faction_name].members[target_name] then
|
|
return false, S("@1 is not in the specified faction.", target_name)
|
|
elseif target_name == factions.get_owner(faction_name) then
|
|
return false, S("You cannot kick the owner of a faction, "
|
|
.. "use '/factions chown <player> <password> [<faction>]' "
|
|
.. "to change the ownership.")
|
|
else
|
|
if factions.leave_faction(faction_name, target_name) then
|
|
return true, S("Kicked @1 from faction.", target_name)
|
|
else
|
|
-- SwissalpS is quite positive that this portion is unreachable
|
|
return false, S("Error kicking @1 from faction.", target_name)
|
|
end
|
|
end
|
|
end
|
|
|
|
function cc.passwd(player_name, params, not_admin)
|
|
local password = params[2]
|
|
if not password then
|
|
return false, S("Missing password.")
|
|
end
|
|
local faction_name = params[3]
|
|
local owned_factions = factions.get_administered_factions(player_name)
|
|
local number_factions = owned_factions and table.getn(owned_factions) or 0
|
|
if number_factions == 0 then
|
|
return false, S("You don't own any factions, you can't use this command.")
|
|
elseif not faction_name and number_factions == 1 then
|
|
faction_name = owned_factions[1]
|
|
elseif not faction_name then
|
|
return false, S(
|
|
"You are the owner of multiple factions, you have to choose one of them: @1.",
|
|
table.concat(owned_factions, ", "))
|
|
end
|
|
if not_admin and factions.get_owner(faction_name) ~= player_name then
|
|
return false, S("Permission denied: You are not the owner of that faction, "
|
|
.. "and don't have the @1 privilege.", factions.priv)
|
|
else
|
|
if factions.set_password(faction_name, password) then
|
|
return true, S("Password has been updated.")
|
|
else
|
|
return false, S("Failed to change password.")
|
|
end
|
|
end
|
|
end
|
|
|
|
function cc.chown(player_name, params, not_admin)
|
|
local target_name = params[2]
|
|
local password = params[3]
|
|
local faction_name = params[4]
|
|
if not target_name then
|
|
return false, S("Missing player name.")
|
|
elseif not password then
|
|
return false, S("Missing password.")
|
|
end
|
|
local owned_factions = factions.get_administered_factions(player_name)
|
|
local number_factions = owned_factions and table.getn(owned_factions) or 0
|
|
if number_factions == 0 then
|
|
return false, S("You don't own any factions, you can't use this command.")
|
|
elseif not faction_name and number_factions == 1 then
|
|
faction_name = owned_factions[1]
|
|
elseif not faction_name then
|
|
return false, S(
|
|
"You are the owner of multiple factions, you have to choose one of them: @1.",
|
|
table.concat(owned_factions, ", "))
|
|
end
|
|
if not_admin and player_name ~= factions.get_owner(faction_name) then
|
|
return false, S("Permission denied: You are not the owner of that faction, "
|
|
.. "and don't have the @1 privilege.", factions.priv)
|
|
elseif not facts[faction_name].members[target_name] then
|
|
return false, S("@1 isn't in faction @2.", target_name, faction_name)
|
|
elseif not_admin and not factions.valid_password(faction_name, password) then
|
|
return false, S("Permission denied: Wrong password.")
|
|
else
|
|
if factions.chown(faction_name, target_name) then
|
|
return true, S("Ownership has been transferred to @1.", target_name)
|
|
else
|
|
return false, S("Failed to transfer ownership.")
|
|
end
|
|
end
|
|
end
|
|
|
|
function cc.invite(_, params, not_admin)
|
|
if not_admin then
|
|
return false, S(
|
|
"Permission denied: You can't use this command, @1 priv is needed.",
|
|
factions.priv)
|
|
end
|
|
local target_name = params[2]
|
|
local faction_name = params[3]
|
|
if not target_name then
|
|
return false, S("Missing player name.")
|
|
elseif not faction_name then
|
|
return false, S("Missing faction name.")
|
|
elseif not facts[faction_name] then
|
|
return false, S("Faction @1 doesn't exist.", faction_name)
|
|
elseif not minetest.player_exists(target_name) then
|
|
return false, S("Player @1 doesn't exist.", target_name)
|
|
end
|
|
local player_factions = factions.get_player_factions(target_name)
|
|
if facts[faction_name].members[target_name] then
|
|
return false, S("Player @1 is already in faction @2.",
|
|
target_name, faction_name)
|
|
elseif player_factions and factions.mode_unique_faction then
|
|
return false, S("Player @1 is already in faction @2.",
|
|
target_name, player_factions[1])
|
|
else
|
|
if factions.join_faction(faction_name, target_name) then
|
|
return true, S("@1 is now a member of faction @2.", target_name, faction_name)
|
|
else
|
|
-- is this portion ever reachable at all?
|
|
return false, S("Error adding @1 to @2.", target_name, faction_name)
|
|
end
|
|
end
|
|
end
|
|
|
|
local function handle_command(player_name, param)
|
|
local params = {}
|
|
for p in string.gmatch(param, "[^%s]+") do
|
|
table.insert(params, p)
|
|
end
|
|
local action = params[1]
|
|
if not action or not cc[action:lower()] then
|
|
return false, S("Unknown subcommand. Run '/help factions' for help.")
|
|
end
|
|
|
|
local not_admin = not minetest.get_player_privs(player_name)[factions.priv]
|
|
return cc[action:lower()](player_name, params, not_admin)
|
|
end
|
|
|
|
minetest.register_chatcommand("factions", {
|
|
params = "create <faction> <password>: " .. S("Create a new faction") .. "\n"
|
|
.. "list: " .. S("List available factions") .. "\n"
|
|
.. "info [<faction>]: " .. S("See information about a faction") .. "\n"
|
|
.. "player_info [<player>]: " .. S("See information about a player") .. "\n"
|
|
.. "join <faction> <password>: " .. S("Join an existing faction") .. "\n"
|
|
.. "leave [<faction>]: " .. S("Leave your faction") .. "\n"
|
|
.. "kick <player> [<faction>]: "
|
|
.. S("Kick someone from your faction or from the given faction") .. "\n"
|
|
.. "disband <password> [<faction>]: "
|
|
.. S("Disband your faction or the given faction") .. "\n"
|
|
.. "passwd <password> [<faction>]: "
|
|
.. S("Change your faction's password or the password of the given faction") .." \n"
|
|
.. "chown <player> <password> [<faction>]: "
|
|
.. S("Transfer ownership of your faction") .. "\n"
|
|
.. "invite <player> <faction>: "
|
|
.. S("Add player to a faction, you need @1 priv", factions.priv) .. "\n",
|
|
|
|
description = "",
|
|
privs = {},
|
|
func = handle_command
|
|
})
|
|
|
|
-- Fix factions
|
|
do
|
|
local save_needed = false
|
|
for _, fact in pairs(facts) do
|
|
if not fact.members then
|
|
fact.members = {
|
|
[fact.owner] = true
|
|
}
|
|
end
|
|
if fact.password then
|
|
fact.password256 = factions.hash_password(fact.password)
|
|
fact.password = nil
|
|
save_needed = true
|
|
end
|
|
end
|
|
if save_needed then
|
|
save_factions()
|
|
end
|
|
end
|
|
|
|
-- Integration testing
|
|
if minetest.get_modpath("mtt") and mtt.enabled then
|
|
factions.S = S
|
|
factions.handle_command = handle_command
|
|
dofile(minetest.get_modpath(minetest.get_current_modname()) .. "/mtt.lua")
|
|
end
|
|
|
|
print("[playerfactions] loaded")
|