|
@@ -7,12 +7,14 @@ import com.wechi.adweb.bridge.common.OpenAPIResponse;
|
|
|
import com.wechi.adweb.bridge.exception.BadRequestException;
|
|
|
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.google.analytics.dto.report.GAReportRequestDTO;
|
|
|
import com.wechi.adweb.bridge.google.analytics.dto.report.ReportType;
|
|
|
import com.wechi.adweb.bridge.google.analytics.dto.report.data.GAReportDataDTO;
|
|
|
import com.wechi.adweb.bridge.google.analytics.service.GAAdminService;
|
|
|
import com.wechi.adweb.bridge.google.analytics.service.GADataService;
|
|
|
+import com.wechi.adweb.bridge.google.common.CreateRequestDTO;
|
|
|
import com.wechi.adweb.bridge.util.JsonUtils;
|
|
|
|
|
|
import io.swagger.v3.oas.annotations.Operation;
|
|
@@ -81,6 +83,41 @@ public class GAController extends BaseController {
|
|
|
.build();
|
|
|
}
|
|
|
|
|
|
+ // It's recommended to use hyphens (-) instead of underscores (_) in URLs.
|
|
|
+ // See https://developers.google.com/search/docs/crawling-indexing/url-structure
|
|
|
+ @PostMapping("/data-streams/create")
|
|
|
+ @ResponseBody
|
|
|
+ public OpenAPIResponse<GADataStreamDTO> createGAPropertyWithDataStream(
|
|
|
+ @RequestBody OpenAPIRequest<CreateRequestDTO> apiRequest)
|
|
|
+ throws BadRequestException, DataException {
|
|
|
+ long start = System.currentTimeMillis();
|
|
|
+ log.info(
|
|
|
+ "****** createGAPropertyWithDataStream() ****** apiRequest = {}",
|
|
|
+ JsonUtils.toJson(apiRequest));
|
|
|
+ CreateRequestDTO createRequest = apiRequest.getData();
|
|
|
+
|
|
|
+ // 1. Validates the request parameters.
|
|
|
+ if (StringUtils.isEmpty(createRequest.getAccountResourceName())
|
|
|
+ || StringUtils.isEmpty(createRequest.getDisplayName())
|
|
|
+ || StringUtils.isEmpty(createRequest.getUrl())) {
|
|
|
+ throw new BadRequestException(apiRequest);
|
|
|
+ }
|
|
|
+
|
|
|
+ // 2. Executes the API request.
|
|
|
+ GADataStreamDTO createdDataStream =
|
|
|
+ gaAdminService.createGAPropertyWithDataStream(
|
|
|
+ createRequest.getAccountResourceName(),
|
|
|
+ createRequest.getDisplayName(),
|
|
|
+ createRequest.getUrl());
|
|
|
+ log.info(
|
|
|
+ "****** createGAPropertyWithDataStream() ****** duration = {} seconds",
|
|
|
+ getElapsedSeconds(start));
|
|
|
+ return OpenAPIResponse.<GADataStreamDTO>builder()
|
|
|
+ .status(APIStatus.SUCCESS)
|
|
|
+ .data(createdDataStream)
|
|
|
+ .build();
|
|
|
+ }
|
|
|
+
|
|
|
@PostMapping("/report")
|
|
|
@ResponseBody
|
|
|
public OpenAPIResponse<List<? extends GAReportDataDTO>> getGAReport(
|