Revert broken changes to visit

This commit is contained in:
Jesse Boyd 2018-01-10 17:15:05 +11:00
parent bc8b2af164
commit 4716104951
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F

View File

@ -5,7 +5,6 @@ import com.intellectualcrafters.plot.config.C;
import com.intellectualcrafters.plot.config.Settings; import com.intellectualcrafters.plot.config.Settings;
import com.intellectualcrafters.plot.object.Plot; import com.intellectualcrafters.plot.object.Plot;
import com.intellectualcrafters.plot.object.PlotArea; import com.intellectualcrafters.plot.object.PlotArea;
import com.intellectualcrafters.plot.object.PlotId;
import com.intellectualcrafters.plot.object.PlotPlayer; import com.intellectualcrafters.plot.object.PlotPlayer;
import com.intellectualcrafters.plot.object.RunnableVal2; import com.intellectualcrafters.plot.object.RunnableVal2;
import com.intellectualcrafters.plot.object.RunnableVal3; import com.intellectualcrafters.plot.object.RunnableVal3;
@ -18,7 +17,6 @@ import com.plotsquared.general.commands.CommandDeclaration;
import java.util.Collection; import java.util.Collection;
import java.util.Collections; import java.util.Collections;
import java.util.HashSet;
import java.util.Iterator; import java.util.Iterator;
import java.util.List; import java.util.List;
import java.util.UUID; import java.util.UUID;
@ -33,9 +31,6 @@ import java.util.UUID;
category = CommandCategory.TELEPORT) category = CommandCategory.TELEPORT)
public class Visit extends Command { public class Visit extends Command {
private static final int PAGE_OUT_OF_RANGE = -998899; // this is to flag Page argument is to long. Can occur if someone enters a large number (some player uses numeric names)
private final int MaxPageRange = 100;
public Visit() { public Visit() {
super(MainCommand.getInstance(), true); super(MainCommand.getInstance(), true);
} }
@ -55,66 +50,54 @@ public class Visit extends Command {
PlotArea sortByArea = player.getApplicablePlotArea(); PlotArea sortByArea = player.getApplicablePlotArea();
boolean shouldSortByArea = Settings.Teleport.PER_WORLD_VISIT; boolean shouldSortByArea = Settings.Teleport.PER_WORLD_VISIT;
switch (args.length) { switch (args.length) {
case 2: case 3:
if (MathMan.isInteger(args[1])) { if (!MathMan.isInteger(args[1])) {
page = tryReadPageIdFromArg(player, args[1]); C.NOT_VALID_NUMBER.send(player, "(1, ∞)");
} else { C.COMMAND_SYNTAX.send(player, getUsage());
C.COMMAND_SYNTAX.send(player, getUsage()); return;
return; }
} page = Integer.parseInt(args[2]);
// don't add break here. we handle the first argument in case 1 case 2:
case 1: if (!MathMan.isInteger(args[1])) {
boolean isCorrectSyntaxWithoutResults = false; sortByArea = PS.get().getPlotAreaByString(args[1]);
Collection<Plot> plots = new HashSet<Plot>(); if (sortByArea == null) {
if (args[0] != null) { C.NOT_VALID_NUMBER.send(player, "(1, ∞)");
plots = getPlotsFromSingleArgument(args[0], sortByArea); C.COMMAND_SYNTAX.send(player, getUsage());
if (!plots.isEmpty()) { return;
unsorted = plots; }
} else { UUID user = UUIDHandler.getUUIDFromString(args[0]);
if (MathMan.isInteger(args[0])) { if (user == null) {
page = tryReadPageIdFromArg(player, args[0]); C.COMMAND_SYNTAX.send(player, getUsage());
return;
if (page != PAGE_OUT_OF_RANGE && page != Integer.MIN_VALUE) { }
unsorted = PS.get().getPlots(player); unsorted = PS.get().getBasePlots(user);
} shouldSortByArea = true;
} else { break;
// we know now syntax is correct but no results. }
isCorrectSyntaxWithoutResults = true; page = Integer.parseInt(args[1]);
} case 1:
} UUID user = (args.length == 2 || !MathMan.isInteger(args[0])) ? UUIDHandler.getUUIDFromString(args[0]) : null;
} if (page == Integer.MIN_VALUE && user == null && MathMan.isInteger(args[0])) {
page = Integer.parseInt(args[0]);
if (!isCorrectSyntaxWithoutResults && plots.isEmpty() && page == Integer.MIN_VALUE) { unsorted = PS.get().getBasePlots(player);
C.COMMAND_SYNTAX.send(player, getUsage()); break;
return; }
} if (user != null) {
unsorted = PS.get().getBasePlots(user);
if(unsorted == null || unsorted.isEmpty()) { } else {
// we now check for a combined command arg Plot plot = MainUtil.getPlotFromString(player, args[0], true);
if(args[0].contains(";") || args[0].contains(",")) { if (plot != null) {
Plot plot = MainUtil.getPlotFromString(player, args[0], true); unsorted = Collections.singletonList(plot.getBasePlot(false));
if (plot != null) { }
unsorted = Collections.singletonList(plot.getBasePlot(false)); }
} break;
} else { // its not a combined command check for player search without result case 0:
UUID user = UUIDHandler.getUUIDFromString(args[0]); page = 1;
if(user != null) { unsorted = PS.get().getPlots(player);
// we know safe its a player (we can provide a specific message that we searched for player plots without result) break;
MainUtil.sendMessage(player, C.FOUND_NO_PLOTS_FOR_PLAYER, UUIDHandler.getName(user)); default:
return;
}
}
}
break;
case 0:
unsorted = PS.get().getPlots(player);
break;
default:
C.COMMAND_SYNTAX.send(player, getUsage());
return;
}
}
if (page == Integer.MIN_VALUE) { if (page == Integer.MIN_VALUE) {
page = 1; page = 1;
} }
@ -129,7 +112,7 @@ public class Visit extends Command {
} }
} }
if (page < 1 || page > unsorted.size()) { if (page < 1 || page > unsorted.size()) {
C.NOT_VALID_NUMBER.send(player, "(1 - " + unsorted.size() + ")"); C.NOT_VALID_NUMBER.send(player, "(1, " + unsorted.size() + ")");
return; return;
} }
List<Plot> plots; List<Plot> plots;
@ -177,64 +160,4 @@ public class Visit extends Command {
}); });
} }
/** }
* Get Plots based on an unknown argument type
* Check order: Player, Alias, World, PlotId
* @param argument to search plots
* <pre>
* Samples:
* p h xPlotPlayerGuy = Player [numeric] [alphanumeric] [UUID]
* p h MyPlantage = Alias [numeric] [alphanumeric] [Set<Plot>]
* p h PlotworldLarge = World [numeric] [alphanumeric] [PlotArea]
* p h 1:1 = plotId [numeric] (1,1|1;2) [PlotId]
* </pre>
* @param applicablePlotArea the area from the player invoked the command
* @return Collection<{@link Plot}> empty if nothing found
*/
private Collection<Plot> getPlotsFromSingleArgument(String argument, PlotArea applicablePlotArea) {
Collection<Plot> result = new HashSet<Plot>();
UUID user = UUIDHandler.getUUIDFromString(argument);
if (user != null) {
result = PS.get().getBasePlots(user);
} else {
result = PS.get().getPlotsByAlias(argument, applicablePlotArea.worldname);
}
if (result.isEmpty()) {
PlotArea plotArea = PS.get().getPlotArea(argument, "0,0");
if (plotArea != null) {
result = plotArea.getBasePlots();
if(result.isEmpty()) {
result = Collections.singletonList(plotArea.getPlot(new PlotId(0, 0)));
}
}
}
if (result.isEmpty()) {
PlotId plotId = PlotId.fromString(argument);
if (plotId != null) {
result = Collections.singletonList(applicablePlotArea.getPlot(plotId));
}
}
return result;
}
private int tryReadPageIdFromArg(PlotPlayer player, String arg) {
int page = Integer.MIN_VALUE;
try {
if (MathMan.isInteger(arg)) {
page = Integer.parseInt(arg);
if (page > MaxPageRange) {
page = PAGE_OUT_OF_RANGE;
}
}
} catch (Exception ignored) {
page = PAGE_OUT_OF_RANGE;
}
return page;
}
}