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
|
2020-08-15 14:59:29 +02:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2020-04-16 04:52:39 +02:00
|
|
|
*/
|
2020-04-15 21:26:54 +02:00
|
|
|
package com.plotsquared.bukkit.placeholder;
|
2020-02-16 20:33:24 +01:00
|
|
|
|
2020-05-19 00:28:52 +02:00
|
|
|
import com.plotsquared.core.PlotSquared;
|
2020-04-15 21:26:54 +02:00
|
|
|
import com.plotsquared.core.player.PlotPlayer;
|
2020-02-16 20:33:24 +01:00
|
|
|
import me.clip.placeholderapi.PlaceholderAPIPlugin;
|
|
|
|
import me.clip.placeholderapi.expansion.PlaceholderExpansion;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
|
2020-07-14 20:41:08 +02:00
|
|
|
public class PAPIPlaceholders extends PlaceholderExpansion {
|
2020-02-16 20:33:24 +01:00
|
|
|
|
2020-07-14 20:41:08 +02:00
|
|
|
public PAPIPlaceholders() {
|
2020-02-16 20:33:24 +01:00
|
|
|
}
|
|
|
|
|
2020-04-30 12:01:52 +02:00
|
|
|
@Override public boolean persist() {
|
2020-02-16 20:33:24 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-04-30 12:01:52 +02:00
|
|
|
@Override public boolean canRegister() {
|
2020-02-16 20:33:24 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-04-30 12:01:52 +02:00
|
|
|
@Override public String getAuthor() {
|
2020-07-14 13:17:21 +02:00
|
|
|
return "IntellectualSites";
|
2020-02-16 20:33:24 +01:00
|
|
|
}
|
|
|
|
|
2020-04-30 12:01:52 +02:00
|
|
|
@Override public String getIdentifier() {
|
2020-02-16 20:33:24 +01:00
|
|
|
return "plotsquared";
|
|
|
|
}
|
|
|
|
|
2020-04-30 12:01:52 +02:00
|
|
|
@Override public String getVersion() {
|
2020-07-14 13:17:21 +02:00
|
|
|
return "3";
|
2020-02-16 20:33:24 +01:00
|
|
|
}
|
|
|
|
|
2020-04-30 12:01:52 +02:00
|
|
|
@Override public String onPlaceholderRequest(Player p, String identifier) {
|
2020-07-24 18:52:05 +02:00
|
|
|
final PlotPlayer<?> pl = PlotSquared.platform().getPlayerManager().getPlayerIfExists(p.getUniqueId());
|
2020-04-23 15:16:06 +02:00
|
|
|
|
|
|
|
if (pl == null) {
|
|
|
|
return "";
|
|
|
|
}
|
2020-02-16 20:33:24 +01:00
|
|
|
|
2020-07-14 13:14:02 +02:00
|
|
|
// PAPI specific ones that don't translate well over into other placeholder APIs
|
2020-02-16 20:33:24 +01:00
|
|
|
if (identifier.startsWith("has_plot_")) {
|
2020-06-25 14:08:44 +02:00
|
|
|
identifier = identifier.substring("has_plot_".length());
|
|
|
|
if (identifier.isEmpty())
|
2020-04-23 10:06:37 +02:00
|
|
|
return "";
|
2020-02-16 20:33:24 +01:00
|
|
|
|
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-06-25 14:08:44 +02:00
|
|
|
identifier = identifier.substring("plot_count_".length());
|
|
|
|
if (identifier.isEmpty())
|
2020-04-23 10:06:37 +02:00
|
|
|
return "";
|
2020-02-16 20:33:24 +01:00
|
|
|
|
|
|
|
return String.valueOf(pl.getPlotCount(identifier));
|
|
|
|
}
|
|
|
|
|
2020-07-14 13:14:02 +02:00
|
|
|
// PlotSquared placeholders
|
|
|
|
return PlotSquared.get().getPlaceholderRegistry().getPlaceholderValue(identifier, pl);
|
2020-06-23 01:20:17 +02:00
|
|
|
}
|
|
|
|
|
2020-02-16 20:33:24 +01:00
|
|
|
}
|