Изменил формат даты внутри библиотеки на LocalDateTime
This commit is contained in:
parent
f759971840
commit
b94ca5827f
@ -2,13 +2,14 @@ package org.sadtech.bot.core.domain;
|
||||
|
||||
import org.sadtech.bot.core.domain.attachment.Attachment;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.List;
|
||||
import java.util.Objects;
|
||||
|
||||
public class Mail extends Content {
|
||||
|
||||
private Integer id;
|
||||
private Integer date;
|
||||
private LocalDateTime date;
|
||||
private String message;
|
||||
private List<Attachment> attachments;
|
||||
|
||||
@ -31,11 +32,11 @@ public class Mail extends Content {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Integer getDate() {
|
||||
public LocalDateTime getDate() {
|
||||
return date;
|
||||
}
|
||||
|
||||
public void setDate(Integer date) {
|
||||
public void setDate(LocalDateTime date) {
|
||||
this.date = date;
|
||||
}
|
||||
|
||||
|
@ -0,0 +1,5 @@
|
||||
package org.sadtech.bot.core.exception;
|
||||
|
||||
public class MailSendException extends RuntimeException {
|
||||
|
||||
}
|
@ -2,12 +2,13 @@ package org.sadtech.bot.core.repository;
|
||||
|
||||
import org.sadtech.bot.core.domain.Mail;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.List;
|
||||
|
||||
public interface MailRepository {
|
||||
|
||||
void add(Mail mail);
|
||||
|
||||
List<Mail> getMailByTime(Integer timeFrom, Integer timeTo);
|
||||
List<Mail> getMailByTime(LocalDateTime timeFrom, LocalDateTime timeTo);
|
||||
|
||||
}
|
||||
|
@ -4,6 +4,7 @@ import org.sadtech.bot.core.domain.Mail;
|
||||
import org.sadtech.bot.core.repository.EventRepository;
|
||||
import org.sadtech.bot.core.repository.MailRepository;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Queue;
|
||||
@ -11,33 +12,33 @@ import java.util.concurrent.ConcurrentLinkedQueue;
|
||||
|
||||
public class MailRepositoryList implements EventRepository<Mail>, MailRepository {
|
||||
|
||||
private final List<Mail> messages = new ArrayList<>();
|
||||
private final List<Mail> mails = new ArrayList<>();
|
||||
|
||||
@Override
|
||||
public void add(Mail mail) {
|
||||
messages.add(mail);
|
||||
mails.add(mail);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void cleanAll() {
|
||||
messages.clear();
|
||||
mails.clear();
|
||||
}
|
||||
|
||||
@Override
|
||||
public Queue<Mail> getEventQueue() {
|
||||
return new ConcurrentLinkedQueue<>(messages);
|
||||
return new ConcurrentLinkedQueue<>(mails);
|
||||
}
|
||||
|
||||
public List<Mail> getMailByTime(Integer timeFrom, Integer timeTo) {
|
||||
ArrayList<Mail> mails = new ArrayList<>();
|
||||
for (int i = messages.size() - 1; i >= 0; i--) {
|
||||
if (messages.get(i).getDate() >= timeFrom && messages.get(i).getDate() < timeTo) {
|
||||
mails.add(messages.get(i));
|
||||
} else if (messages.get(i).getDate() < timeFrom) {
|
||||
public List<Mail> getMailByTime(LocalDateTime timeFrom, LocalDateTime timeTo) {
|
||||
ArrayList<Mail> rezultMails = new ArrayList<>();
|
||||
for (int i = mails.size() - 1; i >= 0; i--) {
|
||||
if (!(mails.get(i).getDate().isBefore(timeFrom) || mails.get(i).getDate().isAfter(timeTo))) {
|
||||
rezultMails.add(this.mails.get(i));
|
||||
} else if (mails.get(i).getDate().isBefore(timeFrom)) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
return mails;
|
||||
return rezultMails;
|
||||
}
|
||||
|
||||
|
||||
|
@ -1,15 +1,16 @@
|
||||
package org.sadtech.bot.core.service;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.List;
|
||||
|
||||
public interface EventService<T> {
|
||||
|
||||
void add(T event);
|
||||
|
||||
List<T> getEvent(Integer timeFrom, Integer timeTo);
|
||||
List<T> getEvent(LocalDateTime timeFrom, LocalDateTime timeTo);
|
||||
|
||||
List<T> getFirstEventByTime(Integer timeFrom, Integer timeTo);
|
||||
List<T> getFirstEventByTime(LocalDateTime timeFrom, LocalDateTime timeTo);
|
||||
|
||||
List<T> getLastEventByTime(Integer timeFrom, Integer timeTo);
|
||||
List<T> getLastEventByTime(LocalDateTime timeFrom, LocalDateTime timeTo);
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user