11 changed files with 185 additions and 31 deletions
@ -0,0 +1,59 @@ |
|||
package app.controllers.admin; |
|||
|
|||
import app.annotations.interfaces.CheckPermitionFlag; |
|||
import app.annotations.interfaces.NeedValidCookie; |
|||
import app.entities.db.Ban; |
|||
import app.services.ProfileService; |
|||
import app.services.db.BanService; |
|||
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/ban") |
|||
public class BanController { |
|||
ProfileService profileService; |
|||
BanService banService; |
|||
|
|||
@Autowired |
|||
public BanController(ProfileService profileService, |
|||
BanService banService) { |
|||
this.profileService = profileService; |
|||
this.banService = banService; |
|||
} |
|||
|
|||
@PostMapping |
|||
@NeedValidCookie |
|||
@CheckPermitionFlag(flag = "z") |
|||
public ResponseEntity banPlayer( |
|||
HttpServletRequest request, |
|||
@CookieValue(value = "steam64") String admin_steam64, |
|||
@RequestParam(value = "steam64") String user_steam64, |
|||
@RequestParam(value = "ban_length", required = false, defaultValue = "0") int ban_length, |
|||
@RequestParam(value = "ban_reason", required = false, defaultValue = "фурриёб") String ban_reason |
|||
){ |
|||
boolean result = banService.addBan( |
|||
profileService.GetProfile(user_steam64, List.of("steam_data")), |
|||
profileService.GetProfile(admin_steam64, List.of("steam_data")), |
|||
ban_length, ban_reason); |
|||
return result ? new ResponseEntity(result, HttpStatus.CREATED) : new ResponseEntity(result, HttpStatus.NOT_FOUND); |
|||
} |
|||
|
|||
@DeleteMapping |
|||
@NeedValidCookie |
|||
@CheckPermitionFlag(flag = "z") |
|||
public ResponseEntity unbanPlayer( |
|||
HttpServletRequest request, |
|||
@CookieValue(value = "steam64") String admin_steam64, |
|||
@RequestParam(value = "steam64") String user_steam64 |
|||
){ |
|||
boolean result = banService.removeBan( |
|||
profileService.GetProfile(user_steam64, List.of()), |
|||
profileService.GetProfile(admin_steam64, List.of())); |
|||
return result ? new ResponseEntity(result, HttpStatus.OK) : new ResponseEntity(result, HttpStatus.NOT_FOUND); |
|||
} |
|||
} |
@ -1,7 +1,64 @@ |
|||
package app.services.db; |
|||
|
|||
import app.entities.PlayerProfile; |
|||
import app.entities.db.Ban; |
|||
import app.entities.other.SteamID; |
|||
import app.services.ProfileService; |
|||
import app.services.ServerService; |
|||
import jakarta.persistence.EntityManager; |
|||
import jakarta.persistence.PersistenceContext; |
|||
import org.springframework.beans.factory.annotation.Autowired; |
|||
import org.springframework.stereotype.Service; |
|||
import org.springframework.transaction.annotation.Transactional; |
|||
|
|||
import java.sql.Timestamp; |
|||
import java.util.List; |
|||
|
|||
@Service |
|||
public class BanService { |
|||
@PersistenceContext |
|||
EntityManager entityManager; |
|||
ServerService serverService; |
|||
|
|||
@Autowired |
|||
public BanService(ServerService serverService) { |
|||
this.serverService = serverService; |
|||
} |
|||
|
|||
public Ban getBan(SteamID steamID) { |
|||
List<Object[]> result = entityManager.createNativeQuery("SELECT * FROM light_bans WHERE account_id = ?1 AND active = 1") |
|||
.setParameter(1, steamID.account_id) |
|||
.getResultList(); |
|||
return result.stream().map(Ban::new).findFirst().orElse(null); |
|||
} |
|||
|
|||
@Transactional |
|||
public boolean removeBan(PlayerProfile user, PlayerProfile admin) { |
|||
Ban ban = getBan(user.getSteamids()); |
|||
if (ban == null) return false; |
|||
return entityManager.createNativeQuery("UPDATE light_bans SET active=?1, unbanned_by_id = ?2, unbanned_timestamp = CURRENT_TIMESTAMP WHERE id = ?3") |
|||
.setParameter(1, 0) |
|||
.setParameter(2, admin.getSteamids().steam2) |
|||
.setParameter(3, ban.getId()) |
|||
.executeUpdate() > 0; |
|||
} |
|||
|
|||
@Transactional |
|||
public boolean addBan(PlayerProfile user, PlayerProfile admin, int ban_length, String ban_reason) { |
|||
Ban ban = getBan(user.getSteamids()); |
|||
if (ban != null) return true; |
|||
boolean result = entityManager.createNativeQuery("INSERT INTO light_bans (steam_id, account_id, ban_length, ban_reason, banned_by_id, active, ip, player_name, banned_by) VALUES (?1,?2,?3,?4,?5,?6,?7,?8,?9)") |
|||
.setParameter(1, user.getSteamids().steam2) |
|||
.setParameter(2, user.getSteamids().account_id) |
|||
.setParameter(3, ban_length) |
|||
.setParameter(4, ban_reason) |
|||
.setParameter(5, admin.getSteamids().steam2) |
|||
.setParameter(6, 1) |
|||
.setParameter(7, user.getPlay_on() != null ? user.getPlay_on().getIp() : "") |
|||
.setParameter(8, user.getPlay_on() != null ? user.getPlay_on().getName() : user.getSteam_data().getNickname()) |
|||
.setParameter(9, admin.getSteam_data().getNickname()) |
|||
.executeUpdate() > 0; |
|||
serverService.kickPlayer(user); |
|||
return result; |
|||
} |
|||
} |
|||
|
Loading…
Reference in new issue