2019-11-21 14:50:51 +01:00
package com.massivecraft.factions.cmd.alts ;
import com.massivecraft.factions.Conf ;
import com.massivecraft.factions.FPlayer ;
import com.massivecraft.factions.Faction ;
import com.massivecraft.factions.FactionsPlugin ;
2020-01-02 02:59:31 +01:00
import com.massivecraft.factions.cmd.Aliases ;
2019-11-21 14:50:51 +01:00
import com.massivecraft.factions.cmd.CommandContext ;
import com.massivecraft.factions.cmd.CommandRequirements ;
import com.massivecraft.factions.cmd.FCommand ;
2019-12-25 04:19:49 +01:00
import com.massivecraft.factions.cmd.audit.FLogType ;
2019-11-21 14:50:51 +01:00
import com.massivecraft.factions.event.FPlayerLeaveEvent ;
import com.massivecraft.factions.struct.Permission ;
import com.massivecraft.factions.struct.Role ;
2019-12-25 04:19:49 +01:00
import com.massivecraft.factions.util.CC ;
2019-11-21 14:50:51 +01:00
import com.massivecraft.factions.zcore.fperms.Access ;
import com.massivecraft.factions.zcore.fperms.PermissableAction ;
import com.massivecraft.factions.zcore.util.TL ;
import org.bukkit.Bukkit ;
import org.bukkit.command.ConsoleCommandSender ;
public class CmdKickAlt extends FCommand {
2019-12-02 19:55:38 +01:00
/ * *
* @author Driftay
* /
2020-01-18 08:18:38 +01:00
public CmdKickAlt ( ) {
2019-11-21 14:50:51 +01:00
super ( ) ;
2020-01-02 02:59:31 +01:00
this . aliases . addAll ( Aliases . alts_kick ) ;
2019-11-21 14:50:51 +01:00
this . requiredArgs . add ( " player name " ) ;
this . requirements = new CommandRequirements . Builder ( Permission . KICK )
. playerOnly ( )
. memberOnly ( )
. withAction ( PermissableAction . KICK )
. build ( ) ;
}
@Override
public void perform ( CommandContext context ) {
if ( ! FactionsPlugin . getInstance ( ) . getConfig ( ) . getBoolean ( " f-alts.Enabled " , false ) ) {
2019-12-03 11:16:37 +01:00
context . msg ( TL . GENERIC_DISABLED , " Faction Alts " ) ;
2019-11-21 14:50:51 +01:00
return ;
}
FPlayer toKick = context . argIsSet ( 0 ) ? context . argAsBestFPlayerMatch ( 0 ) : null ;
if ( toKick = = null ) {
context . msg ( TL . COMMAND_ALTKICK_NOTMEMBER ) ;
return ;
}
if ( context . fPlayer = = toKick ) {
context . msg ( TL . COMMAND_KICK_SELF ) ;
context . msg ( TL . GENERIC_YOUMAYWANT . toString ( ) + FactionsPlugin . instance . cmdBase . cmdLeave . getUsageTemplate ( context ) ) ;
return ;
}
Faction toKickFaction = toKick . getFaction ( ) ;
if ( toKickFaction . isWilderness ( ) ) {
context . sender . sendMessage ( TL . COMMAND_KICK_NONE . toString ( ) ) ;
return ;
}
// players with admin-level "disband" permission can bypass these
// requirements
if ( ! Permission . KICK_ANY . has ( context . sender ) ) {
if ( toKickFaction ! = context . faction ) {
context . msg ( TL . COMMAND_KICK_NOTMEMBER , toKick . describeTo ( context . fPlayer , true ) , context . faction . describeTo ( context . fPlayer ) ) ;
return ;
}
if ( ! toKick . isAlt ( ) ) {
context . msg ( TL . COMMAND_ALTKICK_NOTALT ) ;
return ;
}
if ( ! Conf . canLeaveWithNegativePower & & toKick . getPower ( ) < 0 ) {
context . msg ( TL . COMMAND_KICK_NEGATIVEPOWER ) ;
return ;
}
}
Access access = context . faction . getAccess ( context . fPlayer , PermissableAction . KICK ) ;
// This statement allows us to check if they've specifically denied it,
// or default to
// the old setting of allowing moderators to kick
2020-01-18 08:18:38 +01:00
if ( access ! = Access . ALLOW & & ! context . assertMinRole ( Role . MODERATOR ) ) {
2019-11-21 14:50:51 +01:00
context . msg ( TL . GENERIC_NOPERMISSION , " kick " ) ;
return ;
}
// if economy is enabled, they're not on the bypass list, and this
// command has a cost set, make sure they can pay
if ( ! context . canAffordCommand ( Conf . econCostKick , TL . COMMAND_KICK_TOKICK . toString ( ) ) ) {
return ;
}
// trigger the leave event (cancellable) [reason:kicked]
FPlayerLeaveEvent event = new FPlayerLeaveEvent ( toKick , toKick . getFaction ( ) , FPlayerLeaveEvent . PlayerLeaveReason . KICKED ) ;
Bukkit . getServer ( ) . getPluginManager ( ) . callEvent ( event ) ;
if ( event . isCancelled ( ) ) {
return ;
}
// then make 'em pay (if applicable)
if ( ! context . payForCommand ( Conf . econCostKick , TL . COMMAND_KICK_TOKICK . toString ( ) , TL . COMMAND_KICK_FORKICK . toString ( ) ) ) {
return ;
}
toKickFaction . msg ( TL . COMMAND_KICK_FACTION , context . fPlayer . describeTo ( toKickFaction , true ) , toKick . describeTo ( toKickFaction , true ) ) ;
toKick . msg ( TL . COMMAND_KICK_KICKED , context . fPlayer . describeTo ( toKick , true ) , toKickFaction . describeTo ( toKick ) ) ;
if ( toKickFaction ! = context . faction ) {
context . msg ( TL . COMMAND_KICK_KICKS , toKick . describeTo ( context . fPlayer ) , toKickFaction . describeTo ( context . fPlayer ) ) ;
}
if ( Conf . logFactionKick ) {
FactionsPlugin . instance . log ( ( context . sender instanceof ConsoleCommandSender ? " A console command " : context . fPlayer . getName ( ) ) + " kicked " + toKick . getName ( ) + " from the faction: "
+ toKickFaction . getTag ( ) ) ;
}
// SHOULD NOT BE POSSIBLE BUT KEPT INCASE
if ( toKick . getRole ( ) = = Role . LEADER ) {
toKickFaction . promoteNewLeader ( ) ;
}
2019-12-25 04:19:49 +01:00
FactionsPlugin . instance . logFactionEvent ( toKickFaction , FLogType . INVITES , context . fPlayer . getName ( ) , CC . Red + " kicked alt " , toKick . getName ( ) ) ;
2019-11-21 14:50:51 +01:00
toKickFaction . removeAltPlayer ( toKick ) ;
toKickFaction . deinvite ( toKick ) ;
toKick . resetFactionData ( ) ;
}
@Override
public TL getUsageTranslation ( ) {
return TL . COMMAND_ALTKICK_DESCRIPTION ;
}
}