Browse Source

я в ахуе блять

master
gsd 2 years ago
parent
commit
d0c43d887b
  1. 7
      src/main/java/app/entities/other/SteamID.java
  2. 2
      src/main/java/app/services/ReportService.java
  3. 2
      src/main/java/app/services/steam/SteamWebApi.java

7
src/main/java/app/entities/other/SteamID.java

@ -7,7 +7,7 @@ import com.fasterxml.jackson.databind.annotation.JsonSerialize;
public class SteamID {
public String steam3;
public String steam2;
public String steam64;
public long steam64;
public String community_url;
public long account_id;
@ -18,7 +18,7 @@ public class SteamID {
public SteamID(String steam3, String steam2, String steam64, long account_id) {
this.steam3 = steam3;
this.steam2 = steam2;
this.steam64 = steam64;
this.steam64 = Long.valueOf(steam64);
this.community_url = String.format("https://steamcommunity.com/profiles/%s", steam64);
this.account_id = account_id;
}
@ -30,8 +30,7 @@ public class SteamID {
public boolean is(SteamID steamID){
try {
if (steam64.equals(steamID.steam64)) return true;
else return false;
return steam64 == steamID.steam64;
} catch (NullPointerException err) {
System.out.printf("%s != %s", steam64, steamID.steam64);
throw new InvalidSteamID();

2
src/main/java/app/services/ReportService.java

@ -23,7 +23,7 @@ public class ReportService {
String webhook_url;
@Value("${backend.report.kd}")
long kd;
HashMap<String, Long> userKD;
HashMap<Long, Long> userKD;
Stats stats;
StatsService statsService;
String tf2_icon = "https://steamcdn-a.akamaihd.net/steamcommunity/public/images/apps/440/e3f595a92552da3d664ad00277fad2107345f743.jpg";

2
src/main/java/app/services/steam/SteamWebApi.java

@ -22,7 +22,7 @@ public class SteamWebApi {
restTemplate = new RestTemplate();
}
public SteamData getSteamData(String steam64){
public SteamData getSteamData(long steam64){
String url = String.format("https://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?key=%s&steamids=%s", webapi_key, steam64);
try {
ResponseEntity<String> response = restTemplate.getForEntity(url, String.class);

Loading…
Cancel
Save