|
@@ -10,6 +10,7 @@ import jakarta.annotation.PostConstruct;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
import org.apache.commons.collections4.CollectionUtils;
|
|
|
+import org.apache.commons.lang3.ThreadUtils;
|
|
|
import org.apache.commons.lang3.reflect.TypeUtils;
|
|
|
import org.jeecg.common.util.DateUtils;
|
|
|
import org.jeecg.common.util.FastJsonUtil;
|
|
@@ -35,6 +36,7 @@ import org.springframework.core.annotation.AnnotationUtils;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.web.client.RestTemplate;
|
|
|
|
|
|
+import java.time.Duration;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
import java.util.Objects;
|
|
@@ -107,7 +109,11 @@ public class GAReportService {
|
|
|
this.syncGASourceMediumReport(googleGTM);
|
|
|
this.syncGAPagePathReport(googleGTM);
|
|
|
this.syncGADeviceReport(googleGTM);
|
|
|
- } catch (RuntimeException e) {
|
|
|
+
|
|
|
+ // Google Analytics API限流 - 10 queries per second (QPS) per IP address
|
|
|
+ // https://developers.google.com/analytics/devguides/config/userdeletion/v3/limits-quotas
|
|
|
+ ThreadUtils.sleep(Duration.ofSeconds(1));
|
|
|
+ } catch (InterruptedException | RuntimeException e) {
|
|
|
log.warn("同步GA报表异常, siteCode = {], error = {}", googleGTM.getSiteCode(), e);
|
|
|
}
|
|
|
}
|
|
@@ -178,7 +184,11 @@ public class GAReportService {
|
|
|
this.getRemoveQueryWrapper(
|
|
|
GADailyReport.class, googleGTM.getSiteCode(), startDate, endDate));
|
|
|
|
|
|
- gaDailyReportService.saveBatch(dailyReport, dailyReport.size());
|
|
|
+ if (CollectionUtils.isNotEmpty(dailyReport)) {
|
|
|
+ gaDailyReportService.saveBatch(dailyReport, dailyReport.size());
|
|
|
+ } else {
|
|
|
+ log.info("syncGADailyReport()数据为空, siteCode = {}", googleGTM.getSiteCode());
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -228,7 +238,11 @@ public class GAReportService {
|
|
|
this.getRemoveQueryWrapper(
|
|
|
GACountryReport.class, googleGTM.getSiteCode(), startDate, endDate));
|
|
|
|
|
|
- gaCountryReportService.saveBatch(countryReport, countryReport.size());
|
|
|
+ if (CollectionUtils.isNotEmpty(countryReport)) {
|
|
|
+ gaCountryReportService.saveBatch(countryReport, countryReport.size());
|
|
|
+ } else {
|
|
|
+ log.info("syncGACountryReport()数据为空, siteCode = {}", googleGTM.getSiteCode());
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -298,7 +312,11 @@ public class GAReportService {
|
|
|
this.getRemoveQueryWrapper(
|
|
|
GASourceMediumReport.class, googleGTM.getSiteCode(), startDate, endDate));
|
|
|
|
|
|
- gaSourceMediumReportService.saveBatch(sourceMediumReport, sourceMediumReport.size());
|
|
|
+ if (CollectionUtils.isNotEmpty(sourceMediumReport)) {
|
|
|
+ gaSourceMediumReportService.saveBatch(sourceMediumReport, sourceMediumReport.size());
|
|
|
+ } else {
|
|
|
+ log.info("syncGASourceMediumReport()数据为空, siteCode = {}", googleGTM.getSiteCode());
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -358,7 +376,11 @@ public class GAReportService {
|
|
|
this.getRemoveQueryWrapper(
|
|
|
GAPagePathReport.class, googleGTM.getSiteCode(), startDate, endDate));
|
|
|
|
|
|
- gaPagePathReportService.saveBatch(pagePathReport, pagePathReport.size());
|
|
|
+ if (CollectionUtils.isNotEmpty(pagePathReport)) {
|
|
|
+ gaPagePathReportService.saveBatch(pagePathReport, pagePathReport.size());
|
|
|
+ } else {
|
|
|
+ log.info("syncGAPagePathReport()数据为空, siteCode = {}", googleGTM.getSiteCode());
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -427,7 +449,11 @@ public class GAReportService {
|
|
|
this.getRemoveQueryWrapper(
|
|
|
GADeviceReport.class, googleGTM.getSiteCode(), startDate, endDate));
|
|
|
|
|
|
- gaDeviceReportService.saveBatch(deviceReport, deviceReport.size());
|
|
|
+ if (CollectionUtils.isNotEmpty(deviceReport)) {
|
|
|
+ gaDeviceReportService.saveBatch(deviceReport, deviceReport.size());
|
|
|
+ } else {
|
|
|
+ log.info("syncGADeviceReport()数据为空, siteCode = {}", googleGTM.getSiteCode());
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/**
|