|
|
@ -5,6 +5,7 @@ import app.entities.db.Ban; |
|
|
|
import app.entities.other.SteamID; |
|
|
|
import app.services.ProfileService; |
|
|
|
import app.services.ServerService; |
|
|
|
import app.utils.CryptedCookie; |
|
|
|
import jakarta.persistence.EntityManager; |
|
|
|
import jakarta.persistence.PersistenceContext; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
@ -20,39 +21,41 @@ import java.util.List; |
|
|
|
public class BanService { |
|
|
|
EntityManager entityManager; |
|
|
|
ServerService serverService; |
|
|
|
CryptedCookie cryptedCookie; |
|
|
|
|
|
|
|
@Autowired |
|
|
|
public BanService(ServerService serverService, @Qualifier(value = "RwEntityManager") EntityManager entityManager) { |
|
|
|
public BanService(ServerService serverService, @Qualifier(value = "RwEntityManager") EntityManager entityManager, CryptedCookie cryptedCookie) { |
|
|
|
this.entityManager = entityManager; |
|
|
|
this.serverService = serverService; |
|
|
|
this.cryptedCookie = cryptedCookie; |
|
|
|
} |
|
|
|
|
|
|
|
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); |
|
|
|
return result.stream().map(Ban::new).peek(ban -> ban.cryptIP(cryptedCookie)).findFirst().orElse(null); |
|
|
|
} |
|
|
|
|
|
|
|
public Ban getBan(int ban_id) { |
|
|
|
List<Object[]> result = entityManager.createNativeQuery("SELECT * FROM light_bans WHERE id = ?1") |
|
|
|
.setParameter(1, ban_id) |
|
|
|
.getResultList(); |
|
|
|
return result.stream().map(Ban::new).findFirst().orElse(null); |
|
|
|
return result.stream().map(Ban::new).peek(ban -> ban.cryptIP(cryptedCookie)).findFirst().orElse(null); |
|
|
|
} |
|
|
|
|
|
|
|
public List<Ban> getBans(SteamID steamID) { |
|
|
|
List<Object[]> result = entityManager.createNativeQuery("SELECT * FROM light_bans WHERE account_id = ?1 AND active = 0") |
|
|
|
.setParameter(1, steamID.account_id) |
|
|
|
.getResultList(); |
|
|
|
return result.stream().map(Ban::new).toList(); |
|
|
|
return result.stream().map(Ban::new).peek(ban -> ban.cryptIP(cryptedCookie)).toList(); |
|
|
|
} |
|
|
|
|
|
|
|
public List<Ban> getLastBans(Integer limit) { |
|
|
|
return entityManager.createNativeQuery("SELECT * FROM `light_bans` WHERE `active` = ?1 ORDER BY `light_bans`.`id` DESC LIMIT ?2") |
|
|
|
return ((List<Ban>) entityManager.createNativeQuery("SELECT * FROM `light_bans` WHERE `active` = ?1 ORDER BY `light_bans`.`id` DESC LIMIT ?2") |
|
|
|
.setParameter(1, 1) |
|
|
|
.setParameter(2, limit) |
|
|
|
.getResultStream().map(obj -> new Ban((Object[]) obj)).toList(); |
|
|
|
.getResultStream().map(obj -> new Ban((Object[]) obj)).toList()).stream().peek(ban -> ban.cryptIP(cryptedCookie)).toList(); |
|
|
|
//этот каст конечно пиздец, но он работает
|
|
|
|
} |
|
|
|
|
|
|
|