|
@@ -61,16 +61,18 @@ public class GAController extends BaseController {
|
|
|
throws BadRequestException, DataException {
|
|
|
long start = System.currentTimeMillis();
|
|
|
log.info("****** listGAProperties() ****** apiRequest = {}", JsonUtils.toJson(apiRequest));
|
|
|
+ String accountResourceName = apiRequest.getData();
|
|
|
|
|
|
- // 1. Validates the request parameters - GA account resource name.
|
|
|
- if (StringUtils.isEmpty(apiRequest.getData())) {
|
|
|
+ // 1. Validates the request parameters.
|
|
|
+ if (StringUtils.isEmpty(accountResourceName)) {
|
|
|
throw new BadRequestException(apiRequest);
|
|
|
}
|
|
|
|
|
|
// 2. Executes the API request.
|
|
|
List<GAPropertyDTO> gaProperties =
|
|
|
gaAdminService.listGAProperties(
|
|
|
- GAAccountDTO.toResourceName(apiRequest.getData()), false);
|
|
|
+ // Converts to resource name if the account ID is provided by mistake.
|
|
|
+ GAAccountDTO.toResourceName(accountResourceName), false);
|
|
|
log.info(
|
|
|
"****** listGAProperties() ****** duration = {} seconds", getElapsedSeconds(start));
|
|
|
return OpenAPIResponse.<List<GAPropertyDTO>>builder()
|