Browse Source

country playon

master
gsd 1 year ago
parent
commit
234a29e7e5
  1. 1
      src/main/java/app/entities/server/PlayOn.java
  2. 8
      src/main/java/app/services/StatsService.java
  3. 8
      src/main/java/app/services/io/GeoIP.java

1
src/main/java/app/entities/server/PlayOn.java

@ -11,6 +11,7 @@ public class PlayOn {
int player_id; int player_id;
String ip; String ip;
String name; String name;
String country;
public String getIp() { public String getIp() {
if (ip.contains(":")){ if (ip.contains(":")){

8
src/main/java/app/services/StatsService.java

@ -5,6 +5,7 @@ import app.entities.other.SteamID;
import app.entities.server.PlayOn; import app.entities.server.PlayOn;
import app.entities.server.Server; import app.entities.server.Server;
import app.entities.server.players.RCONPlayer; import app.entities.server.players.RCONPlayer;
import app.services.io.GeoIP;
import app.utils.CryptedCookie; import app.utils.CryptedCookie;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext; import org.springframework.context.ApplicationContext;
@ -17,11 +18,13 @@ public class StatsService {
Stats stats; Stats stats;
private CryptedCookie cryptedCookie; private CryptedCookie cryptedCookie;
private GeoIP geoIP;
@Autowired @Autowired
public StatsService (Stats stats, CryptedCookie cryptedCookie) { public StatsService (Stats stats, CryptedCookie cryptedCookie, GeoIP geoIP) {
this.stats = stats; this.stats = stats;
this.cryptedCookie = cryptedCookie; this.cryptedCookie = cryptedCookie;
this.geoIP = geoIP;
} }
public PlayOn searchPlayer(SteamID steamID){ public PlayOn searchPlayer(SteamID steamID){
@ -31,7 +34,8 @@ public class StatsService {
stringServerEntry.getKey(), stringServerEntry.getKey(),
player.getId(), player.getId(),
cryptedCookie.Hashed(player.getIp()), cryptedCookie.Hashed(player.getIp()),
player.getName()); player.getName(),
geoIP.GetCountry(player.getIp().split(":", 2)[0], "Unknown"));
} }
return null; return null;
} }

8
src/main/java/app/services/io/GeoIP.java

@ -24,4 +24,12 @@ public class GeoIP {
public String GetCountry(String ip) throws UnknownHostException, GeoIp2Exception, IOException { public String GetCountry(String ip) throws UnknownHostException, GeoIp2Exception, IOException {
return databaseReader.country(InetAddress.getByName(ip)).getCountry().getName(); return databaseReader.country(InetAddress.getByName(ip)).getCountry().getName();
} }
public String GetCountry(String ip, String replace) {
try {
return this.GetCountry(ip);
} catch (GeoIp2Exception | IOException e) {
return replace;
}
}
} }

Loading…
Cancel
Save