|
@@ -41,7 +41,7 @@ import java.util.stream.Collectors;
|
|
|
* 从DataBridge实时拉取GA报表数据,替代DB离线查询 - http://data-bridge.v3.adwebcloud.com:9002/swagger-ui/index.html
|
|
|
*
|
|
|
* @author wfansh
|
|
|
- * @deprecated 相比XXL定期同步 + DB离线查询,响应速度稍慢。后期DB数据量大产生性能瓶颈时,可重新评估并启用本方案
|
|
|
+ * @deprecated 相比XXL定期同步 + DB离线查询,响应速度较慢。后期DB数据量大产生性能瓶颈时,可重新评估并启用本方案
|
|
|
*/
|
|
|
@Deprecated
|
|
|
@Slf4j
|
|
@@ -52,7 +52,17 @@ public class RealtimeReportService {
|
|
|
@Autowired private IGoogleGTMService googleGTMService;
|
|
|
@Autowired private AdwebEnquiryMapper adwebEnquiryMapper;
|
|
|
@Autowired private GAReportService gaReportService;
|
|
|
- @Autowired private AdwebRedisUtil redisUtil;
|
|
|
+ @Autowired private AdwebRedisUtil adwebRedisUtil;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 拉取Google Analytics - 时间段报表 - 今天,昨天,本周,上周,本月,上月,全部
|
|
|
+ *
|
|
|
+ * <p>填充各时间段询盘数据
|
|
|
+ */
|
|
|
+ public List<PeriodicStatsVO> getPeriodicStats(String siteCode) {
|
|
|
+ // TODO
|
|
|
+ return Collections.EMPTY_LIST;
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* 拉取Google Analytics - Daily报表
|
|
@@ -67,8 +77,7 @@ public class RealtimeReportService {
|
|
|
"dmp:realtime:getDailyStats"
|
|
|
+ TTLCacheManager.TTL_SPLITTER
|
|
|
+ 60 * 10) // Redis TTL为10分钟
|
|
|
- public List<SiteOverviewStatsVO.DailyStatsVO> getDailyStats(
|
|
|
- String siteCode, Date start, Date end) {
|
|
|
+ public List<DailyStatsVO> getDailyStats(String siteCode, Date start, Date end) {
|
|
|
GoogleGTM googleGTM = this.getGTMAccount(siteCode);
|
|
|
if (StringUtils.isBlank(googleGTM.getGaPropertyId())) {
|
|
|
log.info("Google Analytics帐号未配置, siteCode = {}", siteCode);
|
|
@@ -443,7 +452,7 @@ public class RealtimeReportService {
|
|
|
private synchronized GoogleGTM getGTMAccount(String siteCode) {
|
|
|
final String redisKey = String.format("%s:account:%s", "googlegtm", siteCode);
|
|
|
|
|
|
- GoogleGTM googleGTM = (GoogleGTM) redisUtil.get(redisKey);
|
|
|
+ GoogleGTM googleGTM = (GoogleGTM) adwebRedisUtil.get(redisKey);
|
|
|
if (Objects.nonNull(googleGTM)) {
|
|
|
return googleGTM;
|
|
|
}
|
|
@@ -454,7 +463,7 @@ public class RealtimeReportService {
|
|
|
new LambdaQueryWrapper<GoogleGTM>().eq(GoogleGTM::getSiteCode, siteCode),
|
|
|
false);
|
|
|
googleGTM = Objects.nonNull(googleGTM) ? googleGTM : new GoogleGTM(); // Redis存储对象不允许为空
|
|
|
- redisUtil.set(redisKey, googleGTM, 30); // Redis TTL为30秒
|
|
|
+ adwebRedisUtil.set(redisKey, googleGTM, 30); // Redis TTL为30秒
|
|
|
|
|
|
return googleGTM;
|
|
|
}
|