2020-04-16 04:52:39 +02:00
|
|
|
/*
|
|
|
|
* _____ _ _ _____ _
|
|
|
|
* | __ \| | | | / ____| | |
|
|
|
|
* | |__) | | ___ | |_| (___ __ _ _ _ __ _ _ __ ___ __| |
|
|
|
|
* | ___/| |/ _ \| __|\___ \ / _` | | | |/ _` | '__/ _ \/ _` |
|
|
|
|
* | | | | (_) | |_ ____) | (_| | |_| | (_| | | | __/ (_| |
|
|
|
|
* |_| |_|\___/ \__|_____/ \__, |\__,_|\__,_|_| \___|\__,_|
|
|
|
|
* | |
|
|
|
|
* |_|
|
|
|
|
* PlotSquared plot management system for Minecraft
|
|
|
|
* Copyright (C) 2020 IntellectualSites
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2020-04-15 21:26:54 +02:00
|
|
|
package com.plotsquared.bukkit.placeholder;
|
2020-02-16 20:33:24 +01:00
|
|
|
|
2020-04-15 21:26:54 +02:00
|
|
|
import com.plotsquared.core.player.PlotPlayer;
|
2020-04-23 10:06:37 +02:00
|
|
|
import com.plotsquared.core.plot.Plot;
|
2020-04-15 21:26:54 +02:00
|
|
|
import com.plotsquared.core.util.uuid.UUIDHandler;
|
2020-02-16 20:33:24 +01:00
|
|
|
import me.clip.placeholderapi.PlaceholderAPIPlugin;
|
|
|
|
import me.clip.placeholderapi.expansion.PlaceholderExpansion;
|
|
|
|
import org.bukkit.Bukkit;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
|
|
|
|
import java.util.Set;
|
|
|
|
import java.util.UUID;
|
|
|
|
|
|
|
|
public class Placeholders extends PlaceholderExpansion {
|
|
|
|
|
2020-04-23 10:06:37 +02:00
|
|
|
public Placeholders() {
|
2020-02-16 20:33:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean persist() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canRegister() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getAuthor() {
|
|
|
|
return "NotMyFault";
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getIdentifier() {
|
|
|
|
return "plotsquared";
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getVersion() {
|
2020-04-23 10:06:37 +02:00
|
|
|
return "2.4";
|
2020-02-16 20:33:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String onPlaceholderRequest(Player p, String identifier) {
|
|
|
|
final PlotPlayer pl = PlotPlayer.get(p.getName());
|
2020-04-23 15:16:06 +02:00
|
|
|
|
|
|
|
if (pl == null) {
|
|
|
|
return "";
|
|
|
|
}
|
2020-02-16 20:33:24 +01:00
|
|
|
|
|
|
|
if (identifier.startsWith("has_plot_")) {
|
2020-04-23 10:06:37 +02:00
|
|
|
if (identifier.split("has_plot_").length != 2)
|
|
|
|
return "";
|
2020-02-16 20:33:24 +01:00
|
|
|
|
|
|
|
identifier = identifier.split("has_plot_")[1];
|
2020-04-23 10:06:37 +02:00
|
|
|
return pl.getPlotCount(identifier) > 0 ?
|
|
|
|
PlaceholderAPIPlugin.booleanTrue() :
|
|
|
|
PlaceholderAPIPlugin.booleanFalse();
|
2020-02-16 20:33:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (identifier.startsWith("plot_count_")) {
|
2020-04-23 10:06:37 +02:00
|
|
|
if (identifier.split("plot_count_").length != 2)
|
|
|
|
return "";
|
2020-02-16 20:33:24 +01:00
|
|
|
|
|
|
|
identifier = identifier.split("plot_count_")[1];
|
|
|
|
return String.valueOf(pl.getPlotCount(identifier));
|
|
|
|
}
|
|
|
|
|
2020-04-23 15:16:06 +02:00
|
|
|
switch (identifier) {
|
|
|
|
case "currentplot_world": {
|
|
|
|
return p.getWorld().getName();
|
|
|
|
}
|
|
|
|
case "has_plot": {
|
|
|
|
return (pl.getPlotCount() > 0) ?
|
|
|
|
PlaceholderAPIPlugin.booleanTrue() :
|
|
|
|
PlaceholderAPIPlugin.booleanFalse();
|
|
|
|
}
|
|
|
|
case "allowed_plot_count": {
|
|
|
|
return String.valueOf(pl.getAllowedPlots());
|
|
|
|
}
|
|
|
|
case "plot_count": {
|
|
|
|
return String.valueOf(pl.getPlotCount());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Plot plot = pl.getCurrentPlot();
|
|
|
|
|
|
|
|
if (plot == null) {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2020-02-16 20:33:24 +01:00
|
|
|
switch (identifier) {
|
|
|
|
case "currentplot_alias": {
|
2020-04-23 15:16:06 +02:00
|
|
|
return plot.getAlias();
|
2020-02-16 20:33:24 +01:00
|
|
|
}
|
|
|
|
case "currentplot_owner": {
|
2020-04-23 15:16:06 +02:00
|
|
|
final Set<UUID> o = plot.getOwners();
|
2020-02-16 20:33:24 +01:00
|
|
|
if (o == null || o.isEmpty()) {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
final UUID uid = (UUID) o.toArray()[0];
|
|
|
|
if (uid == null) {
|
|
|
|
return "";
|
|
|
|
}
|
2020-04-23 10:21:52 +02:00
|
|
|
String name = UUIDHandler.getName(uid);
|
2020-04-23 10:06:37 +02:00
|
|
|
|
2020-04-23 10:21:52 +02:00
|
|
|
if (name != null) {
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
|
|
|
name = Bukkit.getOfflinePlayer(uid).getName();
|
|
|
|
return name != null ? name : "unknown";
|
2020-02-16 20:33:24 +01:00
|
|
|
}
|
|
|
|
case "currentplot_members": {
|
2020-04-23 15:16:06 +02:00
|
|
|
if (plot.getMembers() == null && plot.getTrusted() == null) {
|
2020-02-16 20:33:24 +01:00
|
|
|
return "0";
|
|
|
|
}
|
2020-04-23 15:16:06 +02:00
|
|
|
return String.valueOf(plot.getMembers().size() + plot.getTrusted().size());
|
2020-02-16 20:33:24 +01:00
|
|
|
}
|
|
|
|
case "currentplot_members_added": {
|
2020-04-23 15:16:06 +02:00
|
|
|
if (plot.getMembers() == null) {
|
2020-02-16 20:33:24 +01:00
|
|
|
return "0";
|
|
|
|
}
|
2020-04-23 15:16:06 +02:00
|
|
|
return String.valueOf(plot.getMembers().size());
|
2020-02-16 20:33:24 +01:00
|
|
|
}
|
|
|
|
case "currentplot_members_trusted": {
|
2020-04-23 15:16:06 +02:00
|
|
|
if (plot.getTrusted() == null) {
|
2020-02-16 20:33:24 +01:00
|
|
|
return "0";
|
|
|
|
}
|
|
|
|
return String.valueOf(plot.getTrusted().size());
|
|
|
|
}
|
|
|
|
case "currentplot_members_denied": {
|
2020-04-23 15:16:06 +02:00
|
|
|
if (plot.getDenied() == null) {
|
2020-02-16 20:33:24 +01:00
|
|
|
return "0";
|
|
|
|
}
|
2020-04-23 15:16:06 +02:00
|
|
|
return String.valueOf(plot.getDenied().size());
|
2020-02-16 20:33:24 +01:00
|
|
|
}
|
|
|
|
case "has_build_rights": {
|
2020-04-23 15:16:06 +02:00
|
|
|
return plot.isAdded(pl.getUUID()) ?
|
|
|
|
PlaceholderAPIPlugin.booleanTrue() :
|
|
|
|
PlaceholderAPIPlugin.booleanFalse();
|
2020-02-16 20:33:24 +01:00
|
|
|
}
|
|
|
|
case "currentplot_x": {
|
2020-04-23 10:06:37 +02:00
|
|
|
return String.valueOf(plot.getId().getX());
|
2020-02-16 20:33:24 +01:00
|
|
|
}
|
|
|
|
case "currentplot_y": {
|
2020-04-23 10:06:37 +02:00
|
|
|
return String.valueOf(plot.getId().getY());
|
2020-02-16 20:33:24 +01:00
|
|
|
}
|
|
|
|
case "currentplot_xy": {
|
2020-04-23 15:16:06 +02:00
|
|
|
return plot.getId().getX() + ";" + plot.getId().getY();
|
2020-02-16 20:33:24 +01:00
|
|
|
}
|
|
|
|
case "currentplot_rating": {
|
|
|
|
return String.valueOf(plot.getAverageRating());
|
|
|
|
}
|
|
|
|
case "currentplot_biome": {
|
2020-04-07 20:19:39 +02:00
|
|
|
return plot.getBiomeSynchronous() + "";
|
2020-02-16 20:33:24 +01:00
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2020-04-23 10:06:37 +02:00
|
|
|
return "";
|
2020-02-16 20:33:24 +01:00
|
|
|
}
|
|
|
|
}
|