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;
|
|
|
|
import de.steamwar.sql.BauweltMember;
|
2021-04-17 16:26:05 +02:00
|
|
|
import de.steamwar.sql.SteamwarUser;
|
2021-04-17 15:31:16 +02:00
|
|
|
import lombok.AllArgsConstructor;
|
2021-04-17 16:26:05 +02:00
|
|
|
import org.bukkit.Bukkit;
|
2021-04-17 15:31:16 +02:00
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
2021-04-17 16:43:27 +02:00
|
|
|
}
|