|
@@ -33,6 +33,7 @@ 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.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.core.ParameterizedTypeReference;
|
|
@@ -40,7 +41,6 @@ import org.springframework.core.annotation.AnnotationUtils;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.web.client.RestTemplate;
|
|
|
|
|
|
-import java.util.Collections;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
import java.util.Objects;
|
|
@@ -70,6 +70,8 @@ public class GAReportService {
|
|
|
@Value("${data-bridge.api.token}")
|
|
|
private String dataBridgeApiToken;
|
|
|
|
|
|
+ @Autowired private IGoogleGTMService googleGTMService;
|
|
|
+
|
|
|
@Autowired private IGACountryReportService gaCountryReportService;
|
|
|
@Autowired private IGASourceMediumReportService gaSourceMediumReportService;
|
|
|
@Autowired private IGAPagePathReportService gaPagePathReportService;
|
|
@@ -85,8 +87,8 @@ public class GAReportService {
|
|
|
|
|
|
/** 拉取并同步Google Analytics报表 */
|
|
|
public void syncGAReport() {
|
|
|
- // TODO: 获取可查的GoogleGTM对象
|
|
|
- List<GoogleGTM> googleGTMS = Collections.emptyList();
|
|
|
+ // TODO: 判断网站状态
|
|
|
+ List<GoogleGTM> googleGTMS = googleGTMService.list();
|
|
|
|
|
|
for (GoogleGTM googleGTM : googleGTMS) {
|
|
|
// 每个帐号同步更新三张报表
|