|
@@ -0,0 +1,81 @@
|
|
|
+package org.jeecg.modules.adweb.dmp.controller;
|
|
|
+
|
|
|
+import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
+
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+
|
|
|
+import org.apache.commons.lang.StringUtils;
|
|
|
+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;
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
+import java.util.Objects;
|
|
|
+
|
|
|
+/**
|
|
|
+ * GA网站流量
|
|
|
+ *
|
|
|
+ * @author wfansh
|
|
|
+ */
|
|
|
+@Tag(name = "Google Analytics网站流量")
|
|
|
+@RestController
|
|
|
+@RequestMapping("/ga-data")
|
|
|
+@Slf4j
|
|
|
+public class GADataController {
|
|
|
+
|
|
|
+ @Autowired private IAdwebSiteService adwebSiteService;
|
|
|
+
|
|
|
+ @Autowired private IGAPagePathReportService gaPagePathReportService;
|
|
|
+
|
|
|
+ // /** 网站流量分析统计 */
|
|
|
+ // public Result<?> getSiteTraffic(
|
|
|
+ // 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> map = DateUtil.getDateRangeByType(dateType);
|
|
|
+ // start = map.get("start");
|
|
|
+ // end = map.get("end");
|
|
|
+ // } else {
|
|
|
+ // if (end != null) {
|
|
|
+ // end = DateUtil.addDays(end, 1);
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+
|
|
|
+ @GetMapping("/page-path/stats")
|
|
|
+ public Result<List<PagePathStatsVO>> getPagePathStats(
|
|
|
+ Integer siteId,
|
|
|
+ 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);
|
|
|
+ }
|
|
|
+
|
|
|
+ // 1. 计算时间区间
|
|
|
+ if (StringUtils.isNotBlank(dateType)) {
|
|
|
+ Map<String, Date> dateRange = DateUtil.getDateRangeByType(dateType);
|
|
|
+ start = dateRange.get("start");
|
|
|
+ end = dateRange.get("end");
|
|
|
+ }
|
|
|
+
|
|
|
+ // 2. 查询并返回
|
|
|
+ return Result.ok(
|
|
|
+ gaPagePathReportService.getPagePathStats(
|
|
|
+ adwebSite.getCode(), adwebSite.getDomain(), start, end, 10));
|
|
|
+ }
|
|
|
+}
|