|
@@ -10,6 +10,7 @@ import com.wechi.adweb.bridge.exception.DataException;
|
|
|
import com.wechi.adweb.bridge.google.ads.dto.CustomerStatsDTO;
|
|
|
import com.wechi.adweb.bridge.google.ads.dto.MetricsDTO;
|
|
|
import com.wechi.adweb.bridge.google.ads.dto.ReportRequestDTO;
|
|
|
+import com.wechi.adweb.bridge.google.ads.util.PlacementUtils;
|
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
@@ -125,4 +126,85 @@ public class GoogleAdsService {
|
|
|
LinkedHashMap::new));
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ public Map<String, MetricsDTO> getKeywordStats(ReportRequestDTO reportRequest)
|
|
|
+ throws DataException {
|
|
|
+ try (GoogleAdsServiceClient googleAdsServiceClient =
|
|
|
+ googleAdsClient.getLatestVersion().createGoogleAdsServiceClient()) {
|
|
|
+ String query =
|
|
|
+ String.format(
|
|
|
+ "SELECT ad_group_criterion.keyword.text, ad_group.name, campaign.name, "
|
|
|
+ + "metrics.impressions, metrics.clicks, metrics.ctr, metrics.average_cpc, "
|
|
|
+ + "metrics.average_cpm, metrics.conversions, metrics.cost_micros "
|
|
|
+ + "FROM keyword_view "
|
|
|
+ + "WHERE %s "
|
|
|
+ + "ORDER BY metrics.impressions DESC, metrics.clicks DESC LIMIT %d",
|
|
|
+ reportRequest.toDateClause(), reportRequest.getLimit());
|
|
|
+
|
|
|
+ SearchGoogleAdsRequest request =
|
|
|
+ SearchGoogleAdsRequest.newBuilder()
|
|
|
+ .setCustomerId(reportRequest.getCustomerId())
|
|
|
+ .setQuery(query)
|
|
|
+ .build();
|
|
|
+
|
|
|
+ SearchPagedResponse response = googleAdsServiceClient.search(request);
|
|
|
+ return StreamSupport.stream(response.iterateAll().spliterator(), false)
|
|
|
+ .collect(
|
|
|
+ Collectors.toMap(
|
|
|
+ googleAdsRow ->
|
|
|
+ googleAdsRow
|
|
|
+ .getAdGroupCriterion()
|
|
|
+ .getKeyword()
|
|
|
+ .getText(),
|
|
|
+ googleAdsRow ->
|
|
|
+ MetricsDTO.fromMetrics(googleAdsRow.getMetrics()),
|
|
|
+ // For duplicated keywords.
|
|
|
+ MetricsDTO::merge,
|
|
|
+ // Preserves the original order in the response.
|
|
|
+ LinkedHashMap::new));
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Uses 'group_placement_view' instead of 'detail_placement_view', corresponding to the "WHERE
|
|
|
+ * ADS SHOWED" menu on the UI.
|
|
|
+ *
|
|
|
+ * <p>See https://groups.google.com/g/adwords-api/c/2sdF9iuBns0/m/6gzfhd2HAwAJ for details.
|
|
|
+ */
|
|
|
+ public Map<String, MetricsDTO> getPlacementStats(ReportRequestDTO reportRequest)
|
|
|
+ throws DataException {
|
|
|
+ try (GoogleAdsServiceClient googleAdsServiceClient =
|
|
|
+ googleAdsClient.getLatestVersion().createGoogleAdsServiceClient()) {
|
|
|
+ String query =
|
|
|
+ String.format(
|
|
|
+ "SELECT group_placement_view.display_name, group_placement_view.placement, "
|
|
|
+ + "group_placement_view.placement_type, group_placement_view.target_url, "
|
|
|
+ + "metrics.impressions, metrics.clicks, metrics.ctr, metrics.average_cpc, "
|
|
|
+ + "metrics.average_cpm, metrics.conversions, metrics.cost_micros "
|
|
|
+ + "FROM group_placement_view "
|
|
|
+ + "WHERE %s "
|
|
|
+ + "ORDER BY metrics.impressions DESC, metrics.clicks DESC LIMIT %d",
|
|
|
+ reportRequest.toDateClause(), reportRequest.getLimit());
|
|
|
+
|
|
|
+ SearchGoogleAdsRequest request =
|
|
|
+ SearchGoogleAdsRequest.newBuilder()
|
|
|
+ .setCustomerId(reportRequest.getCustomerId())
|
|
|
+ .setQuery(query)
|
|
|
+ .build();
|
|
|
+
|
|
|
+ SearchPagedResponse response = googleAdsServiceClient.search(request);
|
|
|
+ return StreamSupport.stream(response.iterateAll().spliterator(), false)
|
|
|
+ .collect(
|
|
|
+ Collectors.toMap(
|
|
|
+ googleAdsRow ->
|
|
|
+ PlacementUtils.format(
|
|
|
+ googleAdsRow.getGroupPlacementView()),
|
|
|
+ googleAdsRow ->
|
|
|
+ MetricsDTO.fromMetrics(googleAdsRow.getMetrics()),
|
|
|
+ // For duplicated placements.
|
|
|
+ MetricsDTO::merge,
|
|
|
+ // Preserves the original order in the response.
|
|
|
+ LinkedHashMap::new));
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|