TF-EssentialsX/Essentials/src/com/earth2me/essentials/utils/FormatUtil.java

123 lines
4.8 KiB
Java
Raw Normal View History

2013-06-08 21:31:19 +00:00
package com.earth2me.essentials.utils;
2013-10-11 02:44:41 +00:00
import net.ess3.api.IUser;
import org.bukkit.ChatColor;
2013-06-08 21:31:19 +00:00
2015-04-15 04:06:16 +00:00
import java.util.regex.Pattern;
2013-06-08 21:31:19 +00:00
2015-04-15 04:06:16 +00:00
public class FormatUtil {
//Vanilla patterns used to strip existing formats
static final transient Pattern VANILLA_COLOR_PATTERN = Pattern.compile("\u00a7+[0-9A-Fa-f]");
static final transient Pattern VANILLA_MAGIC_PATTERN = Pattern.compile("\u00a7+[Kk]");
static final transient Pattern VANILLA_FORMAT_PATTERN = Pattern.compile("\u00a7+[L-ORl-or]");
//Essentials '&' convention colour codes
static final transient Pattern REPLACE_ALL_PATTERN = Pattern.compile("(?<!&)&([0-9a-fk-orA-FK-OR])");
static final transient Pattern REPLACE_COLOR_PATTERN = Pattern.compile("(?<!&)&([0-9a-fA-F])");
static final transient Pattern REPLACE_MAGIC_PATTERN = Pattern.compile("(?<!&)&([Kk])");
static final transient Pattern REPLACE_FORMAT_PATTERN = Pattern.compile("(?<!&)&([l-orL-OR])");
static final transient Pattern REPLACE_PATTERN = Pattern.compile("&&(?=[0-9a-fk-orA-FK-OR])");
//Used to prepare xmpp output
static final transient Pattern LOGCOLOR_PATTERN = Pattern.compile("\\x1B\\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]");
static final transient Pattern URL_PATTERN = Pattern.compile("((?:(?:https?)://)?[\\w-_\\.]{2,})\\.([a-zA-Z]{2,3}(?:/\\S+)?)");
public static final Pattern IPPATTERN = Pattern.compile("^([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\.([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\." + "([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\.([01]?\\d\\d?|2[0-4]\\d|25[0-5])$");
2013-06-08 21:31:19 +00:00
2015-04-15 04:06:16 +00:00
//This method is used to simply strip the native minecraft colour codes
public static String stripFormat(final String input) {
if (input == null) {
return null;
}
return ChatColor.stripColor(input);
2015-04-15 04:06:16 +00:00
}
2015-04-15 04:06:16 +00:00
//This method is used to simply strip the & convention colour codes
public static String stripEssentialsFormat(final String input) {
if (input == null) {
return null;
}
return stripColor(input, REPLACE_ALL_PATTERN);
}
2013-06-08 21:31:19 +00:00
2015-04-15 04:06:16 +00:00
//This is the general permission sensitive message format function, checks for urls.
public static String formatMessage(final IUser user, final String permBase, final String input) {
if (input == null) {
return null;
}
String message = formatString(user, permBase, input);
if (!user.isAuthorized(permBase + ".url")) {
message = FormatUtil.blockURL(message);
}
return message;
}
2013-06-08 21:31:19 +00:00
2015-04-15 04:06:16 +00:00
//This method is used to simply replace the ess colour codes with minecraft ones, ie &c
public static String replaceFormat(final String input) {
if (input == null) {
return null;
}
return replaceColor(input, REPLACE_ALL_PATTERN);
}
2015-04-15 04:06:16 +00:00
static String replaceColor(final String input, final Pattern pattern) {
return REPLACE_PATTERN.matcher(pattern.matcher(input).replaceAll("\u00a7$1")).replaceAll("&");
}
2013-06-08 21:31:19 +00:00
2015-04-15 04:06:16 +00:00
//This is the general permission sensitive message format function, does not touch urls.
public static String formatString(final IUser user, final String permBase, final String input) {
if (input == null) {
return null;
}
String message;
if (user.isAuthorized(permBase + ".color")) {
2015-04-15 04:06:16 +00:00
message = replaceColor(input, REPLACE_COLOR_PATTERN);
} else {
message = stripColor(input, VANILLA_COLOR_PATTERN);
}
if (user.isAuthorized(permBase + ".magic")) {
message = replaceColor(message, REPLACE_MAGIC_PATTERN);
} else {
message = stripColor(message, VANILLA_MAGIC_PATTERN);
}
if (user.isAuthorized(permBase + ".format")) {
message = replaceColor(message, REPLACE_FORMAT_PATTERN);
} else {
message = stripColor(message, VANILLA_FORMAT_PATTERN);
}
return message;
}
2015-04-15 04:06:16 +00:00
public static String stripLogColorFormat(final String input) {
if (input == null) {
return null;
}
return stripColor(input, LOGCOLOR_PATTERN);
}
2015-04-15 04:06:16 +00:00
static String stripColor(final String input, final Pattern pattern) {
return pattern.matcher(input).replaceAll("");
}
2015-04-15 04:06:16 +00:00
public static String lastCode(final String input) {
int pos = input.lastIndexOf('\u00a7');
if (pos == -1 || (pos + 1) == input.length()) {
return "";
}
return input.substring(pos, pos + 2);
}
2015-04-15 04:06:16 +00:00
static String blockURL(final String input) {
if (input == null) {
return null;
}
String text = URL_PATTERN.matcher(input).replaceAll("$1 $2");
while (URL_PATTERN.matcher(text).find()) {
text = URL_PATTERN.matcher(text).replaceAll("$1 $2");
}
return text;
}
2015-04-15 04:06:16 +00:00
public static boolean validIP(String ipAddress) {
return IPPATTERN.matcher(ipAddress).matches();
}
2013-06-08 21:31:19 +00:00
}