/oldsrc/main/java/com/onarandombox/MultiverseCore/utils/UpdateChecker.java

https://gitlab.com/kidaa/Multiverse-3 · Java · 130 lines · 80 code · 25 blank · 25 comment · 12 complexity · 07a13037258f998dd800d9999093a930 MD5 · raw file

  1. /******************************************************************************
  2. * Multiverse 2 Copyright (c) the Multiverse Team 2011. *
  3. * Multiverse 2 is licensed under the BSD License. *
  4. * For more information please check the README.md file included *
  5. * with this project. *
  6. ******************************************************************************/
  7. package com.onarandombox.MultiverseCore.utils;
  8. import com.dumptruckman.minecraft.util.Logging;
  9. import java.io.BufferedReader;
  10. import java.io.IOException;
  11. import java.io.InputStreamReader;
  12. import java.net.HttpURLConnection;
  13. import java.net.URL;
  14. import java.net.URLConnection;
  15. import java.net.URLEncoder;
  16. import java.util.Timer;
  17. import java.util.TimerTask;
  18. import java.util.logging.Logger;
  19. import java.util.regex.Pattern;
  20. /*
  21. * Apparently this isn't used and I don't know if we'll ever use this,
  22. * so I'm just going to deprecate it for now and suppress the warnings.
  23. *
  24. * BEGIN CHECKSTYLE-SUPPRESSION: ALL
  25. */
  26. /**
  27. * @deprecated Currently unused.
  28. */
  29. @Deprecated
  30. public class UpdateChecker {
  31. public static final Logger log = Logger.getLogger("Minecraft");
  32. private Timer timer = new Timer(); // Create a new Timer.
  33. private String name; // Hold the Plugins Name.
  34. private String cversion; // Hold the Plugins Current Version.
  35. public UpdateChecker(String name, String version) {
  36. this.name = name;
  37. this.cversion = version;
  38. int delay = 0; // No Delay, fire the first check instantly.
  39. int period = 1800; // Delay 30 Minutes
  40. this.timer.scheduleAtFixedRate(new TimerTask() {
  41. @Override
  42. public void run() {
  43. checkUpdate();
  44. }
  45. }, delay * 1000, period * 1000);
  46. }
  47. public void checkUpdate() {
  48. BufferedReader rd = null;
  49. try {
  50. URL url = new URL("http://bukkit.onarandombox.com/multiverse/version.php?n=" + URLEncoder.encode(this.name, "UTF-8") + "&v=" + this.cversion);
  51. URLConnection conn = url.openConnection();
  52. conn.setReadTimeout(2000); // 2000 = 2 Seconds.
  53. int code = ((HttpURLConnection) conn).getResponseCode();
  54. if (code != 200) {
  55. return;
  56. }
  57. rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
  58. String line;
  59. String version = null;
  60. while ((line = rd.readLine()) != null) {
  61. if (version == null) {
  62. version = line;
  63. }
  64. }
  65. if (version == null) {
  66. return;
  67. }
  68. String v1 = normalisedVersion(version);
  69. String v2 = normalisedVersion(this.cversion);
  70. int compare = v1.compareTo(v2);
  71. if (compare > 0) {
  72. Logging.info("[%s] - Update Available (%s)", this.name, version);
  73. }
  74. rd.close();
  75. } catch (Exception e) {
  76. // No need to alert the user of any error here... it's not important.
  77. } finally {
  78. if (rd != null) {
  79. try {
  80. rd.close();
  81. } catch (IOException ignore) { }
  82. }
  83. }
  84. }
  85. /**
  86. * Convert the given Version String to a Normalized Version String so we can compare it.
  87. *
  88. * @param version The version string
  89. * @return The normalized version string
  90. */
  91. public static String normalisedVersion(String version) {
  92. return normalisedVersion(version, ".", 4);
  93. }
  94. public static String normalisedVersion(String version, String sep, int maxWidth) {
  95. String[] split = Pattern.compile(sep, Pattern.LITERAL).split(version);
  96. StringBuilder sb = new StringBuilder();
  97. for (String s : split) {
  98. sb.append(String.format("%" + maxWidth + 's', s));
  99. }
  100. return sb.toString();
  101. }
  102. }
  103. /*
  104. * END CHECKSTYLE-SUPPRESSION: ALL
  105. */