|
@@ -2,23 +2,23 @@ package org.jeecg.modules.adweb.dmp.service.impl;
|
|
|
|
|
|
import static org.jeecg.modules.adweb.dmp.vo.report.SiteOverviewStatsVO.DailyStatsVO;
|
|
import static org.jeecg.modules.adweb.dmp.vo.report.SiteOverviewStatsVO.DailyStatsVO;
|
|
|
|
|
|
|
|
+import cn.hutool.core.lang.Pair;
|
|
|
|
+
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
|
+import com.google.common.collect.Maps;
|
|
import com.google.common.collect.Sets;
|
|
import com.google.common.collect.Sets;
|
|
|
|
|
|
-import org.apache.commons.compress.utils.Lists;
|
|
|
|
import org.jeecg.common.util.DateUtils;
|
|
import org.jeecg.common.util.DateUtils;
|
|
import org.jeecg.modules.adweb.common.util.DateUtil;
|
|
import org.jeecg.modules.adweb.common.util.DateUtil;
|
|
import org.jeecg.modules.adweb.dmp.entity.GADailyReport;
|
|
import org.jeecg.modules.adweb.dmp.entity.GADailyReport;
|
|
import org.jeecg.modules.adweb.dmp.mapper.GADailyReportMapper;
|
|
import org.jeecg.modules.adweb.dmp.mapper.GADailyReportMapper;
|
|
import org.jeecg.modules.adweb.dmp.service.IGADailyReportService;
|
|
import org.jeecg.modules.adweb.dmp.service.IGADailyReportService;
|
|
|
|
+import org.jeecg.modules.adweb.enquiry.mapper.AdwebEnquiryMapper;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
-import java.util.Comparator;
|
|
|
|
-import java.util.Date;
|
|
|
|
-import java.util.List;
|
|
|
|
-import java.util.Set;
|
|
|
|
|
|
+import java.util.*;
|
|
import java.util.stream.Collectors;
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -28,7 +28,7 @@ import java.util.stream.Collectors;
|
|
public class GADailyReportServiceImpl extends ServiceImpl<GADailyReportMapper, GADailyReport>
|
|
public class GADailyReportServiceImpl extends ServiceImpl<GADailyReportMapper, GADailyReport>
|
|
implements IGADailyReportService {
|
|
implements IGADailyReportService {
|
|
|
|
|
|
- @Autowired private GADailyReportMapper gaDailyReportMapper;
|
|
|
|
|
|
+ @Autowired private AdwebEnquiryMapper adwebEnquiryMapper;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 查询指定时间区间内的{@DailyStatsVO}
|
|
* 查询指定时间区间内的{@DailyStatsVO}
|
|
@@ -36,7 +36,7 @@ public class GADailyReportServiceImpl extends ServiceImpl<GADailyReportMapper, G
|
|
* <p>如数据库中某天数据缺失,需填充空数据
|
|
* <p>如数据库中某天数据缺失,需填充空数据
|
|
*/
|
|
*/
|
|
public List<DailyStatsVO> getDailyStatsWithinPeriod(String siteCode, Date start, Date end) {
|
|
public List<DailyStatsVO> getDailyStatsWithinPeriod(String siteCode, Date start, Date end) {
|
|
- List<DailyStatsVO> dailyStatsVOs = Lists.newArrayList();
|
|
|
|
|
|
+ Map<String, DailyStatsVO> dailyStatsVOs = Maps.newHashMap();
|
|
|
|
|
|
List<GADailyReport> gaDailyReports =
|
|
List<GADailyReport> gaDailyReports =
|
|
this.list(
|
|
this.list(
|
|
@@ -49,19 +49,18 @@ public class GADailyReportServiceImpl extends ServiceImpl<GADailyReportMapper, G
|
|
// 1. VO数据填充
|
|
// 1. VO数据填充
|
|
for (GADailyReport gaDailyReport : gaDailyReports) {
|
|
for (GADailyReport gaDailyReport : gaDailyReports) {
|
|
DailyStatsVO dailyStatsVO = new DailyStatsVO();
|
|
DailyStatsVO dailyStatsVO = new DailyStatsVO();
|
|
- dailyStatsVO.setDate(
|
|
|
|
- DateUtils.date2Str(gaDailyReport.getDate(), DateUtils.date_sdf.get()));
|
|
|
|
|
|
+ String date = DateUtils.date2Str(gaDailyReport.getDate(), DateUtils.date_sdf.get());
|
|
|
|
+ dailyStatsVO.setDate(date);
|
|
dailyStatsVO.setTotalUsers(gaDailyReport.getTotalUsers());
|
|
dailyStatsVO.setTotalUsers(gaDailyReport.getTotalUsers());
|
|
dailyStatsVO.setSessions(gaDailyReport.getSessions());
|
|
dailyStatsVO.setSessions(gaDailyReport.getSessions());
|
|
dailyStatsVO.setBounceRate(gaDailyReport.getBounceRate());
|
|
dailyStatsVO.setBounceRate(gaDailyReport.getBounceRate());
|
|
dailyStatsVO.setAvgSessionDuration(gaDailyReport.getAvgSessionDuration());
|
|
dailyStatsVO.setAvgSessionDuration(gaDailyReport.getAvgSessionDuration());
|
|
dailyStatsVO.setPageViews(gaDailyReport.getPageViews());
|
|
dailyStatsVO.setPageViews(gaDailyReport.getPageViews());
|
|
dailyStatsVO.setPageViewsPerSession(gaDailyReport.getPageViewsPerSession());
|
|
dailyStatsVO.setPageViewsPerSession(gaDailyReport.getPageViewsPerSession());
|
|
-
|
|
|
|
// TODO: 待后续步骤设置
|
|
// TODO: 待后续步骤设置
|
|
- dailyStatsVO.setEnquires(0);
|
|
|
|
|
|
+ // dailyStatsVO.setEnquires(0);
|
|
|
|
|
|
- dailyStatsVOs.add(dailyStatsVO);
|
|
|
|
|
|
+ dailyStatsVOs.put(date, dailyStatsVO);
|
|
}
|
|
}
|
|
|
|
|
|
// 2. 缺失日期补充
|
|
// 2. 缺失日期补充
|
|
@@ -70,18 +69,25 @@ public class GADailyReportServiceImpl extends ServiceImpl<GADailyReportMapper, G
|
|
DateUtil.getAllDaysBetween(start, end).stream()
|
|
DateUtil.getAllDaysBetween(start, end).stream()
|
|
.map(date -> DateUtils.date2Str(date, DateUtils.date_sdf.get()))
|
|
.map(date -> DateUtils.date2Str(date, DateUtils.date_sdf.get()))
|
|
.collect(Collectors.toSet()),
|
|
.collect(Collectors.toSet()),
|
|
- dailyStatsVOs.stream()
|
|
|
|
- .map(DailyStatsVO::getDate)
|
|
|
|
- .collect(Collectors.toSet()));
|
|
|
|
|
|
+ dailyStatsVOs.keySet());
|
|
absentDays.forEach(
|
|
absentDays.forEach(
|
|
date -> {
|
|
date -> {
|
|
DailyStatsVO dailyStatsVO = new DailyStatsVO();
|
|
DailyStatsVO dailyStatsVO = new DailyStatsVO();
|
|
dailyStatsVO.setDate(date); // 其它数值字段设置为默认值
|
|
dailyStatsVO.setDate(date); // 其它数值字段设置为默认值
|
|
- dailyStatsVOs.add(dailyStatsVO);
|
|
|
|
|
|
+ dailyStatsVOs.put(date, dailyStatsVO);
|
|
});
|
|
});
|
|
|
|
|
|
|
|
+ // 3. 询盘数据补充
|
|
|
|
+ List<Pair<String, Integer>> enquiryDailyCounts =
|
|
|
|
+ adwebEnquiryMapper.getEnquiryDailyCounts(siteCode, start, end);
|
|
|
|
+ enquiryDailyCounts.forEach(
|
|
|
|
+ enquiryDailyCount ->
|
|
|
|
+ dailyStatsVOs
|
|
|
|
+ .get(enquiryDailyCount.getKey())
|
|
|
|
+ .setEnquires(enquiryDailyCount.getValue()));
|
|
|
|
+
|
|
// 3. 根据日期排序并返回
|
|
// 3. 根据日期排序并返回
|
|
- return dailyStatsVOs.stream()
|
|
|
|
|
|
+ return dailyStatsVOs.values().stream()
|
|
.sorted(Comparator.comparing(DailyStatsVO::getDate)) // 排日期升序排序
|
|
.sorted(Comparator.comparing(DailyStatsVO::getDate)) // 排日期升序排序
|
|
.toList();
|
|
.toList();
|
|
}
|
|
}
|