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