Ver Fonte

without datastreams

wfansh há 6 meses atrás
pai
commit
3a625c555e

+ 5 - 2
src/main/java/com/wechi/adweb/bridge/google/analytics/GAAdminService.java

@@ -71,7 +71,8 @@ public class GAAdminService {
         }
     }
 
-    public List<GAPropertyDTO> listGAProperties(String accountName) throws DataException {
+    public List<GAPropertyDTO> listGAProperties(String accountName, boolean withDataStreams)
+            throws DataException {
         List<GAPropertyDTO> gaProperties = Lists.newArrayList();
         try (AnalyticsAdminServiceClient analyticsAdminServiceClient =
                 AnalyticsAdminServiceClient.create(adminServiceSettings)) {
@@ -98,7 +99,9 @@ public class GAAdminService {
                 gaProperty.setUpdateTime(property.getUpdateTime().getSeconds());
 
                 // Sets the data streams associated with this property.
-                gaProperty.setDataStreams(listGADataStreams(property.getName()));
+                if (withDataStreams) {
+                    gaProperty.setDataStreams(listGADataStreams(property.getName()));
+                }
 
                 // Adds into the list;
                 gaProperties.add(gaProperty);