2021-04-17 13:52:46 +02:00
|
|
|
/*
|
|
|
|
* This file is a part of the SteamWar software.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2021 SteamWar.de-Serverteam
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2021-04-17 13:50:56 +02:00
|
|
|
|
|
|
|
package de.steamwar.bausystem;
|
|
|
|
|
2021-04-17 15:31:16 +02:00
|
|
|
import de.steamwar.bausystem.config.BauServer;
|
2023-01-19 16:57:23 +01:00
|
|
|
import de.steamwar.command.CommandMetaData;
|
|
|
|
import de.steamwar.command.TypeValidator;
|
2021-04-17 15:31:16 +02:00
|
|
|
import de.steamwar.sql.BauweltMember;
|
|
|
|
import lombok.AllArgsConstructor;
|
2023-01-19 16:57:23 +01:00
|
|
|
import org.bukkit.command.CommandSender;
|
2021-04-17 15:31:16 +02:00
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
|
2023-01-19 16:57:23 +01:00
|
|
|
import java.lang.annotation.ElementType;
|
|
|
|
import java.lang.annotation.Retention;
|
|
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
import java.lang.annotation.Target;
|
2021-04-17 15:31:16 +02:00
|
|
|
import java.util.function.Predicate;
|
|
|
|
|
|
|
|
@AllArgsConstructor
|
2021-04-17 13:50:56 +02:00
|
|
|
public enum Permission {
|
2021-04-17 16:26:05 +02:00
|
|
|
|
2022-01-29 15:28:28 +01:00
|
|
|
WORLD(BauweltMember::isWorld),
|
|
|
|
WORLDEDIT(BauweltMember::isWorldEdit),
|
2021-04-21 14:48:32 +02:00
|
|
|
MEMBER(bauweltMember -> true),
|
|
|
|
OWNER(bauweltMember -> false);
|
2021-04-17 15:31:16 +02:00
|
|
|
|
2021-04-17 16:26:05 +02:00
|
|
|
private final Predicate<BauweltMember> permissionPredicate;
|
2021-04-17 15:31:16 +02:00
|
|
|
|
|
|
|
public boolean hasPermission(Player member) {
|
2021-04-17 15:32:30 +02:00
|
|
|
if (member.getUniqueId().equals(BauServer.getInstance().getOwner())) {
|
2021-04-17 15:31:16 +02:00
|
|
|
return true;
|
2021-04-17 15:32:30 +02:00
|
|
|
}
|
2021-04-17 15:31:16 +02:00
|
|
|
|
|
|
|
BauweltMember bauMember = BauweltMember.getBauMember(BauServer.getInstance().getOwner(), member.getUniqueId());
|
|
|
|
if (bauMember == null) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return permissionPredicate.test(bauMember);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean hasPermission(Player member, Permission permission) {
|
|
|
|
return permission.hasPermission(member);
|
|
|
|
}
|
2023-01-19 16:57:23 +01:00
|
|
|
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
|
|
@Target(ElementType.PARAMETER)
|
|
|
|
@CommandMetaData.Parameter({Player.class})
|
|
|
|
@CommandMetaData.ImplicitValidator(handler = Perm.Handler.class, order = -10)
|
|
|
|
public @interface Perm {
|
|
|
|
Permission value();
|
|
|
|
String message() default "";
|
|
|
|
|
|
|
|
class Handler implements TypeValidator<Player> {
|
|
|
|
|
|
|
|
private Permission permission;
|
|
|
|
private String message;
|
|
|
|
|
|
|
|
public Handler(Perm perm) {
|
|
|
|
this.permission = perm.value();
|
|
|
|
this.message = perm.message();
|
|
|
|
if (message != null && message.isEmpty()) message = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean validate(CommandSender commandSender, Player player, MessageSender messageSender) {
|
|
|
|
if (message == null) {
|
|
|
|
return permission.hasPermission(player);
|
|
|
|
}
|
|
|
|
return !messageSender.send(!permission.hasPermission((Player) commandSender), message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-17 16:43:27 +02:00
|
|
|
}
|