|
@@ -41,13 +41,13 @@ public class GAController extends BaseController {
|
|
|
|
|
|
@PostMapping("/accounts/list")
|
|
|
@ResponseBody
|
|
|
- public OpenAPIResponse<List<GAAccountDTO>> listGAAccounts() throws DataException {
|
|
|
+ public OpenAPIResponse<List<GAAccountDTO>> listAccounts() throws DataException {
|
|
|
long start = System.currentTimeMillis();
|
|
|
- log.info("****** listGAAccounts() ******");
|
|
|
+ log.info("****** listAccounts() ******");
|
|
|
|
|
|
- List<GAAccountDTO> gaAccounts = gaAdminService.listGAAccounts();
|
|
|
+ List<GAAccountDTO> gaAccounts = gaAdminService.listAccounts();
|
|
|
|
|
|
- log.info("****** listGAAccounts() ****** duration = {} seconds", getElapsedSeconds(start));
|
|
|
+ log.info("****** listAccounts() ****** duration = {} seconds", getElapsedSeconds(start));
|
|
|
return OpenAPIResponse.<List<GAAccountDTO>>builder()
|
|
|
.status(APIStatus.SUCCESS)
|
|
|
.data(gaAccounts)
|
|
@@ -57,11 +57,11 @@ public class GAController extends BaseController {
|
|
|
@Operation(summary = "List the properties under a GA account resource name.")
|
|
|
@PostMapping("/properties/list")
|
|
|
@ResponseBody
|
|
|
- public OpenAPIResponse<List<GAPropertyDTO>> listGAProperties(
|
|
|
+ public OpenAPIResponse<List<GAPropertyDTO>> listProperties(
|
|
|
@RequestBody OpenAPIRequest<String> apiRequest)
|
|
|
throws BadRequestException, DataException {
|
|
|
long start = System.currentTimeMillis();
|
|
|
- log.info("****** listGAProperties() ****** apiRequest = {}", JsonUtils.toJson(apiRequest));
|
|
|
+ log.info("****** listProperties() ****** apiRequest = {}", JsonUtils.toJson(apiRequest));
|
|
|
String accountResourceName = apiRequest.getData();
|
|
|
|
|
|
// 1. Validates the request parameters.
|
|
@@ -71,11 +71,10 @@ public class GAController extends BaseController {
|
|
|
|
|
|
// 2. Executes the API request.
|
|
|
List<GAPropertyDTO> gaProperties =
|
|
|
- gaAdminService.listGAProperties(
|
|
|
+ gaAdminService.listProperties(
|
|
|
// Converts to resource name if the account ID is provided by mistake.
|
|
|
GAAccountDTO.toResourceName(accountResourceName), false);
|
|
|
- log.info(
|
|
|
- "****** listGAProperties() ****** duration = {} seconds", getElapsedSeconds(start));
|
|
|
+ log.info("****** listProperties() ****** duration = {} seconds", getElapsedSeconds(start));
|
|
|
return OpenAPIResponse.<List<GAPropertyDTO>>builder()
|
|
|
.status(APIStatus.SUCCESS)
|
|
|
.data(gaProperties)
|
|
@@ -84,12 +83,12 @@ public class GAController extends BaseController {
|
|
|
|
|
|
@PostMapping("/properties/create")
|
|
|
@ResponseBody
|
|
|
- public OpenAPIResponse<GAPropertyDTO> createGAPropertyWithDataStream(
|
|
|
+ public OpenAPIResponse<GAPropertyDTO> createPropertyWithDataStream(
|
|
|
@RequestBody OpenAPIRequest<CreatePropertyRequestDTO> apiRequest)
|
|
|
throws BadRequestException, DataException {
|
|
|
long start = System.currentTimeMillis();
|
|
|
log.info(
|
|
|
- "****** createGAPropertyWithDataStream() ****** apiRequest = {}",
|
|
|
+ "****** createPropertyWithDataStream() ****** apiRequest = {}",
|
|
|
JsonUtils.toJson(apiRequest));
|
|
|
CreatePropertyRequestDTO createPropertyRequest = apiRequest.getData();
|
|
|
|
|
@@ -102,12 +101,12 @@ public class GAController extends BaseController {
|
|
|
|
|
|
// 2. Executes the API request.
|
|
|
GAPropertyDTO gaProperty =
|
|
|
- gaAdminService.createGAPropertyWithDataStream(
|
|
|
+ gaAdminService.createPropertyWithDataStream(
|
|
|
createPropertyRequest.getAccountResourceName(),
|
|
|
createPropertyRequest.getDisplayName(),
|
|
|
createPropertyRequest.getUrl());
|
|
|
log.info(
|
|
|
- "****** createGAPropertyWithDataStream() ****** duration = {} seconds",
|
|
|
+ "****** createPropertyWithDataStream() ****** duration = {} seconds",
|
|
|
getElapsedSeconds(start));
|
|
|
return OpenAPIResponse.<GAPropertyDTO>builder()
|
|
|
.status(APIStatus.SUCCESS)
|
|
@@ -117,11 +116,11 @@ public class GAController extends BaseController {
|
|
|
|
|
|
@PostMapping("/report")
|
|
|
@ResponseBody
|
|
|
- public OpenAPIResponse<List<? extends GAReportDataDTO>> getGAReport(
|
|
|
+ public OpenAPIResponse<List<? extends GAReportDataDTO>> runReport(
|
|
|
@RequestBody OpenAPIRequest<GAReportRequestDTO> apiRequest)
|
|
|
throws BadRequestException, DataException {
|
|
|
long start = System.currentTimeMillis();
|
|
|
- log.info("****** getGAReport() ****** apiRequest = {}", JsonUtils.toJson(apiRequest));
|
|
|
+ log.info("****** runReport() ****** apiRequest = {}", JsonUtils.toJson(apiRequest));
|
|
|
GAReportRequestDTO reportRequest = apiRequest.getData();
|
|
|
|
|
|
// 1. Validates the request parameters.
|
|
@@ -138,7 +137,7 @@ public class GAController extends BaseController {
|
|
|
|
|
|
// 2. Executes the API request.
|
|
|
List<? extends GAReportDataDTO> report = gaDataService.runReport(apiRequest.getData());
|
|
|
- log.info("****** getGAReport() ****** duration = {} seconds", getElapsedSeconds(start));
|
|
|
+ log.info("****** runReport() ****** duration = {} seconds", getElapsedSeconds(start));
|
|
|
return OpenAPIResponse.<List<? extends GAReportDataDTO>>builder()
|
|
|
.status(APIStatus.SUCCESS)
|
|
|
.data(report)
|