/Essentials/src/net/ess3/utils/textreader/HelpInput.java

https://github.com/mbax/Essentials · Java · 179 lines · 169 code · 10 blank · 0 comment · 33 complexity · 3ce468eea54dfb30794f49f874250fea MD5 · raw file

  1. package net.ess3.utils.textreader;
  2. import java.io.IOException;
  3. import java.util.*;
  4. import java.util.logging.Level;
  5. import java.util.logging.Logger;
  6. import lombok.Cleanup;
  7. import static net.ess3.I18n._;
  8. import net.ess3.api.IEssentials;
  9. import net.ess3.api.ISettings;
  10. import net.ess3.api.IUser;
  11. import net.ess3.permissions.HelpPermissions;
  12. import org.bukkit.plugin.Plugin;
  13. import org.bukkit.plugin.PluginDescriptionFile;
  14. public class HelpInput implements IText
  15. {
  16. private static final String DESCRIPTION = "description";
  17. private static final String PERMISSION = "permission";
  18. private static final String PERMISSIONS = "permissions";
  19. private final transient List<String> lines = new ArrayList<String>();
  20. private final transient List<String> chapters = new ArrayList<String>();
  21. private final transient Map<String, Integer> bookmarks = new HashMap<String, Integer>();
  22. private final static Logger logger = Logger.getLogger("Minecraft");
  23. public HelpInput(final IUser user, final String match, final IEssentials ess) throws IOException
  24. {
  25. @Cleanup
  26. final ISettings settings = ess.getSettings();
  27. settings.acquireReadLock();
  28. boolean reported = false;
  29. final List<String> newLines = new ArrayList<String>();
  30. String pluginName = "";
  31. String pluginNameLow = "";
  32. if (!match.equalsIgnoreCase(""))
  33. {
  34. lines.add(_("helpMatching", match));
  35. }
  36. for (Plugin p : ess.getServer().getPluginManager().getPlugins())
  37. {
  38. try
  39. {
  40. final List<String> pluginLines = new ArrayList<String>();
  41. final PluginDescriptionFile desc = p.getDescription();
  42. final Map<String, Map<String, Object>> cmds = desc.getCommands();
  43. pluginName = p.getDescription().getName();
  44. pluginNameLow = pluginName.toLowerCase(Locale.ENGLISH);
  45. if (pluginNameLow.equals(match))
  46. {
  47. lines.clear();
  48. newLines.clear();
  49. lines.add(_("helpFrom", p.getDescription().getName()));
  50. }
  51. for (Map.Entry<String, Map<String, Object>> k : cmds.entrySet())
  52. {
  53. try
  54. {
  55. if (!match.equalsIgnoreCase("") && (!pluginNameLow.contains(match)) && (!k.getKey().toLowerCase(Locale.ENGLISH).contains(match))
  56. && (!(k.getValue().get(DESCRIPTION) instanceof String
  57. && ((String)k.getValue().get(DESCRIPTION)).toLowerCase(Locale.ENGLISH).contains(match))))
  58. {
  59. continue;
  60. }
  61. if (pluginNameLow.contains("essentials"))
  62. {
  63. final String node = "essentials." + k.getKey();
  64. if (!settings.getData().getCommands().isDisabled(k.getKey()) && user.hasPermission(node))
  65. {
  66. pluginLines.add(_("helpLine", k.getKey(), k.getValue().get(DESCRIPTION)));
  67. }
  68. }
  69. else
  70. {
  71. if (settings.getData().getCommands().getHelp().isShowNonEssCommandsInHelp())
  72. {
  73. final Map<String, Object> value = k.getValue();
  74. Object permissions = null;
  75. if (value.containsKey(PERMISSION))
  76. {
  77. permissions = value.get(PERMISSION);
  78. }
  79. else if (value.containsKey(PERMISSIONS))
  80. {
  81. permissions = value.get(PERMISSIONS);
  82. }
  83. if (HelpPermissions.getPermission(pluginNameLow).isAuthorized(user))
  84. {
  85. pluginLines.add(_("helpLine", k.getKey(), value.get(DESCRIPTION)));
  86. }
  87. else if (permissions instanceof List && !((List<Object>)permissions).isEmpty())
  88. {
  89. boolean enabled = false;
  90. for (Object o : (List<Object>)permissions)
  91. {
  92. if (o instanceof String && user.hasPermission(o.toString()))
  93. {
  94. enabled = true;
  95. break;
  96. }
  97. }
  98. if (enabled)
  99. {
  100. pluginLines.add(_("helpLine", k.getKey(), value.get(DESCRIPTION)));
  101. }
  102. }
  103. else if (permissions instanceof String && !"".equals(permissions))
  104. {
  105. if (user.hasPermission(permissions.toString()))
  106. {
  107. pluginLines.add(_("helpLine", k.getKey(), value.get(DESCRIPTION)));
  108. }
  109. }
  110. else
  111. {
  112. if (!settings.getData().getCommands().getHelp().isHidePermissionlessCommands())
  113. {
  114. pluginLines.add(_("helpLine", k.getKey(), value.get(DESCRIPTION)));
  115. }
  116. }
  117. }
  118. }
  119. }
  120. catch (NullPointerException ex)
  121. {
  122. continue;
  123. }
  124. }
  125. if (!pluginLines.isEmpty())
  126. {
  127. newLines.addAll(pluginLines);
  128. if (pluginNameLow.equals(match))
  129. {
  130. break;
  131. }
  132. if (match.equalsIgnoreCase(""))
  133. {
  134. lines.add(_("helpPlugin", pluginName, pluginNameLow));
  135. }
  136. }
  137. }
  138. catch (NullPointerException ex)
  139. {
  140. continue;
  141. }
  142. catch (Exception ex)
  143. {
  144. if (!reported)
  145. {
  146. logger.log(Level.WARNING, _("commandHelpFailedForPlugin", pluginNameLow), ex);
  147. }
  148. reported = true;
  149. continue;
  150. }
  151. }
  152. lines.addAll(newLines);
  153. }
  154. @Override
  155. public List<String> getLines()
  156. {
  157. return lines;
  158. }
  159. @Override
  160. public List<String> getChapters()
  161. {
  162. return chapters;
  163. }
  164. @Override
  165. public Map<String, Integer> getBookmarks()
  166. {
  167. return bookmarks;
  168. }
  169. }