package com.massivecraft.factions.cmd; import com.massivecraft.factions.cmd.type.TypeMPlayer; import com.massivecraft.factions.entity.Invitation; import com.massivecraft.factions.entity.MPerm; import com.massivecraft.factions.entity.MPlayer; import com.massivecraft.factions.event.EventFactionsInvitedChange; import com.massivecraft.massivecore.MassiveException; import com.massivecraft.massivecore.command.type.container.TypeSet; import com.massivecraft.massivecore.mson.Mson; import com.massivecraft.massivecore.util.IdUtil; import com.massivecraft.massivecore.util.Txt; import org.bukkit.ChatColor; import java.util.Collection; public class CmdFactionsInviteAdd extends FactionsCommand { // -------------------------------------------- // // CONSTRUCT // -------------------------------------------- // public CmdFactionsInviteAdd() { // Parameters this.addParameter(TypeSet.get(TypeMPlayer.get()), "players", true); } // -------------------------------------------- // // OVERRIDE // -------------------------------------------- // @Override public void perform() throws MassiveException { // Args Collection mplayers = this.readArg(); 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) { msg("%s is already a member of %s.", 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 invited you to %s.", msender.describeTo(mplayer, true), msenderFaction.describeTo(mplayer)); msenderFaction.msg("%s invited %s to your faction.", msender.describeTo(msenderFaction, true), mplayer.describeTo(msenderFaction)); // Apply Invitation invitation = new Invitation(senderId, creationMillis); msenderFaction.invite(mplayer.getId(), invitation); msenderFaction.changed(); } else { // Mson String command = CmdFactions.get().cmdFactionsInvite.cmdFactionsInviteRemove.getCommandLine(mplayer.getName()); String tooltip = Txt.parse("Click to %s.", 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 msg("%s is already invited to %s.", mplayer.getName(), msenderFaction.getName(msender)); message(remove); } } } }