@ -3,8 +3,11 @@ package app.controllers.admin;
import app.annotations.interfaces.CheckPermitionFlag ;
import app.annotations.interfaces.CheckPermitionFlag ;
import app.annotations.interfaces.NeedValidCookie ;
import app.annotations.interfaces.NeedValidCookie ;
import app.entities.db.Ban ;
import app.entities.db.Ban ;
import app.entities.other.SteamID ;
import app.services.ProfileService ;
import app.services.ProfileService ;
import app.services.db.BanService ;
import app.services.db.BanService ;
import app.services.db.PermitionService ;
import app.utils.SteamIDConverter ;
import jakarta.servlet.http.HttpServletRequest ;
import jakarta.servlet.http.HttpServletRequest ;
import org.springframework.beans.factory.annotation.Autowired ;
import org.springframework.beans.factory.annotation.Autowired ;
import org.springframework.http.HttpStatus ;
import org.springframework.http.HttpStatus ;
@ -18,12 +21,15 @@ import java.util.List;
public class BanController {
public class BanController {
ProfileService profileService ;
ProfileService profileService ;
BanService banService ;
BanService banService ;
PermitionService permitionService ;
@Autowired
@Autowired
public BanController ( ProfileService profileService ,
public BanController ( ProfileService profileService ,
BanService banService ) {
BanService banService ,
PermitionService permitionService ) {
this . profileService = profileService ;
this . profileService = profileService ;
this . banService = banService ;
this . banService = banService ;
this . permitionService = permitionService ;
}
}
@PostMapping
@PostMapping
@ -36,6 +42,7 @@ public class BanController {
@RequestParam ( value = "ban_length" , required = false , defaultValue = "0" ) int ban_length ,
@RequestParam ( value = "ban_length" , required = false , defaultValue = "0" ) int ban_length ,
@RequestParam ( value = "ban_reason" , required = false , defaultValue = "фурриёб" ) String ban_reason
@RequestParam ( value = "ban_reason" , required = false , defaultValue = "фурриёб" ) String ban_reason
) {
) {
if ( ! permitionService . CheckMorePowerfull ( SteamIDConverter . getSteamID ( admin_steam64 ) , SteamIDConverter . getSteamID ( user_steam64 ) ) ) return new ResponseEntity ( HttpStatus . FORBIDDEN ) ;
boolean result = banService . addBan (
boolean result = banService . addBan (
profileService . GetProfile ( user_steam64 , List . of ( "steam_data" ) ) ,
profileService . GetProfile ( user_steam64 , List . of ( "steam_data" ) ) ,
profileService . GetProfile ( admin_steam64 , List . of ( "steam_data" ) ) ,
profileService . GetProfile ( admin_steam64 , List . of ( "steam_data" ) ) ,