X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=webapp-backend%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fric%2Fportal%2Fdashboard%2Fcontroller%2FAcXappController.java;h=7b97ca0eef6d393eee6268a9e3087a1bc3adea5f;hb=bf91f764c67001c4cad28075a38fd9196744c041;hp=87a783cbbfa30de8a35899fc74010949517de9b9;hpb=21f98d01948dabb1d6a89b60f5694969e42c9e63;p=portal%2Fric-dashboard.git diff --git a/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/controller/AcXappController.java b/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/controller/AcXappController.java index 87a783cb..7b97ca0e 100644 --- a/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/controller/AcXappController.java +++ b/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/controller/AcXappController.java @@ -31,10 +31,12 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.MediaType; +import org.springframework.security.access.annotation.Secured; import org.springframework.util.Assert; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PutMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; import com.fasterxml.jackson.databind.JsonNode; @@ -43,16 +45,27 @@ import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiParam; /** - * Provides methods to manage policies of the Admission Control xApp, which - * initially defines just one. All requests go via the A1 Mediatior. + * Proxies calls from the front end to the AC xApp via the A1 Mediator API. + * + * If a method throws RestClientResponseException, it is handled by + * {@link CustomResponseEntityExceptionHandler#handleProxyMethodException(Exception, org.springframework.web.context.request.WebRequest)} + * which returns status 502. All other exceptions are handled by Spring which + * returns status 500. */ @RestController -@RequestMapping(value = DashboardConstants.ENDPOINT_PREFIX + "/xapp/ac", produces = MediaType.APPLICATION_JSON_VALUE) +@RequestMapping(value = AcXappController.CONTROLLER_PATH, produces = MediaType.APPLICATION_JSON_VALUE) public class AcXappController { private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass()); - private static final String POLICY_CONTROL_ADMISSION_TIME = "control_admission_time"; + // Publish paths in constants so tests are easy to write + public static final String CONTROLLER_PATH = DashboardConstants.ENDPOINT_PREFIX + "/xapp/admctl"; + // Endpoints + public static final String VERSION_METHOD = DashboardConstants.VERSION_METHOD; + public static final String POLICY_METHOD = "policy"; + + // A "control" is an element in the XApp descriptor + private static final String AC_CONTROL_NAME = "admission_control_policy"; // Populated by the autowired constructor private final A1MediatorApi a1MediatorApi; @@ -61,38 +74,41 @@ public class AcXappController { public AcXappController(final A1MediatorApi a1MediatorApi) { Assert.notNull(a1MediatorApi, "API must not be null"); this.a1MediatorApi = a1MediatorApi; + if (logger.isDebugEnabled()) + logger.debug("ctor: configured with client type {}", a1MediatorApi.getClass().getName()); } @ApiOperation(value = "Gets the A1 client library MANIFEST.MF property Implementation-Version.", response = SuccessTransport.class) - @RequestMapping(value = DashboardConstants.VERSION_PATH, method = RequestMethod.GET) - public SuccessTransport getVersion() { - logger.debug("getVersion enter"); + @GetMapping(VERSION_METHOD) + // No role required + public SuccessTransport getA1MediatorClientVersion() { return new SuccessTransport(200, DashboardApplication.getImplementationVersion(A1MediatorApi.class)); } /* - * GET policy is not supported at present by A1 Mediator. Keeping this hidden - * until that changes. - * - * @ApiOperation(value = - * "Gets the named policy for AC xApp via the A1 Mediator") - * - * @RequestMapping(value = "policy/{" + POLICY_NAME + "}", method = - * RequestMethod.GET) public Object getPolicy(@PathVariable(POLICY_NAME) String - * policyName) { logger.debug("getPolicy: policy {}", policyName); - * a1MediatorApi.a1ControllerGetHandler(policyName); return null; } + * This controller is deliberately kept ignorant of the data expected by AC. The + * fields are defined in the ACAdmissionIntervalControl Typescript interface. */ + @ApiOperation(value = "Gets the admission control policy for AC xApp via the A1 Mediator") + @GetMapping(POLICY_METHOD) + @Secured({ DashboardConstants.ROLE_ADMIN, DashboardConstants.ROLE_STANDARD }) + public Object getAdmissionControlPolicy(HttpServletResponse response) { + logger.debug("getAdmissionControlPolicy"); + response.setStatus(HttpServletResponse.SC_NOT_IMPLEMENTED); + return null; + } /* - * This controller is deliberately kept ignorant of the - * ACAdmissionIntervalControl data structure. + * This controller is deliberately kept ignorant of the data expected by AC. The + * fields are defined in the ACAdmissionIntervalControl Typescript interface. */ - @ApiOperation(value = "Sets the control admission time for AC xApp via the A1 Mediator") - @RequestMapping(value = "catime", method = RequestMethod.PUT) - public void setControlAdmissionTime(@ApiParam(value = "Control admission time") @RequestBody JsonNode caTime, // + @ApiOperation(value = "Sets the admission control policy for AC xApp via the A1 Mediator") + @PutMapping(POLICY_METHOD) + @Secured({ DashboardConstants.ROLE_ADMIN }) + public void putAdmissionControlPolicy(@ApiParam(value = "Admission control policy") @RequestBody JsonNode acPolicy, // HttpServletResponse response) { - logger.debug("setControlAdmissionTime {}", caTime); - a1MediatorApi.a1ControllerPutHandler(POLICY_CONTROL_ADMISSION_TIME, caTime); + logger.debug("putAdmissionControlPolicy {}", acPolicy); + a1MediatorApi.a1ControllerPutHandler(AC_CONTROL_NAME, acPolicy); response.setStatus(a1MediatorApi.getApiClient().getStatusCode().value()); }