|
@@ -1,14 +1,14 @@
|
|
|
package com.wechi.adweb.bridge.google.analytics;
|
|
|
|
|
|
-import static com.wechi.adweb.bridge.google.analytics.dto.GAReportRequestDTO.*;
|
|
|
+import static com.wechi.adweb.bridge.google.analytics.dto.report.GAReportRequestDTO.*;
|
|
|
|
|
|
import com.google.analytics.data.v1beta.*;
|
|
|
import com.google.api.gax.core.FixedCredentialsProvider;
|
|
|
import com.google.auth.oauth2.GoogleCredentials;
|
|
|
-import com.google.common.base.Splitter;
|
|
|
import com.google.gson.Gson;
|
|
|
import com.wechi.adweb.bridge.exception.DataException;
|
|
|
-import com.wechi.adweb.bridge.google.analytics.dto.GAReportRequestDTO;
|
|
|
+import com.wechi.adweb.bridge.google.analytics.dto.report.GAReportRequestDTO;
|
|
|
+import com.wechi.adweb.bridge.google.analytics.dto.report.ReportType;
|
|
|
|
|
|
import jakarta.annotation.PostConstruct;
|
|
|
|
|
@@ -17,6 +17,7 @@ import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
+import org.springframework.util.CollectionUtils;
|
|
|
|
|
|
import java.io.IOException;
|
|
|
import java.util.List;
|
|
@@ -54,20 +55,21 @@ public class GADataService {
|
|
|
}
|
|
|
|
|
|
public List<Object> runReport(GAReportRequestDTO reportRequest) throws DataException {
|
|
|
+ // 0. Enhances the report request.
|
|
|
+ this.amplifyReportRequest(reportRequest);
|
|
|
+
|
|
|
try (BetaAnalyticsDataClient analyticsDataClient =
|
|
|
BetaAnalyticsDataClient.create(dataSettings)) {
|
|
|
// 1. Dimensions.
|
|
|
List<Dimension> dimensions =
|
|
|
- Splitter.on(GAReportRequestDTO.DEFAULT_SPLITTER)
|
|
|
- .splitToStream(StringUtils.defaultString(reportRequest.getDimensions()))
|
|
|
+ reportRequest.getDimensions().stream()
|
|
|
.filter(StringUtils::isNotEmpty)
|
|
|
.map(dimension -> Dimension.newBuilder().setName(dimension).build())
|
|
|
.toList();
|
|
|
|
|
|
// 2. Metrics.
|
|
|
List<Metric> metrics =
|
|
|
- Splitter.on(GAReportRequestDTO.DEFAULT_SPLITTER)
|
|
|
- .splitToStream(StringUtils.defaultString(reportRequest.getMetrics()))
|
|
|
+ reportRequest.getMetrics().stream()
|
|
|
.filter(StringUtils::isNotEmpty)
|
|
|
.map(metric -> Metric.newBuilder().setName(metric).build())
|
|
|
.toList();
|
|
@@ -96,7 +98,7 @@ public class GADataService {
|
|
|
}
|
|
|
|
|
|
// Desc.
|
|
|
- orderBy.setDesc(reportRequest.isOrderByDesc());
|
|
|
+ orderBy.setDesc(reportRequest.getOrderByDesc());
|
|
|
}
|
|
|
|
|
|
RunReportRequest.Builder request =
|
|
@@ -121,4 +123,32 @@ public class GADataService {
|
|
|
throw new DataException(e);
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ /** Enhances the report request by applying default settings from {@link ReportType}. */
|
|
|
+ private void amplifyReportRequest(GAReportRequestDTO reportRequest) {
|
|
|
+ ReportType reportType = reportRequest.getReportType();
|
|
|
+ if (Objects.isNull(reportType)) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (CollectionUtils.isEmpty(reportRequest.getMetrics())) {
|
|
|
+ reportRequest.setMetrics(reportType.getDefaultMetrics());
|
|
|
+ }
|
|
|
+
|
|
|
+ if (CollectionUtils.isEmpty(reportRequest.getDimensions())) {
|
|
|
+ reportRequest.setDimensions(reportType.getDefaultDimensions());
|
|
|
+ }
|
|
|
+
|
|
|
+ if (Objects.isNull(reportRequest.getOrderBy())) {
|
|
|
+ reportRequest.setOrderBy(reportType.getDefaultOrderBy());
|
|
|
+ }
|
|
|
+
|
|
|
+ if (Objects.isNull(reportRequest.getOrderByType())) {
|
|
|
+ reportRequest.setOrderByType(reportType.getDefaultOrderByType());
|
|
|
+ }
|
|
|
+
|
|
|
+ if (Objects.isNull(reportRequest.getOrderByDesc())) {
|
|
|
+ reportRequest.setOrderByDesc(reportType.isDefaultOrderByDesc());
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|