|
@@ -34,6 +34,7 @@ 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.site.service.IAdwebSiteService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.core.ParameterizedTypeReference;
|
|
@@ -70,8 +71,8 @@ public class GAReportService {
|
|
|
@Value("${data-bridge.api.token}")
|
|
|
private String dataBridgeApiToken;
|
|
|
|
|
|
+ @Autowired private IAdwebSiteService adwebSiteService;
|
|
|
@Autowired private IGoogleGTMService googleGTMService;
|
|
|
-
|
|
|
@Autowired private IGACountryReportService gaCountryReportService;
|
|
|
@Autowired private IGASourceMediumReportService gaSourceMediumReportService;
|
|
|
@Autowired private IGAPagePathReportService gaPagePathReportService;
|
|
@@ -87,8 +88,15 @@ public class GAReportService {
|
|
|
|
|
|
/** 拉取并同步Google Analytics报表 */
|
|
|
public void syncGAReport() {
|
|
|
- // TODO: 判断网站状态
|
|
|
- List<GoogleGTM> googleGTMS = googleGTMService.list();
|
|
|
+ List<GoogleGTM> googleGTMS =
|
|
|
+ googleGTMService.list().stream()
|
|
|
+ // 判断网站状态
|
|
|
+ .filter(
|
|
|
+ googleGTM ->
|
|
|
+ adwebSiteService
|
|
|
+ .getAllActiveSiteCodes()
|
|
|
+ .contains(googleGTM.getSiteCode()))
|
|
|
+ .toList();
|
|
|
|
|
|
for (GoogleGTM googleGTM : googleGTMS) {
|
|
|
// 每个帐号同步更新三张报表
|