Factions/src/com/massivecraft/factions/cmd/CmdFactionsMotd.java

96 lines
2.4 KiB
Java
Raw Normal View History

2014-10-02 16:12:16 +02:00
package com.massivecraft.factions.cmd;
import com.massivecraft.factions.Perm;
import com.massivecraft.factions.entity.MPerm;
2014-10-02 16:12:16 +02:00
import com.massivecraft.factions.entity.MPlayer;
2014-10-15 12:05:16 +02:00
import com.massivecraft.factions.event.EventFactionsMotdChange;
import com.massivecraft.massivecore.MassiveCore;
2015-05-06 17:04:35 +02:00
import com.massivecraft.massivecore.MassiveException;
2015-11-06 02:10:29 +01:00
import com.massivecraft.massivecore.command.requirement.RequirementHasPerm;
import com.massivecraft.massivecore.command.type.primitive.TypeString;
2014-10-02 16:12:16 +02:00
import com.massivecraft.massivecore.mixin.Mixin;
import com.massivecraft.massivecore.util.MUtil;
import com.massivecraft.massivecore.util.Txt;
public class CmdFactionsMotd extends FactionsCommand
{
// -------------------------------------------- //
// CONSTRUCT
// -------------------------------------------- //
public CmdFactionsMotd()
{
// Aliases
this.addAliases("motd");
// Parameters
this.addParameter(TypeString.get(), "new", "read", true);
2014-10-02 16:12:16 +02:00
// Requirements
2015-11-06 02:10:29 +01:00
this.addRequirements(RequirementHasPerm.get(Perm.MOTD.node));
2014-10-02 16:12:16 +02:00
}
// -------------------------------------------- //
// OVERRIDE
// -------------------------------------------- //
@Override
2015-05-06 17:04:35 +02:00
public void perform() throws MassiveException
2014-10-02 16:12:16 +02:00
{
// Read
if ( ! this.argIsSet(0))
{
2015-09-03 09:33:01 +02:00
message(msenderFaction.getMotdMessages());
2014-10-02 16:12:16 +02:00
return;
}
// MPerm
if ( ! MPerm.getPermMotd().has(msender, msenderFaction, true)) return;
2014-10-02 16:12:16 +02:00
// Args
2015-05-06 17:04:35 +02:00
String target = this.readArg();
2014-10-02 16:12:16 +02:00
target = target.trim();
target = Txt.parse(target);
// Removal
if (target != null && MassiveCore.NOTHING_REMOVE.contains(target))
2014-10-02 16:12:16 +02:00
{
target = null;
}
// Get Old
String old = null;
if (msenderFaction.hasMotd())
{
old = msenderFaction.getMotd();
}
// Target Desc
String targetDesc = target;
if (targetDesc == null) targetDesc = Txt.parse("<silver>nothing");
// NoChange
if (MUtil.equals(old, target))
{
msg("<i>The motd for %s <i>is already: <h>%s", msenderFaction.describeTo(msender, true), target);
return;
}
2014-10-15 12:05:16 +02:00
// Event
EventFactionsMotdChange event = new EventFactionsMotdChange(sender, msenderFaction, target);
event.run();
if (event.isCancelled()) return;
target = event.getNewMotd();
2014-10-02 16:12:16 +02:00
// Apply
msenderFaction.setMotd(target);
// Inform
for (MPlayer follower : msenderFaction.getMPlayers())
{
follower.msg("<i>%s <i>set your faction motd to:\n%s", Mixin.getDisplayName(sender, follower), msenderFaction.getMotd());
}
}
}