|
@@ -9,8 +9,10 @@ import org.jeecg.common.api.vo.Result;
|
|
import org.jeecg.modules.adweb.common.util.DateUtil;
|
|
import org.jeecg.modules.adweb.common.util.DateUtil;
|
|
import org.jeecg.modules.adweb.dmp.service.IGACountryReportService;
|
|
import org.jeecg.modules.adweb.dmp.service.IGACountryReportService;
|
|
import org.jeecg.modules.adweb.dmp.service.IGAPagePathReportService;
|
|
import org.jeecg.modules.adweb.dmp.service.IGAPagePathReportService;
|
|
|
|
+import org.jeecg.modules.adweb.dmp.service.IGASourceMediumReportService;
|
|
import org.jeecg.modules.adweb.dmp.vo.report.CountryStatsVO;
|
|
import org.jeecg.modules.adweb.dmp.vo.report.CountryStatsVO;
|
|
import org.jeecg.modules.adweb.dmp.vo.report.PagePathStatsVO;
|
|
import org.jeecg.modules.adweb.dmp.vo.report.PagePathStatsVO;
|
|
|
|
+import org.jeecg.modules.adweb.dmp.vo.report.SourceMediumStatsVO;
|
|
import org.jeecg.modules.adweb.site.service.IAdwebSiteService;
|
|
import org.jeecg.modules.adweb.site.service.IAdwebSiteService;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
@@ -34,7 +36,7 @@ import java.util.Map;
|
|
public class GADataController {
|
|
public class GADataController {
|
|
|
|
|
|
@Autowired private IAdwebSiteService adwebSiteService;
|
|
@Autowired private IAdwebSiteService adwebSiteService;
|
|
-
|
|
|
|
|
|
+ @Autowired private IGASourceMediumReportService gaSourceMediumReportService;
|
|
@Autowired private IGACountryReportService gaCountryReportService;
|
|
@Autowired private IGACountryReportService gaCountryReportService;
|
|
@Autowired private IGAPagePathReportService gaPagePathReportService;
|
|
@Autowired private IGAPagePathReportService gaPagePathReportService;
|
|
|
|
|
|
@@ -56,6 +58,23 @@ public class GADataController {
|
|
// }
|
|
// }
|
|
// }
|
|
// }
|
|
|
|
|
|
|
|
+ @GetMapping("/source-medium/stats")
|
|
|
|
+ public Result<List<SourceMediumStatsVO>> getSourceMediumStats(
|
|
|
|
+ String siteCode,
|
|
|
|
+ String dateType,
|
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd") Date start,
|
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd") Date end) {
|
|
|
|
+ // 1. 计算时间区间
|
|
|
|
+ if (StringUtils.isNotBlank(dateType)) {
|
|
|
|
+ Map<String, Date> dateRange = DateUtil.getDateRangeByType(dateType);
|
|
|
|
+ start = dateRange.get("start");
|
|
|
|
+ end = dateRange.get("end");
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // 2. 查询并返回
|
|
|
|
+ return Result.ok(gaSourceMediumReportService.getSourceMediumStats(siteCode, start, end));
|
|
|
|
+ }
|
|
|
|
+
|
|
@GetMapping("/country/stats")
|
|
@GetMapping("/country/stats")
|
|
public Result<List<CountryStatsVO>> getCountryStats(
|
|
public Result<List<CountryStatsVO>> getCountryStats(
|
|
String siteCode,
|
|
String siteCode,
|