mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-20 14:00:56 +08:00
57 lines
2.1 KiB
Java
57 lines
2.1 KiB
Java
package com.openisle.service;
|
|
|
|
import com.openisle.repository.UserRepository;
|
|
import com.openisle.repository.PostRepository;
|
|
import com.openisle.repository.CommentRepository;
|
|
import lombok.RequiredArgsConstructor;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import java.time.LocalDate;
|
|
import java.util.LinkedHashMap;
|
|
import java.util.Map;
|
|
|
|
@Service
|
|
@RequiredArgsConstructor
|
|
public class StatService {
|
|
private final UserRepository userRepository;
|
|
private final PostRepository postRepository;
|
|
private final CommentRepository commentRepository;
|
|
|
|
private Map<LocalDate, Long> toDateMap(LocalDate start, LocalDate end, java.util.List<Object[]> list) {
|
|
Map<LocalDate, Long> result = new LinkedHashMap<>();
|
|
for (var obj : list) {
|
|
Object dateObj = obj[0];
|
|
LocalDate d;
|
|
if (dateObj instanceof java.sql.Date sqlDate) {
|
|
d = sqlDate.toLocalDate();
|
|
} else if (dateObj instanceof LocalDate localDate) {
|
|
d = localDate;
|
|
} else {
|
|
d = LocalDate.parse(dateObj.toString());
|
|
}
|
|
Long c = ((Number) obj[1]).longValue();
|
|
result.put(d, c);
|
|
}
|
|
for (LocalDate d = start; !d.isAfter(end); d = d.plusDays(1)) {
|
|
result.putIfAbsent(d, 0L);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
public Map<LocalDate, Long> countNewUsersRange(LocalDate start, LocalDate end) {
|
|
java.util.List<Object[]> list = userRepository.countDailyRange(start.atStartOfDay(), end.plusDays(1).atStartOfDay());
|
|
return toDateMap(start, end, list);
|
|
}
|
|
|
|
public Map<LocalDate, Long> countPostsRange(LocalDate start, LocalDate end) {
|
|
java.util.List<Object[]> list = postRepository.countDailyRange(start.atStartOfDay(), end.plusDays(1).atStartOfDay());
|
|
return toDateMap(start, end, list);
|
|
}
|
|
|
|
public Map<LocalDate, Long> countCommentsRange(LocalDate start, LocalDate end) {
|
|
java.util.List<Object[]> list = commentRepository.countDailyRange(start.atStartOfDay(), end.plusDays(1).atStartOfDay());
|
|
return toDateMap(start, end, list);
|
|
}
|
|
}
|
|
|