Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-03 14:50:30 +01:00
Remove useless URL detection and event addition from 1.13->1.12.2 ChatRewriter
Dieser Commit ist enthalten in:
Ursprung
7163d38ddf
Commit
338b8792a9
@ -16,7 +16,6 @@ import java.util.regex.Matcher;
|
|||||||
import java.util.regex.Pattern;
|
import java.util.regex.Pattern;
|
||||||
|
|
||||||
public class ChatRewriter {
|
public class ChatRewriter {
|
||||||
private static final Pattern URL = Pattern.compile("^(?:(https?)://)?([-\\w_.]{2,}\\.[a-z]{2,4})(/\\S*)?$");
|
|
||||||
private static final BaseComponent[] EMPTY_COMPONENTS = new BaseComponent[0];
|
private static final BaseComponent[] EMPTY_COMPONENTS = new BaseComponent[0];
|
||||||
private static final ComponentRewriter COMPONENT_REWRITER = new ComponentRewriter1_13();
|
private static final ComponentRewriter COMPONENT_REWRITER = new ComponentRewriter1_13();
|
||||||
|
|
||||||
@ -25,7 +24,6 @@ public class ChatRewriter {
|
|||||||
List<BaseComponent> components = new ArrayList<>();
|
List<BaseComponent> components = new ArrayList<>();
|
||||||
StringBuilder builder = new StringBuilder();
|
StringBuilder builder = new StringBuilder();
|
||||||
TextComponent component = new TextComponent();
|
TextComponent component = new TextComponent();
|
||||||
Matcher matcher = URL.matcher(message);
|
|
||||||
|
|
||||||
for (int i = 0; i < message.length(); i++) {
|
for (int i = 0; i < message.length(); i++) {
|
||||||
char c = message.charAt(i);
|
char c = message.charAt(i);
|
||||||
@ -83,31 +81,6 @@ public class ChatRewriter {
|
|||||||
}
|
}
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
int pos = message.indexOf(' ', i);
|
|
||||||
if (pos == -1) {
|
|
||||||
pos = message.length();
|
|
||||||
}
|
|
||||||
if (matcher.region(i, pos).find()) { //Web link handling
|
|
||||||
|
|
||||||
if (builder.length() > 0) {
|
|
||||||
TextComponent old = component;
|
|
||||||
component = new TextComponent(old);
|
|
||||||
old.setText(builder.toString());
|
|
||||||
builder = new StringBuilder();
|
|
||||||
components.add(old);
|
|
||||||
}
|
|
||||||
|
|
||||||
TextComponent old = component;
|
|
||||||
component = new TextComponent(old);
|
|
||||||
String urlString = message.substring(i, pos);
|
|
||||||
component.setText(urlString);
|
|
||||||
component.setClickEvent(new ClickEvent(ClickEvent.Action.OPEN_URL,
|
|
||||||
urlString.startsWith("http") ? urlString : "http://" + urlString));
|
|
||||||
components.add(component);
|
|
||||||
i += pos - i - 1;
|
|
||||||
component = old;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
builder.append(c);
|
builder.append(c);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren