|
@@ -3,12 +3,10 @@ package com.wechi.adweb.bridge.google.analytics.dto.report.data;
|
|
|
import static com.wechi.adweb.bridge.google.analytics.dto.report.ReportConstant.*;
|
|
|
|
|
|
import com.google.analytics.data.v1beta.Row;
|
|
|
-import com.wechi.adweb.bridge.util.NumberUtils;
|
|
|
|
|
|
import lombok.Builder;
|
|
|
import lombok.Data;
|
|
|
|
|
|
-import java.math.BigDecimal;
|
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
@@ -26,11 +24,11 @@ public class SourceMediaViewData implements GAReportDataDTO {
|
|
|
|
|
|
private int sessions;
|
|
|
|
|
|
- private BigDecimal bounceRate;
|
|
|
+ private double bounceRate;
|
|
|
|
|
|
- private BigDecimal avgSessionDuration;
|
|
|
+ private double avgSessionDuration;
|
|
|
|
|
|
- private BigDecimal pageViewsPerSession;
|
|
|
+ private double pageViewsPerSession;
|
|
|
|
|
|
public static List<SourceMediaViewData> toReport(
|
|
|
List<Row> reportRows, List<String> metrics, List<String> dimensions) {
|
|
@@ -60,25 +58,18 @@ public class SourceMediaViewData implements GAReportDataDTO {
|
|
|
row.getMetricValues(indexSessions)
|
|
|
.getValue()))
|
|
|
.bounceRate(
|
|
|
- NumberUtils.formatDecimal(
|
|
|
- Double.parseDouble(
|
|
|
- row.getMetricValues(indexBounceRate)
|
|
|
- .getValue()),
|
|
|
- 4))
|
|
|
+ Double.parseDouble(
|
|
|
+ row.getMetricValues(indexBounceRate)
|
|
|
+ .getValue()))
|
|
|
.avgSessionDuration(
|
|
|
- NumberUtils.formatDecimal(
|
|
|
- Double.parseDouble(
|
|
|
- row.getMetricValues(
|
|
|
- indexAvgSessionDuration)
|
|
|
- .getValue()),
|
|
|
- 2))
|
|
|
+ Double.parseDouble(
|
|
|
+ row.getMetricValues(indexAvgSessionDuration)
|
|
|
+ .getValue()))
|
|
|
.pageViewsPerSession(
|
|
|
- NumberUtils.formatDecimal(
|
|
|
- Double.parseDouble(
|
|
|
- row.getMetricValues(
|
|
|
- indexPageViewsPerSession)
|
|
|
- .getValue()),
|
|
|
- 2))
|
|
|
+ Double.parseDouble(
|
|
|
+ row.getMetricValues(
|
|
|
+ indexPageViewsPerSession)
|
|
|
+ .getValue()))
|
|
|
.build())
|
|
|
.toList();
|
|
|
}
|