covid19-ru/covid19-site/src/main/java/com/bvn13/covid19/site/service/StatisticsPreparator.java

144 lines
4.8 KiB
Java

/*
Copyright [2020] [bvn13]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package com.bvn13.covid19.site.service;
import com.bvn13.covid19.model.entities.CovidStat;
import com.bvn13.covid19.model.entities.CovidUpdate;
import com.bvn13.covid19.model.entities.Region;
import com.bvn13.covid19.site.repositories.CovidStatsRepository;
import com.bvn13.covid19.site.repositories.CovidUpdatesRepository;
import com.bvn13.covid19.site.repositories.RegionsRepository;
import lombok.RequiredArgsConstructor;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.stereotype.Component;
import javax.annotation.PostConstruct;
import javax.transaction.Transactional;
import java.time.LocalDate;
import java.time.ZoneId;
import java.time.ZonedDateTime;
import java.time.temporal.ChronoUnit;
import java.time.temporal.TemporalUnit;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Optional;
import java.util.stream.Collectors;
@RequiredArgsConstructor
@Component
public class StatisticsPreparator {
private final CovidStatsRepository statsRepository;
private final CovidUpdatesRepository updatesRepository;
private final RegionsRepository regionsRepository;
private LocalDate projectStartDate;
private ZonedDateTime projectStartZonedDate;
@Value("${app.zone-id}")
private String zoneIdStr;
@PostConstruct
public void init() {
ZoneId zoneId = ZoneId.of(zoneIdStr);
projectStartZonedDate = projectStartDate.atTime(0, 0, 0).atZone(zoneId);
}
@Value("${app.project-start-date}")
private void setProjectStartDate(String ld) {
if (ld != null && !ld.isEmpty()) {
projectStartDate = LocalDate.parse(ld);
}
}
@Transactional
public Collection<CovidStat> getLastCovidStats() {
return updatesRepository.findLastUpdate()
.flatMap(updateInfo -> updatesRepository.findFirstByCreatedOn(updateInfo.getCreatedOn()))
.map(statsRepository::findAllByUpdateInfo)
.orElse(Collections.emptyList());
}
@Cacheable(
cacheNames = "covid-last-update",
unless = "#result == null"
)
@Transactional
public Optional<CovidUpdate> findLastUpdate() {
return updatesRepository.findLastUpdate()
.flatMap(updateInfo -> updatesRepository.findFirstByCreatedOn(updateInfo.getCreatedOn()));
}
@Cacheable(
cacheNames = "covid-prev-update-by-date",
unless = "#result == null"
)
public Optional<CovidUpdate> findPrevUpdateByDate(ZonedDateTime date) {
if (date.isBefore(projectStartZonedDate)) {
return Optional.empty();
} else {
Optional<CovidUpdate> update = updatesRepository.findByDateOfUpdate(
dateWithTime(prevDate(date), 0, 0, 0),
dateWithTime(date, 0, 0, 0)
);
if (update.isPresent()) {
return update;
} else {
return findPrevUpdateByDate(prevDate(date));
}
}
}
@Cacheable(
cacheNames = "covid-stats-by-update-info-id",
condition = "#updateInfoId > 0",
unless = "#result == null || #result.size() <= 0"
)
public Collection<CovidStat> findCovidStatsByUpdateInfoId(long updateInfoId) {
return statsRepository.findAllByUpdateInfo_Id(updateInfoId);
}
@Cacheable(
cacheNames = "covid-all-days-updates",
unless = "#result == null || #result.size() <= 0"
)
public Collection<CovidUpdate> findAllLastUpdatesPerDay() {
return updatesRepository.findAllLastUpdatesPerDay();
}
@Cacheable(
cacheNames = "covid-regions",
unless = "#result == null || #result.size() <= 0"
)
public List<String> findAllRegionsNames() {
return regionsRepository.findAll().stream().map(Region::getName).collect(Collectors.toList());
}
private ZonedDateTime prevDate(ZonedDateTime date) {
return date.minus(1, ChronoUnit.DAYS);
}
private ZonedDateTime dateWithTime(ZonedDateTime date, int hour, int minute, int second) {
return date
.withHour(hour)
.withMinute(minute)
.withSecond(second);
}
}