|
@@ -5,6 +5,7 @@ import com.wechi.adweb.bridge.common.APIStatus;
|
|
|
import com.wechi.adweb.bridge.common.BaseController;
|
|
|
import com.wechi.adweb.bridge.common.OpenAPIRequest;
|
|
|
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.report.GAReportRequestDTO;
|
|
|
import com.wechi.adweb.bridge.google.analytics.dto.report.ReportType;
|
|
@@ -36,7 +37,8 @@ public class GAController extends BaseController {
|
|
|
|
|
|
@RequestMapping("/report")
|
|
|
public OpenAPIResponse<List<? extends GAReportDataDTO>> getGAReport(
|
|
|
- @RequestBody OpenAPIRequest<GAReportRequestDTO> apiRequest) throws DataException {
|
|
|
+ @RequestBody OpenAPIRequest<GAReportRequestDTO> apiRequest)
|
|
|
+ throws BadRequestException, DataException {
|
|
|
long start = System.currentTimeMillis();
|
|
|
log.info("****** getGAReport() ****** apiRequest = {}", gson.toJson(apiRequest));
|
|
|
GAReportRequestDTO reportRequest = apiRequest.getData();
|
|
@@ -50,10 +52,7 @@ public class GAController extends BaseController {
|
|
|
|| (ReportType.ADWEB_CUSTOM_REPORT.equals(reportRequest.getReportType())
|
|
|
&& CollectionUtils.isEmpty(reportRequest.getMetrics())
|
|
|
&& CollectionUtils.isEmpty(reportRequest.getDimensions()))) {
|
|
|
- return OpenAPIResponse.<List<? extends GAReportDataDTO>>builder()
|
|
|
- .status(APIStatus.BAD_REQUEST)
|
|
|
- .message("Invalid request parameters")
|
|
|
- .build();
|
|
|
+ throw new BadRequestException(apiRequest);
|
|
|
}
|
|
|
|
|
|
// 2. Executes API requests.
|