17 changed files with 396 additions and 80 deletions
@ -1,4 +1,4 @@ |
|||
package app.entities.db; |
|||
package app.entities; |
|||
|
|||
import lombok.Data; |
|||
|
@ -0,0 +1,17 @@ |
|||
package app.entities.db.converter; |
|||
|
|||
import app.entities.other.SteamID; |
|||
import app.utils.SteamIDConverter; |
|||
import jakarta.persistence.AttributeConverter; |
|||
|
|||
public class SteamIdSteam64Converter implements AttributeConverter<SteamID, String> { |
|||
@Override |
|||
public String convertToDatabaseColumn(SteamID steamID) { |
|||
return Long.toString(steamID.steam64); |
|||
} |
|||
|
|||
@Override |
|||
public SteamID convertToEntityAttribute(String s) { |
|||
return SteamIDConverter.getSteamID(s); |
|||
} |
|||
} |
@ -0,0 +1,67 @@ |
|||
package app.entities.messages; |
|||
|
|||
import app.services.db.NicknameService; |
|||
import jakarta.persistence.*; |
|||
import lombok.Data; |
|||
|
|||
import java.sql.ResultSet; |
|||
import java.sql.SQLException; |
|||
|
|||
/* |
|||
CREATE TABLE user_messages ( |
|||
id int(11) NOT NULL, |
|||
account_id int(11) NOT NULL, |
|||
utime bigint(20) NOT NULL, |
|||
message varchar(512) NOT NULL, |
|||
server_id varchar(32) NOT NULL |
|||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
|||
*/ |
|||
@Data |
|||
@Entity |
|||
@Table(schema = "tf2_facti13", name = "user_messages") |
|||
public class Message { |
|||
@Id |
|||
@Column(name="id") |
|||
Long id; |
|||
|
|||
@Column(name="account_id") |
|||
Long account_id; |
|||
|
|||
@Column(name = "utime") |
|||
Long utime; |
|||
|
|||
@Column(name = "message", length = 512) |
|||
String message; |
|||
|
|||
@Column(name = "server_id", length = 32) |
|||
String server_id; |
|||
|
|||
@Transient |
|||
String account_name; |
|||
public Message(Object obj) { |
|||
this.account_id = (long) ((Object[]) obj)[0]; |
|||
this.utime = (long) ((Object[]) obj)[1]; |
|||
this.message = (String) ((Object[]) obj)[2]; |
|||
this.server_id = (String) ((Object[]) obj)[3]; |
|||
} |
|||
|
|||
public Message(ResultSet rs) throws SQLException { |
|||
account_id = rs.getLong("account_id"); |
|||
utime = rs.getLong("utime"); |
|||
message = rs.getString("message"); |
|||
server_id = rs.getString("server_id"); |
|||
} |
|||
|
|||
public Message() { |
|||
|
|||
} |
|||
|
|||
public Message setAccount_name(NicknameService nicknameService) { |
|||
this.account_name = nicknameService.grabNickname(account_id.intValue(), server_id); |
|||
return this; |
|||
} |
|||
|
|||
public String getAccount_name() { |
|||
return ""; |
|||
} |
|||
} |
@ -0,0 +1,47 @@ |
|||
package app.entities.messages; |
|||
|
|||
import app.services.ProfileService; |
|||
import lombok.Getter; |
|||
|
|||
import java.time.LocalDateTime; |
|||
import java.time.ZoneId; |
|||
import java.util.ArrayList; |
|||
import java.util.List; |
|||
|
|||
public class MessageSearch { |
|||
private List<String> accounts; |
|||
private LocalDateTime begin; |
|||
private LocalDateTime end; |
|||
private String message; |
|||
private String serverId; |
|||
|
|||
public MessageSearch() { |
|||
} |
|||
|
|||
public List<Long> getAccounts(ProfileService profileService) { |
|||
if (accounts == null) return null; |
|||
|
|||
List<Long> filtered = accounts.stream() |
|||
.map(any -> profileService.GetSteamIDFromAnyData(any)) |
|||
.map(sId -> sId.steam2) |
|||
.map(Long::parseLong) |
|||
.toList(); |
|||
return filtered.isEmpty() ? null : filtered; |
|||
} |
|||
|
|||
public Long getBegin() { |
|||
return begin == null ? null : begin.atZone(ZoneId.systemDefault()).toInstant().getEpochSecond(); |
|||
} |
|||
|
|||
public Long getEnd() { |
|||
return end == null ? null : end.atZone(ZoneId.systemDefault()).toInstant().getEpochSecond(); |
|||
} |
|||
|
|||
public String getMessage() { |
|||
return message; |
|||
} |
|||
|
|||
public String getServerId() { |
|||
return serverId; |
|||
} |
|||
} |
@ -0,0 +1,26 @@ |
|||
package app.repositories; |
|||
|
|||
import app.entities.messages.Message; |
|||
import org.springframework.data.domain.Page; |
|||
import org.springframework.data.domain.Pageable; |
|||
import org.springframework.data.jpa.repository.Query; |
|||
import org.springframework.data.repository.PagingAndSortingRepository; |
|||
import org.springframework.data.repository.query.Param; |
|||
|
|||
import java.util.List; |
|||
|
|||
public interface MessageRepository extends PagingAndSortingRepository<Message, Long> { |
|||
|
|||
@Query(value = "select m from Message m where " + |
|||
"(:account_ids is null or m.account_id in :account_ids) and " + |
|||
"(:begin_date is null or :begin_date >= m.utime) and " + |
|||
"(:end_date is null or :end_date <= m.utime) and " + |
|||
"(:message_contain is null or m.message like :message_contain) and " + |
|||
"(:server_id is null or m.server_id like :server_id)") |
|||
Page<Message> getMessages(Pageable pageable, |
|||
@Param(value = "account_ids") List<Long> account_ids, |
|||
@Param(value = "begin_date") Long begin_date, |
|||
@Param(value = "end_date") Long end_date, |
|||
@Param(value = "message_contain") String message_contain, |
|||
@Param(value = "server_id") String message_id); |
|||
} |
Loading…
Reference in new issue