GAAdminService.java 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. package com.wechi.adweb.bridge.google.analytics;
  2. import com.google.analytics.admin.v1beta.*;
  3. import com.google.api.client.util.Lists;
  4. import com.google.api.gax.core.FixedCredentialsProvider;
  5. import com.google.auth.oauth2.GoogleCredentials;
  6. import com.google.common.base.Splitter;
  7. import com.google.gson.Gson;
  8. import com.wechi.adweb.bridge.exception.DataException;
  9. import com.wechi.adweb.bridge.google.analytics.dto.GAAccountDTO;
  10. import com.wechi.adweb.bridge.google.analytics.dto.GADataStreamDTO;
  11. import com.wechi.adweb.bridge.google.analytics.dto.GAPropertyDTO;
  12. import jakarta.annotation.PostConstruct;
  13. import lombok.extern.slf4j.Slf4j;
  14. import org.springframework.beans.factory.annotation.Value;
  15. import org.springframework.stereotype.Service;
  16. import java.io.IOException;
  17. import java.util.List;
  18. /**
  19. * @author wfansh
  20. */
  21. @Slf4j
  22. @Service
  23. public class GAAdminService {
  24. @Value("${google.service.account.key}")
  25. private String serviceAccountKey;
  26. private AnalyticsAdminServiceSettings adminServiceSettings;
  27. private Gson gson = new Gson();
  28. @PostConstruct
  29. private void init() throws IOException {
  30. GoogleCredentials credentials =
  31. GoogleCredentials.fromStream(
  32. this.getClass().getClassLoader().getResourceAsStream(serviceAccountKey));
  33. this.adminServiceSettings =
  34. AnalyticsAdminServiceSettings.newBuilder()
  35. .setCredentialsProvider(FixedCredentialsProvider.create(credentials))
  36. .build();
  37. }
  38. public List<GAAccountDTO> listGAAccounts() throws DataException {
  39. List<GAAccountDTO> gaAccounts = Lists.newArrayList();
  40. try (AnalyticsAdminServiceClient analyticsAdminServiceClient =
  41. AnalyticsAdminServiceClient.create(adminServiceSettings)) {
  42. // Initializes the list request with default settings.
  43. ListAccountsRequest request = ListAccountsRequest.getDefaultInstance();
  44. for (Account account : analyticsAdminServiceClient.listAccounts(request).iterateAll()) {
  45. GAAccountDTO gaAccount = new GAAccountDTO();
  46. gaAccount.setId(parseId(account.getName()));
  47. gaAccount.setName(account.getName());
  48. gaAccount.setDisplayName(account.getDisplayName());
  49. gaAccount.setCreateTime(account.getCreateTime().getSeconds());
  50. gaAccount.setUpdateTime(account.getUpdateTime().getSeconds());
  51. // Adds into the list;
  52. gaAccounts.add(gaAccount);
  53. }
  54. log.info("listGAAccounts : {}", gson.toJson(gaAccounts));
  55. return gaAccounts;
  56. } catch (IOException e) {
  57. log.error(e.getMessage());
  58. throw new DataException(e);
  59. }
  60. }
  61. public List<GAPropertyDTO> listGAProperties(String accountName, boolean withDataStreams)
  62. throws DataException {
  63. List<GAPropertyDTO> gaProperties = Lists.newArrayList();
  64. try (AnalyticsAdminServiceClient analyticsAdminServiceClient =
  65. AnalyticsAdminServiceClient.create(adminServiceSettings)) {
  66. // Initializes the list request with account name filter.
  67. // See
  68. // https://developers.google.com/analytics/devguides/config/admin/v1/rest/v1beta/properties/list#http-request
  69. ListPropertiesRequest request =
  70. ListPropertiesRequest.newBuilder().setFilter("ancestor:" + accountName).build();
  71. for (Property property :
  72. analyticsAdminServiceClient.listProperties(request).iterateAll()) {
  73. GAPropertyDTO gaProperty = new GAPropertyDTO();
  74. gaProperty.setId(parseId(property.getName()));
  75. gaProperty.setName(property.getName());
  76. gaProperty.setDisplayName(property.getDisplayName());
  77. gaProperty.setPropertyType(property.getPropertyType().toString());
  78. gaProperty.setAccount(property.getAccount());
  79. gaProperty.setParent(property.getParent());
  80. gaProperty.setIndustryCategory(property.getIndustryCategory().toString());
  81. gaProperty.setTimeZone(property.getTimeZone());
  82. gaProperty.setCurrencyCode(property.getCurrencyCode());
  83. gaProperty.setServiceLevel(property.getServiceLevel().toString());
  84. gaProperty.setCreateTime(property.getCreateTime().getSeconds());
  85. gaProperty.setUpdateTime(property.getUpdateTime().getSeconds());
  86. // Sets the data streams associated with this property.
  87. if (withDataStreams) {
  88. gaProperty.setDataStreams(listGADataStreams(property.getName()));
  89. }
  90. // Adds into the list;
  91. gaProperties.add(gaProperty);
  92. }
  93. log.info("listGAProperties for {} : {}", accountName, gson.toJson(gaProperties));
  94. return gaProperties;
  95. } catch (IOException e) {
  96. log.error(e.getMessage());
  97. throw new DataException(e);
  98. }
  99. }
  100. public List<GADataStreamDTO> listGADataStreams(String propertyName) throws DataException {
  101. List<GADataStreamDTO> gaDataStreams = Lists.newArrayList();
  102. try (AnalyticsAdminServiceClient analyticsAdminServiceClient =
  103. AnalyticsAdminServiceClient.create(adminServiceSettings)) {
  104. // Initializes the list request with parent property.
  105. ListDataStreamsRequest request =
  106. ListDataStreamsRequest.newBuilder().setParent(propertyName).build();
  107. for (DataStream dataStream :
  108. analyticsAdminServiceClient.listDataStreams(request).iterateAll()) {
  109. GADataStreamDTO gaDataStream = new GADataStreamDTO();
  110. gaDataStream.setId(parseId(dataStream.getName()));
  111. gaDataStream.setName(dataStream.getName());
  112. gaDataStream.setDisplayName(dataStream.getDisplayName());
  113. gaDataStream.setStreamMeasurementId(
  114. dataStream.getWebStreamData().getMeasurementId());
  115. gaDataStream.setStreamDefaultUrl(dataStream.getWebStreamData().getDefaultUri());
  116. // Adds into the list;
  117. gaDataStreams.add(gaDataStream);
  118. }
  119. log.info("listGADataStreams for {} : {}", propertyName, gson.toJson(gaDataStreams));
  120. return gaDataStreams;
  121. } catch (IOException e) {
  122. log.error(e.getMessage());
  123. throw new DataException(e);
  124. }
  125. }
  126. /** Parses GA ID from the resource name. */
  127. private static String parseId(String name) {
  128. List<String> parts = Splitter.on('/').splitToList(name);
  129. return parts.size() == 2 ? parts.get(1) : null;
  130. }
  131. }