From 60f81c4732082b4d4370b4cefd95a23be6e25cbf Mon Sep 17 00:00:00 2001 From: Pierre Maurice Schwang Date: Sat, 22 Feb 2025 21:31:25 +0100 Subject: [PATCH] chore/feat: don't query full plot list twice --- .../com/plotsquared/core/command/Visit.java | 36 ++++++++----------- 1 file changed, 14 insertions(+), 22 deletions(-) diff --git a/Core/src/main/java/com/plotsquared/core/command/Visit.java b/Core/src/main/java/com/plotsquared/core/command/Visit.java index 1eeea894d..0b0143f5b 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Visit.java +++ b/Core/src/main/java/com/plotsquared/core/command/Visit.java @@ -69,11 +69,7 @@ public class Visit extends Command { final @NonNull PlotPlayer player, final @NonNull PlotQuery query, final PlotArea sortByArea, final RunnableVal3 confirm, final RunnableVal2 whenDone, int page ) { - // We get the query once, - // then we get it another time further on - final List unsorted = query.asList(); - - if (unsorted.size() > 1) { + if (query.hasMinimumMatches(2)) { query.whereBasePlot(); } @@ -261,12 +257,9 @@ public class Visit extends Command { if (throwable instanceof TimeoutException) { // The request timed out player.sendMessage(TranslatableCaption.of("players.fetching_players_timeout")); - } else if (uuid != null && (Settings.Teleport.VISIT_MERGED_OWNERS - ? !PlotQuery.newQuery().ownersInclude(uuid).anyMatch() - : !PlotQuery.newQuery().ownedBy(uuid).anyMatch())) { - // It was a valid UUID but the player has no plots - player.sendMessage(TranslatableCaption.of("errors.player_no_plots")); - } else if (uuid == null) { + return; + } + if (uuid == null){ // player not found, so we assume it's an alias if no page was provided if (finalPage == Integer.MIN_VALUE) { this.visit( @@ -283,18 +276,17 @@ public class Visit extends Command { TagResolver.resolver("value", Tag.inserting(Component.text(finalArgs[0]))) ); } - } else { - this.visit( - player, - Settings.Teleport.VISIT_MERGED_OWNERS - ? PlotQuery.newQuery().ownersInclude(uuid).whereBasePlot() - : PlotQuery.newQuery().ownedBy(uuid).whereBasePlot(), - null, - confirm, - whenDone, - finalPage - ); + return; } + final PlotQuery query = Settings.Teleport.VISIT_MERGED_OWNERS + ? PlotQuery.newQuery().ownersInclude(uuid) + : PlotQuery.newQuery().ownedBy(uuid); + if (!query.anyMatch()) { + // It was a valid UUID but the player has no plots + player.sendMessage(TranslatableCaption.of("errors.player_no_plots")); + return; + } + this.visit(player, query.whereBasePlot(), null, confirm, whenDone, finalPage); }); } else { // Try to parse a plot