|
@@ -9,7 +9,6 @@ import org.jeecg.common.api.vo.Result;
|
|
|
import org.jeecg.modules.adweb.common.util.DateUtil;
|
|
|
import org.jeecg.modules.adweb.dmp.service.IGAPagePathReportService;
|
|
|
import org.jeecg.modules.adweb.dmp.vo.report.PagePathStatsVO;
|
|
|
-import org.jeecg.modules.adweb.site.entity.AdwebSite;
|
|
|
import org.jeecg.modules.adweb.site.service.IAdwebSiteService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
@@ -20,7 +19,6 @@ import org.springframework.web.bind.annotation.RestController;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
-import java.util.Objects;
|
|
|
|
|
|
/**
|
|
|
* GA网站流量
|
|
@@ -57,15 +55,11 @@ public class GADataController {
|
|
|
|
|
|
@GetMapping("/page-path/stats")
|
|
|
public Result<List<PagePathStatsVO>> getPagePathStats(
|
|
|
- Integer siteId,
|
|
|
+ String siteCode,
|
|
|
String dateType,
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd") Date start,
|
|
|
- @DateTimeFormat(pattern = "yyyy-MM-dd") Date end) {
|
|
|
- AdwebSite adwebSite = adwebSiteService.getById(siteId);
|
|
|
- if (Objects.isNull(adwebSite)) {
|
|
|
- return Result.error("站点未找到" + siteId);
|
|
|
- }
|
|
|
-
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd") Date end,
|
|
|
+ int limit) {
|
|
|
// 1. 计算时间区间
|
|
|
if (StringUtils.isNotBlank(dateType)) {
|
|
|
Map<String, Date> dateRange = DateUtil.getDateRangeByType(dateType);
|
|
@@ -76,6 +70,6 @@ public class GADataController {
|
|
|
// 2. 查询并返回
|
|
|
return Result.ok(
|
|
|
gaPagePathReportService.getPagePathStats(
|
|
|
- adwebSite.getCode(), adwebSite.getDomain(), start, end, 10));
|
|
|
+ siteCode, start, end, limit >= 0 ? limit : 10));
|
|
|
}
|
|
|
}
|