/hudson-plugin-utils/src/main/java/org/hudsonci/utils/plugin/PluginUtil.java

http://github.com/hudson/hudson · Java · 71 lines · 30 code · 9 blank · 32 comment · 1 complexity · d4adceb0d2643830a1da410ff51268ce MD5 · raw file

  1. /**
  2. * The MIT License
  3. *
  4. * Copyright (c) 2010-2011 Sonatype, Inc. All rights reserved.
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a copy
  7. * of this software and associated documentation files (the "Software"), to deal
  8. * in the Software without restriction, including without limitation the rights
  9. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. * copies of the Software, and to permit persons to whom the Software is
  11. * furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. * THE SOFTWARE.
  23. */
  24. package org.hudsonci.utils.plugin;
  25. import hudson.Plugin;
  26. import hudson.PluginWrapper;
  27. import java.lang.reflect.Field;
  28. /**
  29. * {@link Plugin} utilities.
  30. *
  31. * @author <a href="mailto:jason@planet57.com">Jason Dillon</a>
  32. * @since 2.1.0
  33. */
  34. public class PluginUtil
  35. {
  36. public static PluginWrapper getWrapper(final Plugin plugin) {
  37. assert plugin != null;
  38. try {
  39. Field field = Plugin.class.getDeclaredField("wrapper");
  40. field.setAccessible(true);
  41. return (PluginWrapper) field.get(plugin);
  42. }
  43. catch (Exception e) {
  44. throw new RuntimeException("Failed to access PluginWrapper", e);
  45. }
  46. }
  47. public static String getShortName(final Plugin plugin) {
  48. return getWrapper(plugin).getShortName();
  49. }
  50. //
  51. // FIXME: These do not take into account the context path, not sure if they should or not
  52. //
  53. public static String getPath(final Plugin plugin) {
  54. return String.format("/plugin/%s", getShortName(plugin));
  55. }
  56. public static String getHelpPath(final Plugin plugin) {
  57. return String.format("%s/help", getPath(plugin));
  58. }
  59. public static String getImagesPath(final Plugin plugin) {
  60. return String.format("%s/images", getPath(plugin));
  61. }
  62. }