/EssentialsGeoIP/src/net/ess3/geoip/EssentialsGeoIPPlayerListener.java

https://github.com/mbax/Essentials · Java · 229 lines · 221 code · 8 blank · 0 comment · 30 complexity · 5b94b6434467dc2915f14070ce75e874 MD5 · raw file

  1. package net.ess3.geoip;
  2. import static net.ess3.I18n._;
  3. import net.ess3.api.IEssentials;
  4. import net.ess3.api.IReload;
  5. import net.ess3.api.IUser;
  6. import net.ess3.permissions.Permissions;
  7. import com.maxmind.geoip.Location;
  8. import com.maxmind.geoip.LookupService;
  9. import com.maxmind.geoip.regionName;
  10. import java.io.*;
  11. import java.net.InetAddress;
  12. import java.net.MalformedURLException;
  13. import java.net.URL;
  14. import java.net.URLConnection;
  15. import java.util.logging.Level;
  16. import java.util.logging.Logger;
  17. import java.util.zip.GZIPInputStream;
  18. import org.bukkit.entity.Player;
  19. import org.bukkit.event.EventHandler;
  20. import org.bukkit.event.EventPriority;
  21. import org.bukkit.event.Listener;
  22. import org.bukkit.event.player.PlayerJoinEvent;
  23. import org.bukkit.plugin.Plugin;
  24. public class EssentialsGeoIPPlayerListener implements Listener, IReload
  25. {
  26. private transient LookupService ls = null;
  27. private static final Logger LOGGER = Logger.getLogger("Minecraft");
  28. private transient File databaseFile;
  29. private final transient ConfigHolder config;
  30. private final transient IEssentials ess;
  31. private final transient Plugin geoip;
  32. public EssentialsGeoIPPlayerListener(final Plugin geoip, final IEssentials ess)
  33. {
  34. super();
  35. this.ess = ess;
  36. this.geoip = geoip;
  37. this.config = new ConfigHolder(ess, geoip);
  38. onReload();
  39. }
  40. @EventHandler(priority = EventPriority.MONITOR)
  41. public void onPlayerJoin(final PlayerJoinEvent event)
  42. {
  43. final IUser u = ess.getUserMap().getUser(event.getPlayer());
  44. if (Permissions.GEOIP_HIDE.isAuthorized(u))
  45. {
  46. return;
  47. }
  48. config.acquireReadLock();
  49. try
  50. {
  51. if (event.getPlayer().getAddress() == null || event.getPlayer().getAddress().getAddress() == null) {
  52. return;
  53. }
  54. final InetAddress address = event.getPlayer().getAddress().getAddress();
  55. final StringBuilder builder = new StringBuilder();
  56. if (config.getData().getDatabase().isShowCities())
  57. {
  58. final Location loc = ls.getLocation(address);
  59. if (loc == null)
  60. {
  61. return;
  62. }
  63. if (loc.city != null)
  64. {
  65. builder.append(loc.city).append(", ");
  66. }
  67. final String region = regionName.regionNameByCode(loc.countryCode, loc.region);
  68. if (region != null)
  69. {
  70. builder.append(region).append(", ");
  71. }
  72. builder.append(loc.countryName);
  73. }
  74. else
  75. {
  76. builder.append(ls.getCountry(address).getName());
  77. }
  78. if (config.getData().isShowOnWhois())
  79. {
  80. u.acquireWriteLock();
  81. try
  82. {
  83. u.getData().setGeolocation(builder.toString());
  84. }
  85. finally
  86. {
  87. u.unlock();
  88. }
  89. }
  90. if (config.getData().isShowOnLogin() && !u.isHidden())
  91. {
  92. for (Player player : event.getPlayer().getServer().getOnlinePlayers())
  93. {
  94. final IUser user = ess.getUserMap().getUser(player);
  95. if (Permissions.GEOIP_SHOW.isAuthorized(user))
  96. {
  97. user.sendMessage(_("geoipJoinFormat", user.getPlayer().getDisplayName(), builder.toString()));
  98. }
  99. }
  100. }
  101. }
  102. finally
  103. {
  104. config.unlock();
  105. }
  106. }
  107. @Override
  108. public final void onReload()
  109. {
  110. config.onReload();
  111. config.acquireReadLock();
  112. try
  113. {
  114. if (config.getData().getDatabase().isShowCities())
  115. {
  116. databaseFile = new File(geoip.getDataFolder(), "GeoIPCity.dat");
  117. }
  118. else
  119. {
  120. databaseFile = new File(geoip.getDataFolder(), "GeoIP.dat");
  121. }
  122. if (!databaseFile.exists())
  123. {
  124. if (config.getData().getDatabase().isDownloadIfMissing())
  125. {
  126. if (config.getData().getDatabase().isShowCities())
  127. {
  128. downloadDatabase(config.getData().getDatabase().getDownloadUrlCity());
  129. }
  130. else
  131. {
  132. downloadDatabase(config.getData().getDatabase().getDownloadUrl());
  133. }
  134. }
  135. else
  136. {
  137. LOGGER.log(Level.SEVERE, _("cantFindGeoIpDB"));
  138. return;
  139. }
  140. }
  141. try
  142. {
  143. ls = new LookupService(databaseFile);
  144. }
  145. catch (IOException ex)
  146. {
  147. LOGGER.log(Level.SEVERE, _("cantReadGeoIpDB"), ex);
  148. }
  149. }
  150. finally
  151. {
  152. config.unlock();
  153. }
  154. }
  155. private void downloadDatabase(final String url)
  156. {
  157. if (url == null || url.isEmpty())
  158. {
  159. LOGGER.log(Level.SEVERE, _("geoIpUrlEmpty"));
  160. return;
  161. }
  162. InputStream input = null;
  163. OutputStream output = null;
  164. try
  165. {
  166. LOGGER.log(Level.INFO, _("downloadingGeoIp"));
  167. final URL downloadUrl = new URL(url);
  168. final URLConnection conn = downloadUrl.openConnection();
  169. conn.setConnectTimeout(10000);
  170. conn.connect();
  171. input = conn.getInputStream();
  172. if (url.endsWith(".gz"))
  173. {
  174. input = new GZIPInputStream(input);
  175. }
  176. output = new FileOutputStream(databaseFile);
  177. final byte[] buffer = new byte[2048];
  178. int length = input.read(buffer);
  179. while (length >= 0)
  180. {
  181. output.write(buffer, 0, length);
  182. length = input.read(buffer);
  183. }
  184. input.close();
  185. output.close();
  186. }
  187. catch (MalformedURLException ex)
  188. {
  189. LOGGER.log(Level.SEVERE, _("geoIpUrlInvalid"), ex);
  190. }
  191. catch (IOException ex)
  192. {
  193. LOGGER.log(Level.SEVERE, _("connectionFailed"), ex);
  194. }
  195. finally
  196. {
  197. if (output != null)
  198. {
  199. try
  200. {
  201. output.close();
  202. }
  203. catch (IOException ex)
  204. {
  205. LOGGER.log(Level.SEVERE, _("connectionFailed"), ex);
  206. }
  207. }
  208. if (input != null)
  209. {
  210. try
  211. {
  212. input.close();
  213. }
  214. catch (IOException ex)
  215. {
  216. LOGGER.log(Level.SEVERE, _("connectionFailed"), ex);
  217. }
  218. }
  219. }
  220. }
  221. }