|
@@ -1,16 +1,17 @@
|
|
|
package com.wechi.adweb.bridge.google.analytics.service;
|
|
|
|
|
|
+import static com.wechi.adweb.bridge.google.common.ResourceDTO.parseId;
|
|
|
+
|
|
|
import com.google.analytics.admin.v1beta.*;
|
|
|
import com.google.api.client.util.Lists;
|
|
|
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.google.protobuf.util.JsonFormat;
|
|
|
import com.wechi.adweb.bridge.exception.DataException;
|
|
|
import com.wechi.adweb.bridge.google.analytics.dto.GAAccountDTO;
|
|
|
import com.wechi.adweb.bridge.google.analytics.dto.GADataStreamDTO;
|
|
|
import com.wechi.adweb.bridge.google.analytics.dto.GAPropertyDTO;
|
|
|
+import com.wechi.adweb.bridge.util.JsonUtils;
|
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
@@ -38,8 +39,6 @@ public class GAAdminService {
|
|
|
|
|
|
private AnalyticsAdminServiceSettings adminServiceSettings;
|
|
|
|
|
|
- private final Gson gson = new Gson();
|
|
|
-
|
|
|
@PostConstruct
|
|
|
private void init() throws IOException {
|
|
|
GoogleCredentials credentials =
|
|
@@ -63,7 +62,7 @@ public class GAAdminService {
|
|
|
GAAccountDTO gaAccount =
|
|
|
GAAccountDTO.builder()
|
|
|
.id(parseId(account.getName()))
|
|
|
- .name(account.getName())
|
|
|
+ .resourceName(account.getName())
|
|
|
.displayName(account.getDisplayName())
|
|
|
.createTime(account.getCreateTime().getSeconds())
|
|
|
.updateTime(account.getUpdateTime().getSeconds())
|
|
@@ -73,7 +72,7 @@ public class GAAdminService {
|
|
|
gaAccounts.add(gaAccount);
|
|
|
}
|
|
|
|
|
|
- log.info("listGAAccounts : {}", gson.toJson(gaAccounts));
|
|
|
+ log.info("listGAAccounts : {}", JsonUtils.toJson(gaAccounts));
|
|
|
return gaAccounts;
|
|
|
} catch (IOException e) {
|
|
|
log.error(e.getMessage());
|
|
@@ -81,23 +80,25 @@ public class GAAdminService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- public List<GAPropertyDTO> listGAProperties(String accountName, boolean withDataStreams)
|
|
|
+ public List<GAPropertyDTO> listGAProperties(String accountResourceName, boolean withDataStreams)
|
|
|
throws DataException {
|
|
|
List<GAPropertyDTO> gaProperties = Lists.newArrayList();
|
|
|
try (AnalyticsAdminServiceClient analyticsAdminServiceClient =
|
|
|
AnalyticsAdminServiceClient.create(adminServiceSettings)) {
|
|
|
- // Initializes the list request with account name filter.
|
|
|
+ // Initializes the list request with account resource name filter.
|
|
|
// See
|
|
|
// https://developers.google.com/analytics/devguides/config/admin/v1/rest/v1beta/properties/list#http-request
|
|
|
ListPropertiesRequest request =
|
|
|
- ListPropertiesRequest.newBuilder().setFilter("ancestor:" + accountName).build();
|
|
|
+ ListPropertiesRequest.newBuilder()
|
|
|
+ .setFilter("ancestor:" + accountResourceName)
|
|
|
+ .build();
|
|
|
|
|
|
for (Property property :
|
|
|
analyticsAdminServiceClient.listProperties(request).iterateAll()) {
|
|
|
GAPropertyDTO gaProperty =
|
|
|
GAPropertyDTO.builder()
|
|
|
.id(parseId(property.getName()))
|
|
|
- .name(property.getName())
|
|
|
+ .resourceName(property.getName())
|
|
|
.displayName(property.getDisplayName())
|
|
|
.propertyType(property.getPropertyType().toString())
|
|
|
.account(property.getAccount())
|
|
@@ -122,13 +123,16 @@ public class GAAdminService {
|
|
|
// Distinct by property name.
|
|
|
gaProperties =
|
|
|
gaProperties.stream()
|
|
|
- .collect(Collectors.groupingBy(GAPropertyDTO::getName))
|
|
|
+ .collect(Collectors.groupingBy(GAPropertyDTO::getResourceName))
|
|
|
.values()
|
|
|
.stream()
|
|
|
.map(values -> values.get(0))
|
|
|
.toList();
|
|
|
|
|
|
- log.info("listGAProperties for {} : {}", accountName, gson.toJson(gaProperties));
|
|
|
+ log.info(
|
|
|
+ "listGAProperties for {} : {}",
|
|
|
+ accountResourceName,
|
|
|
+ JsonUtils.toJson(gaProperties));
|
|
|
return gaProperties;
|
|
|
} catch (IOException e) {
|
|
|
log.error(e.getMessage());
|
|
@@ -136,22 +140,23 @@ public class GAAdminService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- public List<GADataStreamDTO> listGADataStreams(String propertyName) throws DataException {
|
|
|
+ public List<GADataStreamDTO> listGADataStreams(String propertyResourceName)
|
|
|
+ throws DataException {
|
|
|
List<GADataStreamDTO> gaDataStreams = Lists.newArrayList();
|
|
|
try (AnalyticsAdminServiceClient analyticsAdminServiceClient =
|
|
|
AnalyticsAdminServiceClient.create(adminServiceSettings)) {
|
|
|
// Initializes the list request with parent property.
|
|
|
ListDataStreamsRequest request =
|
|
|
- ListDataStreamsRequest.newBuilder().setParent(propertyName).build();
|
|
|
+ ListDataStreamsRequest.newBuilder().setParent(propertyResourceName).build();
|
|
|
|
|
|
for (DataStream dataStream :
|
|
|
analyticsAdminServiceClient.listDataStreams(request).iterateAll()) {
|
|
|
GADataStreamDTO gaDataStream =
|
|
|
GADataStreamDTO.builder()
|
|
|
.id(parseId(dataStream.getName()))
|
|
|
- .name(dataStream.getName())
|
|
|
+ .resourceName(dataStream.getName())
|
|
|
.displayName(dataStream.getDisplayName())
|
|
|
- .property(propertyName)
|
|
|
+ .property(propertyResourceName)
|
|
|
.streamMeasurementId(
|
|
|
dataStream.getWebStreamData().getMeasurementId())
|
|
|
.streamDefaultUrl(dataStream.getWebStreamData().getDefaultUri())
|
|
@@ -161,7 +166,10 @@ public class GAAdminService {
|
|
|
gaDataStreams.add(gaDataStream);
|
|
|
}
|
|
|
|
|
|
- log.info("listGADataStreams for {} : {}", propertyName, gson.toJson(gaDataStreams));
|
|
|
+ log.info(
|
|
|
+ "listGADataStreams for {} : {}",
|
|
|
+ propertyResourceName,
|
|
|
+ JsonUtils.toJson(gaDataStreams));
|
|
|
return gaDataStreams;
|
|
|
} catch (IOException e) {
|
|
|
log.error(e.getMessage());
|
|
@@ -170,13 +178,13 @@ public class GAAdminService {
|
|
|
}
|
|
|
|
|
|
public GADataStreamDTO createGAPropertyWithDataStream(
|
|
|
- String accountName, String displayName, String url) throws DataException {
|
|
|
+ String accountResourceName, String displayName, String url) throws DataException {
|
|
|
try (AnalyticsAdminServiceClient analyticsAdminServiceClient =
|
|
|
AnalyticsAdminServiceClient.create(adminServiceSettings)) {
|
|
|
// 1. Creates the property.
|
|
|
Property property =
|
|
|
Property.newBuilder()
|
|
|
- .setParent(accountName)
|
|
|
+ .setParent(accountResourceName)
|
|
|
.setDisplayName(displayName)
|
|
|
.setTimeZone(DEFAULT_TIMEZONE)
|
|
|
.build();
|
|
@@ -199,7 +207,7 @@ public class GAAdminService {
|
|
|
GADataStreamDTO gaDataStream =
|
|
|
GADataStreamDTO.builder()
|
|
|
.id(parseId(createdDataStream.getName()))
|
|
|
- .name(createdDataStream.getName())
|
|
|
+ .resourceName(createdDataStream.getName())
|
|
|
.displayName(createdDataStream.getDisplayName())
|
|
|
.property(createdProperty.getName())
|
|
|
.streamMeasurementId(
|
|
@@ -213,10 +221,4 @@ public class GAAdminService {
|
|
|
throw new DataException(e);
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
- /** Parses GA ID from the resource name. */
|
|
|
- private static String parseId(String name) {
|
|
|
- List<String> parts = Splitter.on('/').splitToList(name);
|
|
|
- return parts.size() == 2 ? parts.get(1) : null;
|
|
|
- }
|
|
|
}
|