5 changed files with 49 additions and 4 deletions
@ -0,0 +1,34 @@ |
|||||
|
package app.controllers.admin; |
||||
|
|
||||
|
import app.annotations.interfaces.CheckPermitionFlag; |
||||
|
import app.annotations.interfaces.NeedValidCookie; |
||||
|
import app.services.StatsService; |
||||
|
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.GetMapping; |
||||
|
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
import org.springframework.web.bind.annotation.RequestParam; |
||||
|
import org.springframework.web.bind.annotation.RestController; |
||||
|
|
||||
|
@RestController |
||||
|
@RequestMapping("api/admin/rcon") |
||||
|
public class RconController { |
||||
|
|
||||
|
StatsService statsService; |
||||
|
|
||||
|
@Autowired |
||||
|
public RconController(StatsService statsService) { |
||||
|
this.statsService = statsService; |
||||
|
} |
||||
|
|
||||
|
@GetMapping |
||||
|
@NeedValidCookie |
||||
|
@CheckPermitionFlag(flag = "m") |
||||
|
public ResponseEntity<String> rcon(HttpServletRequest request, |
||||
|
@RequestParam String srv, |
||||
|
@RequestParam String command) { |
||||
|
return new ResponseEntity<>(statsService.rconExecute(srv, command), HttpStatus.OK); |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue