//////////////////////////////////////////////////////////////////////////////////////////////////// // PlotSquared - A plot manager and world generator for the Bukkit API / // Copyright (c) 2014 IntellectualSites/IntellectualCrafters / // / // This program is 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. / // / // This program 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, write to the Free Software Foundation, / // Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA / // / // You can contact us via: support@intellectualsites.com / //////////////////////////////////////////////////////////////////////////////////////////////////// package com.intellectualcrafters.plot.commands; import java.util.Collection; import java.util.HashSet; import java.util.Set; import java.util.UUID; import com.intellectualcrafters.plot.PS; import com.intellectualcrafters.plot.config.C; import com.intellectualcrafters.plot.database.DBFunc; import com.intellectualcrafters.plot.object.Plot; import com.intellectualcrafters.plot.object.PlotId; import com.intellectualcrafters.plot.object.PlotPlayer; import com.intellectualcrafters.plot.util.MainUtil; import com.intellectualcrafters.plot.util.UUIDHandler; import com.plotsquared.general.commands.CommandDeclaration; @CommandDeclaration(command = "purge", permission = "plots.admin", description = "Purge all plots for a world", category = CommandCategory.ACTIONS, requiredType = RequiredType.CONSOLE) public class Purge extends SubCommand { public PlotId getId(final String id) { try { final String[] split = id.split(";"); return new PlotId(Integer.parseInt(split[0]), Integer.parseInt(split[1])); } catch (final Exception e) { return null; } } @Override public boolean onCommand(final PlotPlayer plr, final String[] args) { if (args.length == 1) { final String arg = args[0].toLowerCase(); final PlotId id = getId(arg); if (id != null) { MainUtil.sendMessage(plr, "/plot purxe x;z &l"); return false; } final UUID uuid = UUIDHandler.getUUID(args[0], null); if (uuid != null) { MainUtil.sendMessage(plr, "/plot purge " + args[0] + " &l"); return false; } if (arg.equals("player")) { MainUtil.sendMessage(plr, "/plot purge &l "); return false; } if (arg.equals("unowned")) { MainUtil.sendMessage(plr, "/plot purge unowned &l"); return false; } if (arg.equals("unknown")) { MainUtil.sendMessage(plr, "/plot purge unknown &l"); return false; } if (arg.equals("all")) { MainUtil.sendMessage(plr, "/plot purge all &l"); return false; } MainUtil.sendMessage(plr, C.PURGE_SYNTAX); return false; } if (args.length != 2) { MainUtil.sendMessage(plr, C.PURGE_SYNTAX); return false; } final String worldname = args[1]; if (!PS.get().getAllPlotsRaw().containsKey(worldname)) { MainUtil.sendMessage(plr, "INVALID WORLD"); return false; } final String arg = args[0].toLowerCase(); final PlotId id = getId(arg); if (id != null) { final HashSet ids = new HashSet(); final int DBid = DBFunc.getId(MainUtil.getPlotAbs(worldname, id)); if (DBid != Integer.MAX_VALUE) { ids.add(DBid); } DBFunc.purgeIds(worldname, ids); return finishPurge(DBid == Integer.MAX_VALUE ? 1 : 0); } if (arg.equals("all")) { final Set ids = PS.get().getPlots(worldname).keySet(); final int length = ids.size(); if (length == 0) { return MainUtil.sendMessage(plr, "&cNo plots found"); } DBFunc.purge(worldname, ids); return finishPurge(length); } if (arg.equals("unknown")) { final Collection plots = PS.get().getPlotsInWorld(worldname); final Set ids = new HashSet<>(); for (final Plot plot : plots) { if (plot.owner != null) { final String name = UUIDHandler.getName(plot.owner); if (name == null) { ids.add(plot.id); } } } final int length = ids.size(); if (length == 0) { return MainUtil.sendMessage(plr, "&cNo plots found"); } DBFunc.purge(worldname, ids); return finishPurge(length); } if (arg.equals("unowned")) { final Collection plots = PS.get().getPlotsInWorld(worldname); final Set ids = new HashSet<>(); for (final Plot plot : plots) { if (plot.owner == null) { ids.add(plot.id); } } final int length = ids.size(); if (length == 0) { return MainUtil.sendMessage(plr, "&cNo plots found"); } DBFunc.purge(worldname, ids); return finishPurge(length); } final UUID uuid = UUIDHandler.getUUID(args[0], null); if (uuid != null) { final Set plots = PS.get().getPlots(worldname, uuid); final Set ids = new HashSet<>(); for (final Plot plot : plots) { ids.add(plot.id); } final int length = ids.size(); DBFunc.purge(worldname, ids); return finishPurge(length); } MainUtil.sendMessage(plr, C.PURGE_SYNTAX); return false; } private boolean finishPurge(final int amount) { MainUtil.sendMessage(null, C.PURGE_SUCCESS, amount + ""); return false; } }