/src/main/java/com/sk89q/worldguard/bukkit/commands/WorldGuardCommands.java

http://github.com/sk89q/worldguard · Java · 138 lines · 96 code · 21 blank · 21 comment · 9 complexity · ba08e64fd0d0f9581acd0f91039c3e81 MD5 · raw file

  1. /*
  2. * WorldGuard, a suite of tools for Minecraft
  3. * Copyright (C) sk89q <http://www.sk89q.com>
  4. * Copyright (C) WorldGuard team and contributors
  5. *
  6. * This program is free software: you can redistribute it and/or modify it
  7. * under the terms of the GNU Lesser General Public License as published by the
  8. * Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful, but WITHOUT
  12. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
  14. * for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. package com.sk89q.worldguard.bukkit.commands;
  20. import java.io.File;
  21. import java.io.IOException;
  22. import java.util.logging.Level;
  23. import java.util.logging.Logger;
  24. import org.bukkit.ChatColor;
  25. import org.bukkit.command.CommandSender;
  26. import org.bukkit.entity.Player;
  27. import com.sk89q.minecraft.util.commands.Command;
  28. import com.sk89q.minecraft.util.commands.CommandContext;
  29. import com.sk89q.minecraft.util.commands.CommandException;
  30. import com.sk89q.minecraft.util.commands.CommandPermissions;
  31. import com.sk89q.worldguard.bukkit.LoggerToChatHandler;
  32. import com.sk89q.worldguard.bukkit.ReportWriter;
  33. import com.sk89q.worldguard.bukkit.WorldGuardPlugin;
  34. import com.sk89q.worldguard.util.PastebinPoster;
  35. import com.sk89q.worldguard.util.PastebinPoster.PasteCallback;
  36. public class WorldGuardCommands {
  37. private final WorldGuardPlugin plugin;
  38. public WorldGuardCommands(WorldGuardPlugin plugin) {
  39. this.plugin = plugin;
  40. }
  41. @Command(aliases = {"version"}, desc = "Get the WorldGuard version", max = 0)
  42. public void version(CommandContext args, CommandSender sender) throws CommandException {
  43. sender.sendMessage(ChatColor.YELLOW
  44. + "WorldGuard " + plugin.getDescription().getVersion());
  45. sender.sendMessage(ChatColor.YELLOW
  46. + "http://www.sk89q.com");
  47. }
  48. @Command(aliases = {"reload"}, desc = "Reload WorldGuard configuration", max = 0)
  49. @CommandPermissions({"worldguard.reload"})
  50. public void reload(CommandContext args, CommandSender sender) throws CommandException {
  51. LoggerToChatHandler handler = null;
  52. Logger minecraftLogger = null;
  53. if (sender instanceof Player) {
  54. handler = new LoggerToChatHandler(sender);
  55. handler.setLevel(Level.ALL);
  56. minecraftLogger = Logger.getLogger("Minecraft");
  57. minecraftLogger.addHandler(handler);
  58. }
  59. try {
  60. plugin.getGlobalStateManager().unload();
  61. plugin.getGlobalRegionManager().unload();
  62. plugin.getGlobalStateManager().load();
  63. plugin.getGlobalRegionManager().preload();
  64. // WGBukkit.cleanCache();
  65. sender.sendMessage("WorldGuard configuration reloaded.");
  66. } catch (Throwable t) {
  67. sender.sendMessage("Error while reloading: "
  68. + t.getMessage());
  69. } finally {
  70. if (minecraftLogger != null) {
  71. minecraftLogger.removeHandler(handler);
  72. }
  73. }
  74. }
  75. @Command(aliases = {"report"}, desc = "Writes a report on WorldGuard", flags = "p", max = 0)
  76. @CommandPermissions({"worldguard.report"})
  77. public void report(CommandContext args, final CommandSender sender) throws CommandException {
  78. File dest = new File(plugin.getDataFolder(), "report.txt");
  79. ReportWriter report = new ReportWriter(plugin);
  80. try {
  81. report.write(dest);
  82. sender.sendMessage(ChatColor.YELLOW + "WorldGuard report written to "
  83. + dest.getAbsolutePath());
  84. } catch (IOException e) {
  85. throw new CommandException("Failed to write report: " + e.getMessage());
  86. }
  87. if (args.hasFlag('p')) {
  88. plugin.checkPermission(sender, "worldguard.report.pastebin");
  89. sender.sendMessage(ChatColor.YELLOW + "Now uploading to Pastebin...");
  90. PastebinPoster.paste(report.toString(), new PasteCallback() {
  91. public void handleSuccess(String url) {
  92. // Hope we don't have a thread safety issue here
  93. sender.sendMessage(ChatColor.YELLOW + "WorldGuard report (1 hour): " + url);
  94. }
  95. public void handleError(String err) {
  96. // Hope we don't have a thread safety issue here
  97. sender.sendMessage(ChatColor.YELLOW + "WorldGuard report pastebin error: " + err);
  98. }
  99. });
  100. }
  101. }
  102. @Command(aliases = {"flushstates", "clearstates"},
  103. usage = "[player]", desc = "Flush the state manager", max = 1)
  104. @CommandPermissions("worldguard.flushstates")
  105. public void flushStates(CommandContext args, CommandSender sender) throws CommandException {
  106. if (args.argsLength() == 0) {
  107. plugin.getFlagStateManager().forgetAll();
  108. sender.sendMessage("Cleared all states.");
  109. } else {
  110. Player player = plugin.getServer().getPlayer(args.getString(0));
  111. if (player != null) {
  112. plugin.getFlagStateManager().forget(player);
  113. sender.sendMessage("Cleared states for player \"" + player.getName() + "\".");
  114. }
  115. }
  116. }
  117. }