|
@ -3,6 +3,7 @@ package app.services.db; |
|
|
import app.entities.Stats; |
|
|
import app.entities.Stats; |
|
|
import app.entities.other.SteamID; |
|
|
import app.entities.other.SteamID; |
|
|
import jakarta.persistence.EntityManager; |
|
|
import jakarta.persistence.EntityManager; |
|
|
|
|
|
import lombok.Data; |
|
|
import org.springframework.beans.factory.annotation.Qualifier; |
|
|
import org.springframework.beans.factory.annotation.Qualifier; |
|
|
import org.springframework.stereotype.Service; |
|
|
import org.springframework.stereotype.Service; |
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
import org.springframework.transaction.annotation.Transactional; |
|
@ -52,7 +53,7 @@ public class MessageService { |
|
|
.setParameter(2, server_id==null||server_id.isEmpty()?"%":server_id) |
|
|
.setParameter(2, server_id==null||server_id.isEmpty()?"%":server_id) |
|
|
.setParameter(3, filter==null||filter.isEmpty()?"%":"%" + filter + "%") |
|
|
.setParameter(3, filter==null||filter.isEmpty()?"%":"%" + filter + "%") |
|
|
.getSingleResult(); |
|
|
.getSingleResult(); |
|
|
return Map.of("result", result.stream().peek(message -> message.setAccount_name(nicknameService)).toList(), "count", count); |
|
|
return Map.of("result", result, "count", count); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public Long getMessageCount(SteamID steamID, String server_id) { |
|
|
public Long getMessageCount(SteamID steamID, String server_id) { |
|
@ -62,11 +63,12 @@ public class MessageService { |
|
|
.getSingleResult(); |
|
|
.getSingleResult(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Data |
|
|
class Message { |
|
|
class Message { |
|
|
int account_id; |
|
|
int account_id; |
|
|
long utime; |
|
|
long utime; |
|
|
String message; |
|
|
String message; |
|
|
private String server_id; |
|
|
String server_id; |
|
|
String account_name; |
|
|
String account_name; |
|
|
Message(Object obj) { |
|
|
Message(Object obj) { |
|
|
this.account_id = (int) ((Object[]) obj)[0]; |
|
|
this.account_id = (int) ((Object[]) obj)[0]; |
|
|