|
@@ -1,6 +1,7 @@
|
|
|
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;
|
|
@@ -9,6 +10,9 @@ 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.SourceMediaViewData;
|
|
|
|
|
|
import jakarta.annotation.PostConstruct;
|
|
|
|
|
@@ -20,6 +24,7 @@ import org.springframework.stereotype.Service;
|
|
|
import org.springframework.util.CollectionUtils;
|
|
|
|
|
|
import java.io.IOException;
|
|
|
+import java.util.Collections;
|
|
|
import java.util.List;
|
|
|
import java.util.Objects;
|
|
|
|
|
@@ -51,7 +56,8 @@ public class GADataService {
|
|
|
.build();
|
|
|
}
|
|
|
|
|
|
- public List<Object> runReport(GAReportRequestDTO reportRequest) throws DataException {
|
|
|
+ public List<? extends GAReportDataDTO> runReport(GAReportRequestDTO reportRequest)
|
|
|
+ throws DataException {
|
|
|
// 0. Enhances the report request.
|
|
|
this.amplifyReportRequest(reportRequest);
|
|
|
|
|
@@ -113,8 +119,8 @@ public class GADataService {
|
|
|
|
|
|
RunReportResponse response = analyticsDataClient.runReport(request.build());
|
|
|
|
|
|
- // TODO: Parses the response.
|
|
|
- return null;
|
|
|
+ // Converts and returns.
|
|
|
+ return toReportData(response.getRowsList(), reportRequest);
|
|
|
} catch (IOException e) {
|
|
|
log.error(e.getMessage());
|
|
|
throw new DataException(e);
|
|
@@ -148,4 +154,14 @@ public class GADataService {
|
|
|
reportRequest.setOrderByDesc(reportType.isDefaultOrderByDesc());
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ private List<? extends GAReportDataDTO> toReportData(
|
|
|
+ List<Row> reportRows, GAReportRequestDTO reportRequest) {
|
|
|
+ return switch (reportRequest.getReportType()) {
|
|
|
+ case ADWEB_COUNTRY_CHART -> CountryChartData.fromReportRows(reportRows, reportRequest);
|
|
|
+ case ADWEB_SOURCE_MEDIUM_VIEW ->
|
|
|
+ SourceMediaViewData.fromReportRows(reportRows, reportRequest);
|
|
|
+ default -> Collections.emptyList();
|
|
|
+ };
|
|
|
+ }
|
|
|
}
|