|
@@ -88,7 +88,11 @@ public class GAReportService {
|
|
|
this.restTemplate = RestTemplateUtil.getRestTemplate(60, 60, dataBridgeApiToken);
|
|
|
}
|
|
|
|
|
|
- /** 拉取并同步Google Analytics报表 */
|
|
|
+ /**
|
|
|
+ * 拉取并同步Google Analytics报表
|
|
|
+ *
|
|
|
+ * @param siteCodes 待执行的网站codes,为空时执行所有网站
|
|
|
+ */
|
|
|
public void syncGAReport(List<String> siteCodes) {
|
|
|
if (ListUtil.isEmpty(siteCodes)) {
|
|
|
siteCodes = adwebSiteService.getAllActiveSiteCodes();
|
|
@@ -335,7 +339,9 @@ public class GAReportService {
|
|
|
* <p>2. 表中最大时间减一天 - 如10月10号凌晨2点执行,最大时间可能是10号;同时9号数据GA侧有可能更新
|
|
|
*/
|
|
|
private Date getReportStartDate(String tableName, String siteCode) {
|
|
|
- Date maxDate = commonMapper.getMaxDate(tableName, "date", "site_code = " + siteCode);
|
|
|
+ Date maxDate =
|
|
|
+ commonMapper.getMaxDate(
|
|
|
+ tableName, "date", String.format("site_code = '%s'", siteCode));
|
|
|
if (Objects.isNull(maxDate)) {
|
|
|
// 1. 一年前
|
|
|
return DateUtil.addDays(new Date(), -365);
|