|
|
@ -2,9 +2,11 @@ package app.controllers.admin; |
|
|
|
|
|
|
|
import app.annotations.interfaces.CheckPermitionFlag; |
|
|
|
import app.annotations.interfaces.CheckWebAccess; |
|
|
|
import app.entities.PlayerProfile; |
|
|
|
import app.services.ProfileService; |
|
|
|
import app.services.ServerService; |
|
|
|
import app.services.db.BanService; |
|
|
|
import app.services.db.PermitionService; |
|
|
|
import app.utils.SteamIDConverter; |
|
|
|
import jakarta.servlet.http.HttpServletRequest; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.http.HttpStatus; |
|
|
@ -18,13 +20,15 @@ import java.util.List; |
|
|
|
public class KickController { |
|
|
|
ServerService serverService; |
|
|
|
ProfileService profileService; |
|
|
|
BanService banService; |
|
|
|
PermitionService permitionService; |
|
|
|
|
|
|
|
@Autowired |
|
|
|
public KickController(ServerService serverService, |
|
|
|
ProfileService profileService) { |
|
|
|
ProfileService profileService, |
|
|
|
PermitionService permitionService) { |
|
|
|
this.serverService = serverService; |
|
|
|
this.profileService = profileService; |
|
|
|
this.permitionService = permitionService; |
|
|
|
} |
|
|
|
|
|
|
|
@PostMapping |
|
|
@ -34,19 +38,23 @@ public class KickController { |
|
|
|
HttpServletRequest request, |
|
|
|
@CookieValue(value = "steam64") String steam64, |
|
|
|
@RequestParam(value = "steam64", required = false, defaultValue = "") String kicked_steam64, |
|
|
|
@RequestParam(value = "player_name", required = false, defaultValue = "") String player_name |
|
|
|
@RequestParam(value = "player_name", required = false, defaultValue = "") String player_name, |
|
|
|
@RequestParam(value = "reason", required = false, defaultValue = "kicked from backend") String reason |
|
|
|
) { |
|
|
|
if(kicked_steam64.isEmpty() && player_name.isEmpty()) return new ResponseEntity<>(HttpStatus.NO_CONTENT); |
|
|
|
|
|
|
|
boolean result = false; |
|
|
|
PlayerProfile profile = null; |
|
|
|
if(!kicked_steam64.isEmpty()) { |
|
|
|
result = serverService.kickPlayer( |
|
|
|
profileService.GetProfile(kicked_steam64, List.of())); |
|
|
|
profile = profileService.GetProfile(kicked_steam64, List.of()); |
|
|
|
} else if (!player_name.isEmpty()) { |
|
|
|
result = serverService.kickPlayer( |
|
|
|
profileService.GetProfileOnPlayerOnServers(player_name, List.of())); |
|
|
|
profile = profileService.GetProfileOnPlayerOnServers(player_name, List.of()); |
|
|
|
} |
|
|
|
|
|
|
|
if (profile == null) return new ResponseEntity(HttpStatus.NOT_FOUND); |
|
|
|
if (!permitionService.CheckMorePowerfull(SteamIDConverter.getSteamID(steam64), profile.getSteamids())) return new ResponseEntity(HttpStatus.NOT_ACCEPTABLE); |
|
|
|
result = serverService.kickPlayer(profile, reason); |
|
|
|
|
|
|
|
if(result){ |
|
|
|
return new ResponseEntity(HttpStatus.OK); |
|
|
|
} else { |
|
|
|