|
@@ -1,7 +1,6 @@
|
|
|
package com.wechi.adweb.bridge.google.analytics;
|
|
|
|
|
|
import static com.wechi.adweb.bridge.google.analytics.dto.report.GAReportRequestDTO.*;
|
|
|
-import static com.wechi.adweb.bridge.google.analytics.dto.report.ReportType.*;
|
|
|
|
|
|
import com.google.analytics.data.v1beta.*;
|
|
|
import com.google.api.gax.core.FixedCredentialsProvider;
|
|
@@ -10,15 +9,14 @@ import com.google.gson.Gson;
|
|
|
import com.wechi.adweb.bridge.exception.DataException;
|
|
|
import com.wechi.adweb.bridge.google.analytics.dto.report.GAReportRequestDTO;
|
|
|
import com.wechi.adweb.bridge.google.analytics.dto.report.ReportType;
|
|
|
-import com.wechi.adweb.bridge.google.analytics.dto.report.row.CountryChartData;
|
|
|
-import com.wechi.adweb.bridge.google.analytics.dto.report.row.GAReportDataDTO;
|
|
|
-import com.wechi.adweb.bridge.google.analytics.dto.report.row.PagePathViewData;
|
|
|
-import com.wechi.adweb.bridge.google.analytics.dto.report.row.SourceMediaViewData;
|
|
|
-
|
|
|
-import jakarta.annotation.PostConstruct;
|
|
|
+import com.wechi.adweb.bridge.google.analytics.dto.report.data.CountryChartData;
|
|
|
+import com.wechi.adweb.bridge.google.analytics.dto.report.data.GAReportDataDTO;
|
|
|
+import com.wechi.adweb.bridge.google.analytics.dto.report.data.PagePathViewData;
|
|
|
+import com.wechi.adweb.bridge.google.analytics.dto.report.data.SourceMediaViewData;
|
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
+import org.apache.commons.lang3.BooleanUtils;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.stereotype.Service;
|
|
@@ -29,6 +27,8 @@ import java.util.Collections;
|
|
|
import java.util.List;
|
|
|
import java.util.Objects;
|
|
|
|
|
|
+import javax.annotation.PostConstruct;
|
|
|
+
|
|
|
/**
|
|
|
* @author wfansh
|
|
|
* <p>See https://developers.google.com/analytics/devguides/reporting/data/v1/api-schema for GA
|
|
@@ -43,7 +43,7 @@ public class GADataService {
|
|
|
|
|
|
private BetaAnalyticsDataSettings dataSettings;
|
|
|
|
|
|
- private Gson gson = new Gson();
|
|
|
+ private final Gson gson = new Gson();
|
|
|
|
|
|
@PostConstruct
|
|
|
private void init() throws IOException {
|
|
@@ -59,7 +59,7 @@ public class GADataService {
|
|
|
|
|
|
public List<? extends GAReportDataDTO> runReport(GAReportRequestDTO reportRequest)
|
|
|
throws DataException {
|
|
|
- // 0. Enhances the report request.
|
|
|
+ // 0. Enhances the report request with default settings.
|
|
|
this.amplifyReportRequest(reportRequest);
|
|
|
|
|
|
try (BetaAnalyticsDataClient analyticsDataClient =
|
|
@@ -67,6 +67,7 @@ public class GADataService {
|
|
|
// 1. Dimensions.
|
|
|
List<Dimension> dimensions =
|
|
|
reportRequest.getDimensions().stream()
|
|
|
+ .map(String::trim)
|
|
|
.filter(StringUtils::isNotEmpty)
|
|
|
.map(dimension -> Dimension.newBuilder().setName(dimension).build())
|
|
|
.toList();
|
|
@@ -74,6 +75,7 @@ public class GADataService {
|
|
|
// 2. Metrics.
|
|
|
List<Metric> metrics =
|
|
|
reportRequest.getMetrics().stream()
|
|
|
+ .map(String::trim)
|
|
|
.filter(StringUtils::isNotEmpty)
|
|
|
.map(metric -> Metric.newBuilder().setName(metric).build())
|
|
|
.toList();
|
|
@@ -102,7 +104,7 @@ public class GADataService {
|
|
|
}
|
|
|
|
|
|
// Desc.
|
|
|
- orderBy.setDesc(reportRequest.getOrderByDesc());
|
|
|
+ orderBy.setDesc(BooleanUtils.isTrue(reportRequest.getOrderByDesc()));
|
|
|
}
|
|
|
|
|
|
RunReportRequest.Builder request =
|
|
@@ -128,7 +130,7 @@ public class GADataService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- /** Enhances the report request by applying default settings from {@link ReportType}. */
|
|
|
+ /** Enhances the report request with default settings from {@link ReportType}. */
|
|
|
private void amplifyReportRequest(GAReportRequestDTO reportRequest) {
|
|
|
ReportType reportType = reportRequest.getReportType();
|
|
|
if (Objects.isNull(reportType)) {
|
|
@@ -152,18 +154,24 @@ public class GADataService {
|
|
|
}
|
|
|
|
|
|
if (Objects.isNull(reportRequest.getOrderByDesc())) {
|
|
|
- reportRequest.setOrderByDesc(reportType.isDefaultOrderByDesc());
|
|
|
+ reportRequest.setOrderByDesc(reportType.getDefaultOrderByDesc());
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- private List<? extends GAReportDataDTO> toReportData(
|
|
|
+ private List<? extends GAReportDataDTO> toReport(
|
|
|
List<Row> reportRows, GAReportRequestDTO reportRequest) {
|
|
|
+ if (Objects.isNull(reportRequest.getReportType())) {
|
|
|
+ return Collections.EMPTY_LIST;
|
|
|
+ }
|
|
|
+
|
|
|
+ List<String> metrics = reportRequest.getMetrics();
|
|
|
+ List<String> dimensions = reportRequest.getDimensions();
|
|
|
+
|
|
|
return switch (reportRequest.getReportType()) {
|
|
|
- case ADWEB_COUNTRY_CHART -> CountryChartData.fromReportRows(reportRows, reportRequest);
|
|
|
- case ADWEB_SOURCE_MEDIUM_VIEW ->
|
|
|
- SourceMediaViewData.fromReportRows(reportRows, reportRequest);
|
|
|
- case ADWEB_PATH_PATH_VIEW -> PagePathViewData.fromReportRows(reportRows, reportRequest);
|
|
|
- default -> Collections.emptyList();
|
|
|
+ case ADWEB_COUNTRY_CHART -> CountryChartData.toReport(reportRows, metrics, dimensions);
|
|
|
+ case ADWEB_SESSION_SOURCE_MEDIUM_VIEW ->
|
|
|
+ SourceMediaViewData.toReport(reportRows, metrics, dimensions);
|
|
|
+ case ADWEB_PAGE_PATH_VIEW -> PagePathViewData.toReport(reportRows, metrics, dimensions);
|
|
|
};
|
|
|
}
|
|
|
}
|