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

93 lines
2.9 KiB
Java
Raw Normal View History

package com.massivecraft.factions.cmd;
import com.massivecraft.factions.cmd.type.TypeMPlayer;
2017-04-20 11:05:56 +02:00
import com.massivecraft.factions.entity.Invitation;
import com.massivecraft.factions.entity.MPerm;
import com.massivecraft.factions.entity.MPlayer;
import com.massivecraft.factions.event.EventFactionsInvitedChange;
2015-02-12 12:00:55 +01:00
import com.massivecraft.massivecore.MassiveException;
import com.massivecraft.massivecore.command.type.container.TypeSet;
2015-09-08 19:18:45 +02:00
import com.massivecraft.massivecore.mson.Mson;
2017-04-20 11:05:56 +02:00
import com.massivecraft.massivecore.util.IdUtil;
2015-09-08 19:18:45 +02:00
import com.massivecraft.massivecore.util.Txt;
2017-03-24 13:05:58 +01:00
import org.bukkit.ChatColor;
import java.util.Collection;
public class CmdFactionsInviteAdd extends FactionsCommand
{
// -------------------------------------------- //
// CONSTRUCT
// -------------------------------------------- //
2017-03-12 20:53:56 +01:00
public CmdFactionsInviteAdd()
{
// Parameters
2015-11-06 02:10:29 +01:00
this.addParameter(TypeSet.get(TypeMPlayer.get()), "players", true);
}
// -------------------------------------------- //
// OVERRIDE
// -------------------------------------------- //
@Override
2015-02-12 12:00:55 +01:00
public void perform() throws MassiveException
{
// Args
2015-05-06 17:04:35 +02:00
Collection<MPlayer> mplayers = this.readArg();
2017-04-20 11:05:56 +02:00
String senderId = IdUtil.getId(sender);
long creationMillis = System.currentTimeMillis();
// MPerm
if ( ! MPerm.getPermInvite().has(msender, msenderFaction, true)) return;
for (MPlayer mplayer : mplayers)
{
// Already member?
if (mplayer.getFaction() == msenderFaction)
{
2017-05-28 18:23:14 +02:00
msg("%s<i> is already a member of %s<i>.", mplayer.getName(), msenderFaction.getName(msender));
continue;
}
// Already invited?
boolean isInvited = msenderFaction.isInvited(mplayer);
if ( ! isInvited)
{
// Event
EventFactionsInvitedChange event = new EventFactionsInvitedChange(sender, mplayer, msenderFaction, isInvited);
event.run();
if (event.isCancelled()) continue;
isInvited = event.isNewInvited();
// Inform
mplayer.msg("%s<i> invited you to %s<i>.", msender.describeTo(mplayer, true), msenderFaction.describeTo(mplayer));
msenderFaction.msg("%s<i> invited %s<i> to your faction.", msender.describeTo(msenderFaction, true), mplayer.describeTo(msenderFaction));
// Apply
2017-04-20 11:05:56 +02:00
Invitation invitation = new Invitation(senderId, creationMillis);
msenderFaction.invite(mplayer.getId(), invitation);
2015-11-08 17:59:32 +01:00
msenderFaction.changed();
}
else
{
2015-09-08 19:18:45 +02:00
// Mson
2016-02-25 22:28:09 +01:00
String command = CmdFactions.get().cmdFactionsInvite.cmdFactionsInviteRemove.getCommandLine(mplayer.getName());
2015-09-08 19:18:45 +02:00
String tooltip = Txt.parse("<i>Click to <c>%s<i>.", command);
Mson remove = Mson.mson(
mson("You might want to remove him. ").color(ChatColor.YELLOW),
mson("Click to " + command).color(ChatColor.RED).tooltip(tooltip).suggest(command)
);
// Inform
2017-05-28 18:23:14 +02:00
msg("%s <i>is already invited to %s<i>.", mplayer.getName(), msenderFaction.getName(msender));
2015-09-08 19:18:45 +02:00
message(remove);
}
}
}
}