|
@@ -1,19 +1,58 @@
|
|
package org.jeecg.modules.adweb.dmp.service.impl;
|
|
package org.jeecg.modules.adweb.dmp.service.impl;
|
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
|
+import com.google.common.base.Strings;
|
|
|
|
|
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
|
+
|
|
|
|
+import org.apache.commons.collections4.CollectionUtils;
|
|
|
|
+import org.apache.commons.lang3.StringUtils;
|
|
|
|
+import org.jeecg.modules.adweb.common.util.NumberUtil;
|
|
import org.jeecg.modules.adweb.dmp.entity.GAPagePathReport;
|
|
import org.jeecg.modules.adweb.dmp.entity.GAPagePathReport;
|
|
import org.jeecg.modules.adweb.dmp.mapper.GAPagePathReportMapper;
|
|
import org.jeecg.modules.adweb.dmp.mapper.GAPagePathReportMapper;
|
|
import org.jeecg.modules.adweb.dmp.service.IGAPagePathReportService;
|
|
import org.jeecg.modules.adweb.dmp.service.IGAPagePathReportService;
|
|
|
|
+import org.jeecg.modules.adweb.dmp.vo.report.PagePathStatsVO;
|
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
|
|
+import java.util.Collections;
|
|
|
|
+import java.util.Date;
|
|
|
|
+import java.util.List;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
- * @Description: dmp_ga_page_path_report
|
|
|
|
- * @Author: jeecg-boot
|
|
|
|
- * @Date: 2024-10-11
|
|
|
|
- * @Version: V1.0
|
|
|
|
|
|
+ * @Description: dmp_ga_page_path_report @Author: jeecg-boot @Date: 2024-10-11 @Version: V1.0
|
|
*/
|
|
*/
|
|
@Service
|
|
@Service
|
|
-public class GAPagePathReportServiceImpl extends ServiceImpl<GAPagePathReportMapper, GAPagePathReport> implements IGAPagePathReportService {
|
|
|
|
|
|
+@Slf4j
|
|
|
|
+public class GAPagePathReportServiceImpl
|
|
|
|
+ extends ServiceImpl<GAPagePathReportMapper, GAPagePathReport>
|
|
|
|
+ implements IGAPagePathReportService {
|
|
|
|
+
|
|
|
|
+ @Autowired private GAPagePathReportMapper gaPagePathReportMapper;
|
|
|
|
+
|
|
|
|
+ public List<PagePathStatsVO> getPagePathStats(
|
|
|
|
+ String siteCode, String siteUrl, Date start, Date end, int limit) {
|
|
|
|
+ List<PagePathStatsVO> pagePathStatsVOs =
|
|
|
|
+ gaPagePathReportMapper.getPagePathStats(siteCode, start, end, limit);
|
|
|
|
+ if (CollectionUtils.isEmpty(pagePathStatsVOs)) {
|
|
|
|
+ return Collections.EMPTY_LIST;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // 1. 网站URL格式化
|
|
|
|
+ siteUrl = StringUtils.removeEnd(Strings.nullToEmpty(siteUrl), "/");
|
|
|
|
+
|
|
|
|
+ // 2. 时间区间内PV总数
|
|
|
|
+ int totalPVs = gaPagePathReportMapper.countTotalPVs(siteCode, start, end);
|
|
|
|
+
|
|
|
|
+ // 3. VO数据填充
|
|
|
|
+ for (PagePathStatsVO pagePathStatsVO : pagePathStatsVOs) {
|
|
|
|
+ pagePathStatsVO.setPagePath(siteUrl + pagePathStatsVO.getPagePath());
|
|
|
|
+ pagePathStatsVO.setPvProportion(
|
|
|
|
+ NumberUtil.formatPercentage(
|
|
|
|
+ totalPVs == 0 ? 0 : (double) pagePathStatsVO.getPageViews() / totalPVs,
|
|
|
|
+ 2));
|
|
|
|
+ }
|
|
|
|
|
|
|
|
+ return pagePathStatsVOs;
|
|
|
|
+ }
|
|
}
|
|
}
|