|
|
@ -3,7 +3,6 @@ package app.controllers.user; |
|
|
|
import app.annotations.enums.AuthMethod; |
|
|
|
import app.annotations.interfaces.CheckWebAccess; |
|
|
|
import app.annotations.interfaces.WaitAfterNext; |
|
|
|
import app.entities.db.Ban; |
|
|
|
import app.services.db.BanService; |
|
|
|
import jakarta.servlet.http.HttpServletRequest; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
@ -11,9 +10,10 @@ 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; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
import java.util.HashMap; |
|
|
|
|
|
|
|
@RestController |
|
|
|
@RequestMapping("api/web") |
|
|
@ -29,8 +29,15 @@ public class PublicController { |
|
|
|
@GetMapping("/banlist") |
|
|
|
@CheckWebAccess(auth_method = AuthMethod.STEAM64) |
|
|
|
@WaitAfterNext(order = "banlist") |
|
|
|
public ResponseEntity<List<Ban>> getDiscordIDsBanList( |
|
|
|
HttpServletRequest request) { |
|
|
|
return new ResponseEntity<>(banService.getLastBans(20), HttpStatus.OK); |
|
|
|
public ResponseEntity<HashMap> getBanList( |
|
|
|
HttpServletRequest request, |
|
|
|
@RequestParam(required = false, defaultValue = "20") Integer limit, |
|
|
|
@RequestParam(required = false, defaultValue = "0") Integer offset) { |
|
|
|
if (limit > 20) return new ResponseEntity<>(HttpStatus.NOT_ACCEPTABLE); |
|
|
|
|
|
|
|
return new ResponseEntity<>(new HashMap<>(){{ |
|
|
|
put("bans", banService.getLastBans(limit,offset)); |
|
|
|
put("count", banService.getBansCount()); |
|
|
|
}}, HttpStatus.OK); |
|
|
|
} |
|
|
|
} |
|
|
|