8 changed files with 143 additions and 7 deletions
@ -0,0 +1,4 @@ |
|||||
|
package app.exceptions.steam; |
||||
|
|
||||
|
public class InvalidSteamID extends RuntimeException{ |
||||
|
} |
@ -0,0 +1,95 @@ |
|||||
|
package app.services; |
||||
|
|
||||
|
import app.entities.PlayerProfile; |
||||
|
import app.entities.Stats; |
||||
|
import app.entities.db.Permition; |
||||
|
import app.entities.server.players.RCONPlayer; |
||||
|
import com.fasterxml.jackson.databind.ObjectMapper; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.beans.factory.annotation.Value; |
||||
|
import org.springframework.stereotype.Service; |
||||
|
import org.springframework.web.client.RestTemplate; |
||||
|
|
||||
|
import java.time.Instant; |
||||
|
import java.util.ArrayList; |
||||
|
import java.util.HashMap; |
||||
|
import java.util.List; |
||||
|
import java.util.Map; |
||||
|
|
||||
|
@Service |
||||
|
public class ReportService { |
||||
|
|
||||
|
@Value("${backend.report.webhook_url}") |
||||
|
String webhook_url; |
||||
|
@Value("${backend.report.kd}") |
||||
|
long kd; |
||||
|
HashMap<Long, Long> userKD; |
||||
|
Stats stats; |
||||
|
StatsService statsService; |
||||
|
String tf2_icon = "https://steamcdn-a.akamaihd.net/steamcommunity/public/images/apps/440/e3f595a92552da3d664ad00277fad2107345f743.jpg"; |
||||
|
RestTemplate restTemplate; |
||||
|
|
||||
|
@Autowired |
||||
|
public ReportService(Stats stats, |
||||
|
StatsService statsService) { |
||||
|
this.stats = stats; |
||||
|
this.statsService = statsService; |
||||
|
userKD = new HashMap<>(); |
||||
|
restTemplate = new RestTemplate(); |
||||
|
} |
||||
|
|
||||
|
public long createReport(PlayerProfile current_user, PlayerProfile reported_user, String text) { |
||||
|
if (reported_user.getPlay_on() == null) return 0L; |
||||
|
if (userKD.containsKey(current_user.getSteamids().steam64) && |
||||
|
(Instant.now().getEpochSecond() - userKD.get(current_user.getSteamids().steam64)) < kd) { |
||||
|
return (Instant.now().getEpochSecond() - userKD.get(current_user.getSteamids().steam64)) - kd; |
||||
|
} |
||||
|
|
||||
|
String author = "%s | %s%s | WEBSITE".formatted( |
||||
|
current_user.getSteam_data().getNickname(), |
||||
|
current_user.getSteamids().steam2, |
||||
|
Permition2Prefix(current_user.getPermition()) |
||||
|
); |
||||
|
|
||||
|
RCONPlayer reported_player = statsService.searchPlayer(reported_user.getPlay_on()); |
||||
|
|
||||
|
String reported = "%s | %s%s | %d/? %s".formatted( |
||||
|
reported_player.getName(), |
||||
|
reported_user.getSteamids().steam2, |
||||
|
Permition2Prefix(reported_user.getPermition()), |
||||
|
reported_player.getScore(), |
||||
|
reported_player.getDuration() |
||||
|
); |
||||
|
|
||||
|
//Create Embed
|
||||
|
HashMap<String, Object> embed = new HashMap<>(); |
||||
|
embed.put("author", Map.of("name", author, "url", current_user.getSteamids().community_url)); |
||||
|
embed.put("title", reported); |
||||
|
embed.put("url", reported_user.getSteamids().community_url); |
||||
|
embed.put("description", text); |
||||
|
embed.put("color", 1488); |
||||
|
embed.put("footer", Map.of( |
||||
|
"text", "%s • %d/%d".formatted( |
||||
|
stats.getServers().get(reported_user.getPlay_on().getServer_id()).getName(), |
||||
|
stats.getServers().get(reported_user.getPlay_on().getServer_id()).getPlayer_count(), |
||||
|
stats.getServers().get(reported_user.getPlay_on().getServer_id()).getMax_players()), |
||||
|
"icon_url", tf2_icon |
||||
|
)); |
||||
|
|
||||
|
HashMap<String, Object> payload = new HashMap<>(); |
||||
|
payload.put("embeds", List.of(embed)); |
||||
|
restTemplate.postForEntity(webhook_url, (Object) payload, String.class); |
||||
|
userKD.merge(current_user.getSteamids().steam64, Instant.now().getEpochSecond(), (x,y) -> y); |
||||
|
return userKD.get(current_user.getSteamids().steam64); |
||||
|
} |
||||
|
|
||||
|
public String Permition2Prefix(Permition permition) { |
||||
|
if (permition == null) return ""; |
||||
|
if (permition.getFlags().contains("z")) return " | [ROOT]"; |
||||
|
if (permition.getFlags().contains("b")) return " | [ADMIN]"; |
||||
|
if (permition.getFlags().contains("d")) return " | [MODERATOR]"; |
||||
|
if (permition.getFlags().contains("t")) return " | [FREE]"; |
||||
|
if (permition.getFlags().contains("a")) return " | [VIP]"; |
||||
|
return ""; |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue