ChestShop-3/src/main/java/com/Acrobot/ChestShop/Plugins/ChestShop.java

78 lines
2.2 KiB
Java

package com.Acrobot.ChestShop.Plugins;
import com.Acrobot.ChestShop.Events.ChestShopReloadEvent;
import com.Acrobot.ChestShop.Events.Protection.ProtectionCheckEvent;
import com.Acrobot.ChestShop.Permission;
import com.Acrobot.ChestShop.Signs.ChestShopSign;
import com.Acrobot.ChestShop.Utils.uBlock;
import org.bukkit.block.Block;
import org.bukkit.block.Sign;
import org.bukkit.entity.Player;
import org.bukkit.event.Event;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
import static com.Acrobot.Breeze.Utils.ImplementationAdapter.getState;
import static com.Acrobot.Breeze.Utils.BlockUtil.isSign;
/**
* @author Acrobot
*/
public class ChestShop implements Listener {
@EventHandler
public static void onReload(ChestShopReloadEvent event) {
com.Acrobot.ChestShop.ChestShop.getPlugin().loadConfig();
}
@EventHandler
public static void onProtectionCheck(ProtectionCheckEvent event) {
if (event.getResult() == Event.Result.DENY || event.isBuiltInProtectionIgnored()) {
return;
}
Block block = event.getBlock();
Player player = event.getPlayer();
if (!canAccess(player, block)) {
event.setResult(Event.Result.DENY);
}
}
public static boolean canAccess(Player player, Block block) {
if (!canBeProtected(block)) {
return true;
}
if (isSign(block)) {
Sign sign = (Sign) getState(block, false);
if (!ChestShopSign.isValid(sign)) {
return true;
}
if (!isShopMember(player, sign)) {
return false;
}
}
if (uBlock.couldBeShopContainer(block)) {
Sign sign = uBlock.getConnectedSign(block);
if (sign != null && !isShopMember(player, sign)) {
return false;
}
}
return true;
}
private static boolean canBeProtected(Block block) {
return isSign(block) || uBlock.couldBeShopContainer(block);
}
private static boolean isShopMember(Player player, Sign sign) {
return ChestShopSign.hasPermission(player, Permission.OTHER_NAME_ACCESS, sign);
}
}