|
@@ -28,14 +28,8 @@ import org.jeecg.modules.adweb.dmp.dto.google.analytics.report.ReportConstant;
|
|
|
import org.jeecg.modules.adweb.dmp.dto.google.analytics.report.ReportType;
|
|
|
import org.jeecg.modules.adweb.dmp.dto.google.analytics.report.data.CustomReportData;
|
|
|
import org.jeecg.modules.adweb.dmp.dto.google.analytics.report.data.GAReportDataDTO;
|
|
|
-import org.jeecg.modules.adweb.dmp.entity.GACountryReport;
|
|
|
-import org.jeecg.modules.adweb.dmp.entity.GAPagePathReport;
|
|
|
-import org.jeecg.modules.adweb.dmp.entity.GASourceMediumReport;
|
|
|
-import org.jeecg.modules.adweb.dmp.entity.GoogleGTM;
|
|
|
-import org.jeecg.modules.adweb.dmp.service.IGACountryReportService;
|
|
|
-import org.jeecg.modules.adweb.dmp.service.IGAPagePathReportService;
|
|
|
-import org.jeecg.modules.adweb.dmp.service.IGASourceMediumReportService;
|
|
|
-import org.jeecg.modules.adweb.dmp.service.IGoogleGTMService;
|
|
|
+import org.jeecg.modules.adweb.dmp.entity.*;
|
|
|
+import org.jeecg.modules.adweb.dmp.service.*;
|
|
|
import org.jeecg.modules.adweb.site.service.IAdwebSiteService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
@@ -58,6 +52,8 @@ import java.util.Objects;
|
|
|
public class GAReportService {
|
|
|
|
|
|
// GA report entities对应的数据表名称
|
|
|
+ private static final String TABLE_GA_DAILY_REPORT =
|
|
|
+ AnnotationUtils.findAnnotation(GADailyReport.class, TableName.class).value();
|
|
|
private static final String TABLE_GA_COUNTRY_REPORT =
|
|
|
AnnotationUtils.findAnnotation(GACountryReport.class, TableName.class).value();
|
|
|
private static final String TABLE_GA_SOURCE_MEDIUM_REPORT =
|
|
@@ -75,6 +71,7 @@ public class GAReportService {
|
|
|
|
|
|
@Autowired private IAdwebSiteService adwebSiteService;
|
|
|
@Autowired private IGoogleGTMService googleGTMService;
|
|
|
+ @Autowired private IGADailyReportService gaDailyReportService;
|
|
|
@Autowired private IGACountryReportService gaCountryReportService;
|
|
|
@Autowired private IGASourceMediumReportService gaSourceMediumReportService;
|
|
|
@Autowired private IGAPagePathReportService gaPagePathReportService;
|
|
@@ -103,8 +100,9 @@ public class GAReportService {
|
|
|
new LambdaQueryWrapper<GoogleGTM>().in(GoogleGTM::getSiteCode, siteCodes));
|
|
|
|
|
|
for (GoogleGTM googleGTM : googleGTMs) {
|
|
|
- // 每个帐号同步更新三张报表
|
|
|
+ // 每个帐号同步更新四张报表
|
|
|
try {
|
|
|
+ this.syncGADailyReport(googleGTM);
|
|
|
this.syncGACountryReport(googleGTM);
|
|
|
this.syncGASourceMediumReport(googleGTM);
|
|
|
this.syncGAPagePathReport(googleGTM);
|
|
@@ -115,6 +113,73 @@ public class GAReportService {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
+ * 拉取并同步Google Analytics - Daily报表
|
|
|
+ *
|
|
|
+ * @param googleGTM
|
|
|
+ */
|
|
|
+ private void syncGADailyReport(GoogleGTM googleGTM) {
|
|
|
+ // 1. 报表时间区间
|
|
|
+ Date startDate = this.getReportStartDate(TABLE_GA_DAILY_REPORT, googleGTM.getSiteCode());
|
|
|
+ Date endDate = new Date();
|
|
|
+
|
|
|
+ // 2. 构建GA报表请求参数
|
|
|
+ // 使用ADWEB_CUSTOM_REPORT,不是ADWEB_DATE_VIEW - 需要更多metrics字段
|
|
|
+ GAReportRequestDTO gaReportRequest = new GAReportRequestDTO();
|
|
|
+ gaReportRequest.setPropertyResourceName(
|
|
|
+ GAPropertyDTO.toResourceName(googleGTM.getGaPropertyId()));
|
|
|
+ gaReportRequest.setReportType(ReportType.ADWEB_CUSTOM_REPORT);
|
|
|
+ gaReportRequest.setStartDate(DateUtils.date2Str(startDate, DateUtils.date_sdf.get()));
|
|
|
+ gaReportRequest.setEndDate(DateUtils.date2Str(endDate, DateUtils.date_sdf.get()));
|
|
|
+ gaReportRequest.setMetrics(
|
|
|
+ List.of(
|
|
|
+ ReportConstant.METRIC_TOTAL_USERS,
|
|
|
+ ReportConstant.METRIC_NEW_USERS,
|
|
|
+ ReportConstant.METRIC_SESSIONS,
|
|
|
+ ReportConstant.METRIC_BOUNCE_RATE,
|
|
|
+ ReportConstant.METRIC_AVG_SESSION_DURATION,
|
|
|
+ ReportConstant.METRIC_SCREEN_PAGE_VIEWS,
|
|
|
+ ReportConstant.METRIC_SCREEN_PAGE_VIEWS_PER_SESSION));
|
|
|
+ gaReportRequest.setDimensions(List.of(ReportConstant.DIMENSION_DATE));
|
|
|
+ gaReportRequest.setOrderByType(OrderByType.DIMENSIONS);
|
|
|
+ gaReportRequest.setOrderBy(ReportConstant.DIMENSION_DATE);
|
|
|
+ List<CustomReportData> reportDataList =
|
|
|
+ runGAReport(gaReportRequest, CustomReportData.class);
|
|
|
+
|
|
|
+ // 2. 转化为DB entity
|
|
|
+ List<GADailyReport> dailyReport = Lists.newArrayList();
|
|
|
+ for (CustomReportData reportData : reportDataList) {
|
|
|
+ GADailyReport reportRow = new GADailyReport();
|
|
|
+ reportRow.setSiteCode(googleGTM.getSiteCode());
|
|
|
+ reportRow.setDate(
|
|
|
+ DateUtils.str2Date(
|
|
|
+ reportData.get(ReportConstant.DIMENSION_DATE),
|
|
|
+ DateUtils.date_sdf.get()));
|
|
|
+ reportRow.setTotalUsers(
|
|
|
+ Integer.parseInt(reportData.get(ReportConstant.METRIC_TOTAL_USERS)));
|
|
|
+ reportRow.setNewUsers(
|
|
|
+ Integer.parseInt(reportData.get(ReportConstant.METRIC_NEW_USERS)));
|
|
|
+ reportRow.setSessions(Integer.parseInt(reportData.get(ReportConstant.METRIC_SESSIONS)));
|
|
|
+ reportRow.setBounceRate(
|
|
|
+ Double.parseDouble(reportData.get(ReportConstant.METRIC_BOUNCE_RATE)));
|
|
|
+ reportRow.setAvgSessionDuration(
|
|
|
+ Double.parseDouble(reportData.get(ReportConstant.METRIC_AVG_SESSION_DURATION)));
|
|
|
+ reportRow.setPageViews(Integer.parseInt(reportData.get(METRIC_SCREEN_PAGE_VIEWS)));
|
|
|
+ reportRow.setPageViewsPerSession(
|
|
|
+ Double.parseDouble(
|
|
|
+ reportData.get(ReportConstant.METRIC_SCREEN_PAGE_VIEWS_PER_SESSION)));
|
|
|
+
|
|
|
+ dailyReport.add(reportRow);
|
|
|
+ }
|
|
|
+
|
|
|
+ // 3. 更新数据库 - 删除旧数据,插入新数据
|
|
|
+ gaDailyReportService.remove(
|
|
|
+ this.getRemoveQueryWrapper(
|
|
|
+ GADailyReport.class, googleGTM.getSiteCode(), startDate, endDate));
|
|
|
+
|
|
|
+ gaDailyReportService.saveBatch(dailyReport, dailyReport.size());
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
* 拉取并同步Google Analytics - Country报表
|
|
|
*
|
|
|
* @param googleGTM
|