6 changed files with 113 additions and 34 deletions
@ -0,0 +1,51 @@ |
|||
package app.controllers; |
|||
|
|||
import app.entities.PlayerProfile; |
|||
import app.entities.db.Permition; |
|||
import app.services.ProfileService; |
|||
import app.services.ServerService; |
|||
import app.utils.SaltedCookie; |
|||
import org.springframework.beans.factory.annotation.Autowired; |
|||
import org.springframework.http.HttpStatus; |
|||
import org.springframework.http.ResponseEntity; |
|||
import org.springframework.web.bind.annotation.*; |
|||
|
|||
import java.util.List; |
|||
|
|||
@RestController |
|||
@RequestMapping("api/admin") |
|||
public class AdminController { |
|||
ServerService serverService; |
|||
SaltedCookie saltedCookie; |
|||
ProfileService profileService; |
|||
|
|||
@Autowired |
|||
public AdminController(ServerService serverService, |
|||
SaltedCookie saltedCookie, |
|||
ProfileService profileService) { |
|||
this.serverService = serverService; |
|||
this.saltedCookie = saltedCookie; |
|||
this.profileService = profileService; |
|||
} |
|||
|
|||
public boolean ValidateAdmin(String steam64, String flag) { |
|||
Permition permition = profileService.GetProfile(steam64, List.of("permition")).getPermition(); |
|||
if (permition == null) return false; |
|||
return permition.getFlags().contains(flag); |
|||
} |
|||
|
|||
@GetMapping("kick") |
|||
public ResponseEntity kickPlayer( |
|||
@CookieValue(value = "steam64", defaultValue = "") String steam64, |
|||
@CookieValue(value = "steam64_secured", defaultValue = "") String steam64_secured, |
|||
@RequestParam(value = "steam64", required = true) String kicked_steam64 |
|||
) { |
|||
if(!saltedCookie.Validate(steam64, steam64_secured)) return new ResponseEntity<>(HttpStatus.FORBIDDEN); |
|||
if(!ValidateAdmin(steam64, "z")) return new ResponseEntity<>(HttpStatus.FORBIDDEN); |
|||
if(serverService.kickPlayer(profileService.GetProfile(kicked_steam64,List.of()))){ |
|||
return new ResponseEntity(HttpStatus.OK); |
|||
} else { |
|||
return new ResponseEntity(HttpStatus.NOT_FOUND); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,27 @@ |
|||
package app.services; |
|||
|
|||
import app.entities.PlayerProfile; |
|||
import app.entities.Stats; |
|||
import app.entities.server.PlayOn; |
|||
import org.springframework.beans.factory.annotation.Autowired; |
|||
import org.springframework.context.ApplicationContext; |
|||
import org.springframework.stereotype.Service; |
|||
|
|||
@Service |
|||
public class ServerService { |
|||
Stats stats; |
|||
ApplicationContext applicationContext; |
|||
|
|||
@Autowired |
|||
public ServerService(Stats stats, |
|||
ApplicationContext applicationContext) { |
|||
this.stats = stats; |
|||
this.applicationContext = applicationContext; |
|||
} |
|||
|
|||
public boolean kickPlayer(PlayerProfile playerProfile){ |
|||
if (playerProfile.getPlay_on() == null) return false; |
|||
return stats.getServers().get(playerProfile.getPlay_on().getServer_id()) |
|||
.ExecuteRCON(applicationContext, "sm_kick #%d kicked from backend".formatted(playerProfile.getPlay_on().getPlayer_id())).contains("kicked"); |
|||
} |
|||
} |
@ -0,0 +1,30 @@ |
|||
package app.services; |
|||
|
|||
import app.entities.Stats; |
|||
import app.entities.other.SteamID; |
|||
import app.entities.server.PlayOn; |
|||
import app.entities.server.Server; |
|||
import app.entities.server.players.RCONPlayer; |
|||
import org.springframework.beans.factory.annotation.Autowired; |
|||
import org.springframework.stereotype.Service; |
|||
|
|||
import java.util.Map; |
|||
|
|||
@Service |
|||
public class StatsService { |
|||
Stats stats; |
|||
|
|||
@Autowired |
|||
public StatsService (Stats stats) { |
|||
this.stats = stats; |
|||
} |
|||
|
|||
public PlayOn searchPlayer(SteamID steamID){ |
|||
for (Map.Entry<String, Server> stringServerEntry : stats.getServers().entrySet()) { |
|||
RCONPlayer player = stringServerEntry.getValue().searchPlayer(steamID); |
|||
if (player != null) return new PlayOn(stringServerEntry.getKey(), player.getId()); |
|||
} |
|||
return null; |
|||
} |
|||
|
|||
} |
Loading…
Reference in new issue