PlaceholderAPI/src/main/java/me/clip/placeholderapi/replacer/RegexReplacer.java

73 lines
2.3 KiB
Java
Raw Normal View History

/*
* This file is part of PlaceholderAPI
*
* PlaceholderAPI
2021-01-20 21:29:13 +01:00
* Copyright (c) 2015 - 2021 PlaceholderAPI Team
*
* PlaceholderAPI 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.
*
* PlaceholderAPI 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/>.
*/
package me.clip.placeholderapi.replacer;
2020-08-01 04:52:07 +02:00
import java.util.function.Function;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
2020-07-27 00:03:31 +02:00
import me.clip.placeholderapi.expansion.PlaceholderExpansion;
import org.bukkit.ChatColor;
import org.bukkit.OfflinePlayer;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
2020-08-01 04:52:07 +02:00
public final class RegexReplacer implements Replacer {
2020-08-01 04:52:07 +02:00
@NotNull
private final Pattern pattern;
2020-08-01 04:52:07 +02:00
public RegexReplacer(@NotNull final Closure closure) {
this.pattern = Pattern.compile(String
.format("\\%s((?<identifier>[a-zA-Z0-9]+)_)(?<parameters>[^%s%s]+)\\%s", closure.head,
closure.head, closure.tail, closure.tail));
}
2020-08-01 04:52:07 +02:00
@NotNull
@Override
public String apply(@NotNull final String text, @Nullable final OfflinePlayer player,
@NotNull final Function<String, @Nullable PlaceholderExpansion> lookup) {
final Matcher matcher = pattern.matcher(text);
if (!matcher.find()) {
return text;
}
2020-08-01 04:52:07 +02:00
final StringBuffer builder = new StringBuffer();
2020-08-01 04:52:07 +02:00
do {
final String identifier = matcher.group("identifier");
final String parameters = matcher.group("parameters");
2020-08-01 04:52:07 +02:00
final PlaceholderExpansion expansion = lookup.apply(identifier);
if (expansion == null) {
continue;
}
2020-08-01 04:52:07 +02:00
final String requested = expansion.onRequest(player, parameters);
matcher.appendReplacement(builder, requested != null ? requested : matcher.group(0));
}
while (matcher.find());
2020-08-01 04:52:07 +02:00
return ChatColor.translateAlternateColorCodes('&', matcher.appendTail(builder).toString());
}
}