82 lines
2.3 KiB
Java
82 lines
2.3 KiB
Java
package com.massivecraft.factions.cmd;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import com.massivecraft.factions.Perm;
|
|
import com.massivecraft.factions.cmd.type.TypeFaction;
|
|
import com.massivecraft.factions.entity.Faction;
|
|
import com.massivecraft.factions.entity.FactionColl;
|
|
import com.massivecraft.factions.entity.MPerm;
|
|
import com.massivecraft.factions.event.EventFactionsNameChange;
|
|
import com.massivecraft.factions.util.MiscUtil;
|
|
import com.massivecraft.massivecore.MassiveException;
|
|
import com.massivecraft.massivecore.command.requirement.RequirementHasPerm;
|
|
import com.massivecraft.massivecore.command.type.primitive.TypeString;
|
|
|
|
public class CmdFactionsName extends FactionsCommand
|
|
{
|
|
// -------------------------------------------- //
|
|
// CONSTRUCT
|
|
// -------------------------------------------- //
|
|
|
|
public CmdFactionsName()
|
|
{
|
|
// Aliases
|
|
this.addAliases("name");
|
|
|
|
// Parameters
|
|
this.addParameter(TypeString.get(), "new name");
|
|
this.addParameter(TypeFaction.get(), "faction", "you");
|
|
|
|
// Requirements
|
|
this.addRequirements(RequirementHasPerm.get(Perm.NAME));
|
|
}
|
|
|
|
// -------------------------------------------- //
|
|
// OVERRIDE
|
|
// -------------------------------------------- //
|
|
|
|
@Override
|
|
public void perform() throws MassiveException
|
|
{
|
|
// Args
|
|
String newName = this.readArg();
|
|
Faction faction = this.readArg(msenderFaction);
|
|
|
|
// MPerm
|
|
if ( ! MPerm.getPermName().has(msender, faction, true)) return;
|
|
|
|
// TODO does not first test cover selfcase?
|
|
if (FactionColl.get().isNameTaken(newName) && ! MiscUtil.getComparisonString(newName).equals(faction.getComparisonName()))
|
|
{
|
|
msg("<b>That name is already taken");
|
|
return;
|
|
}
|
|
|
|
ArrayList<String> errors = new ArrayList<String>();
|
|
errors.addAll(FactionColl.get().validateName(newName));
|
|
if (errors.size() > 0)
|
|
{
|
|
message(errors);
|
|
return;
|
|
}
|
|
|
|
// Event
|
|
EventFactionsNameChange event = new EventFactionsNameChange(sender, faction, newName);
|
|
event.run();
|
|
if (event.isCancelled()) return;
|
|
newName = event.getNewName();
|
|
|
|
// Apply
|
|
faction.setName(newName);
|
|
|
|
// Inform
|
|
faction.msg("%s<i> changed your faction name to %s", msender.describeTo(faction, true), faction.getName(faction));
|
|
if (msenderFaction != faction)
|
|
{
|
|
msg("<i>You changed the faction name to %s", faction.getName(msender));
|
|
}
|
|
}
|
|
|
|
}
|