5 changed files with 118 additions and 18 deletions
@ -0,0 +1,73 @@ |
|||||
|
package app.controllers.admin; |
||||
|
|
||||
|
import app.annotations.interfaces.BurstUpdatePlayers; |
||||
|
import app.annotations.interfaces.CheckPermitionFlag; |
||||
|
import app.annotations.interfaces.CheckWebAccess; |
||||
|
import app.annotations.interfaces.WaitAfterNext; |
||||
|
import app.entities.PlayerProfile; |
||||
|
import app.services.ProfileService; |
||||
|
import app.services.ServerService; |
||||
|
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; |
||||
|
import org.springframework.http.ResponseEntity; |
||||
|
import org.springframework.web.bind.annotation.*; |
||||
|
|
||||
|
import java.util.List; |
||||
|
|
||||
|
@RestController |
||||
|
@RequestMapping("api/admin/mute") |
||||
|
public class MuteContoller { |
||||
|
ServerService serverService; |
||||
|
ProfileService profileService; |
||||
|
PermitionService permitionService; |
||||
|
|
||||
|
@Autowired |
||||
|
public MuteContoller(ServerService serverService, |
||||
|
ProfileService profileService, |
||||
|
PermitionService permitionService) { |
||||
|
this.serverService = serverService; |
||||
|
this.profileService = profileService; |
||||
|
this.permitionService = permitionService; |
||||
|
} |
||||
|
|
||||
|
@PostMapping |
||||
|
@CheckWebAccess |
||||
|
@CheckPermitionFlag(flag = "c") |
||||
|
@BurstUpdatePlayers |
||||
|
@WaitAfterNext |
||||
|
public ResponseEntity mutePlayer( |
||||
|
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 |
||||
|
) { |
||||
|
PlayerProfile profile = profileService.prepareProfileToAction(steam64, kicked_steam64, player_name); |
||||
|
boolean result = serverService.mutePlayer(profile, true); |
||||
|
|
||||
|
if (result) return new ResponseEntity(HttpStatus.OK); |
||||
|
else return new ResponseEntity(HttpStatus.NOT_FOUND); |
||||
|
} |
||||
|
|
||||
|
@DeleteMapping |
||||
|
@CheckWebAccess |
||||
|
@CheckPermitionFlag(flag = "c") |
||||
|
@BurstUpdatePlayers |
||||
|
@WaitAfterNext |
||||
|
public ResponseEntity unmutePlayer( |
||||
|
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 |
||||
|
) { |
||||
|
PlayerProfile profile = profileService.prepareProfileToAction(steam64, kicked_steam64, player_name); |
||||
|
boolean result = serverService.mutePlayer(profile, false); |
||||
|
|
||||
|
if (result) return new ResponseEntity(HttpStatus.OK); |
||||
|
else return new ResponseEntity(HttpStatus.NOT_FOUND); |
||||
|
} |
||||
|
|
||||
|
|
||||
|
} |
Loading…
Reference in new issue