X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=dmaap-adaptor-java%2Fsrc%2Fmain%2Fjava%2Forg%2Foran%2Fdmaapadapter%2Fcontrollers%2FProducerCallbacksController.java;h=94f9f8db9ea8788732bdf314e88865fc53f58778;hb=09e21f39a3ffcfc2063110bcad028014b0056398;hp=d4fe95cef50437b399c7f1a75b866c1b52392633;hpb=b12ba6d71c0468c505aad9e9879e76526b8fe123;p=nonrtric.git diff --git a/dmaap-adaptor-java/src/main/java/org/oran/dmaapadapter/controllers/ProducerCallbacksController.java b/dmaap-adaptor-java/src/main/java/org/oran/dmaapadapter/controllers/ProducerCallbacksController.java index d4fe95ce..94f9f8db 100644 --- a/dmaap-adaptor-java/src/main/java/org/oran/dmaapadapter/controllers/ProducerCallbacksController.java +++ b/dmaap-adaptor-java/src/main/java/org/oran/dmaapadapter/controllers/ProducerCallbacksController.java @@ -24,12 +24,17 @@ import com.google.gson.Gson; import com.google.gson.GsonBuilder; import io.swagger.v3.oas.annotations.Operation; +import io.swagger.v3.oas.annotations.media.ArraySchema; import io.swagger.v3.oas.annotations.media.Content; import io.swagger.v3.oas.annotations.media.Schema; import io.swagger.v3.oas.annotations.responses.ApiResponse; import io.swagger.v3.oas.annotations.responses.ApiResponses; import io.swagger.v3.oas.annotations.tags.Tag; +import java.util.ArrayList; +import java.util.Collection; + +import org.oran.dmaapadapter.exceptions.ServiceException; import org.oran.dmaapadapter.r1.ProducerJobInfo; import org.oran.dmaapadapter.repository.InfoTypes; import org.oran.dmaapadapter.repository.Job; @@ -52,10 +57,10 @@ import org.springframework.web.bind.annotation.RestController; public class ProducerCallbacksController { private static final Logger logger = LoggerFactory.getLogger(ProducerCallbacksController.class); - public static final String API_NAME = "Management of configuration"; + public static final String API_NAME = "Producer job control API"; public static final String API_DESCRIPTION = ""; - public static final String JOB_URL = "/dmaap_dataproducer/info_job"; - public static final String SUPERVISION_URL = "/dmaap_dataproducer/health_check"; + public static final String JOB_URL = "/generic_dataproducer/info_job"; + public static final String SUPERVISION_URL = "/generic_dataproducer/health_check"; private static Gson gson = new GsonBuilder().create(); private final Jobs jobs; private final InfoTypes types; @@ -70,20 +75,47 @@ public class ProducerCallbacksController { description = "The call is invoked to activate or to modify a data subscription. The endpoint is provided by the Information Producer.") @ApiResponses(value = { // @ApiResponse(responseCode = "200", description = "OK", // - content = @Content(schema = @Schema(implementation = VoidResponse.class))) // + content = @Content(schema = @Schema(implementation = VoidResponse.class))), // + @ApiResponse(responseCode = "404", description = "Information type is not found", // + content = @Content(schema = @Schema(implementation = ErrorResponse.ErrorInfo.class))), // + @ApiResponse(responseCode = "400", description = "Other error in the request", // + content = @Content(schema = @Schema(implementation = ErrorResponse.ErrorInfo.class))) // }) public ResponseEntity jobCreatedCallback( // @RequestBody String body) { try { ProducerJobInfo request = gson.fromJson(body, ProducerJobInfo.class); - - logger.info("Job started callback {}", request.id); - Job job = new Job(request.id, request.targetUri, types.getType(request.typeId)); - this.jobs.put(job); + logger.debug("Job started callback {}", request.id); + this.jobs.addJob(request.id, request.targetUri, types.getType(request.typeId), request.owner, + request.lastUpdated, toJobParameters(request.jobData)); return new ResponseEntity<>(HttpStatus.OK); + } catch (ServiceException e) { + logger.warn("jobCreatedCallback failed: {}", e.getMessage()); + return ErrorResponse.create(e, e.getHttpStatus()); } catch (Exception e) { - return ErrorResponse.create(e, HttpStatus.NOT_FOUND); + logger.warn("jobCreatedCallback failed: {}", e.getMessage()); + return ErrorResponse.create(e, HttpStatus.BAD_REQUEST); + } + } + + private Job.Parameters toJobParameters(Object jobData) { + String json = gson.toJson(jobData); + return gson.fromJson(json, Job.Parameters.class); + } + + @GetMapping(path = JOB_URL, produces = MediaType.APPLICATION_JSON_VALUE) + @Operation(summary = "Get all jobs", description = "Returns all info jobs, can be used for trouble shooting") + @ApiResponse(responseCode = "200", // + description = "Information jobs", // + content = @Content(array = @ArraySchema(schema = @Schema(implementation = ProducerJobInfo.class)))) // + public ResponseEntity getJobs() { + + Collection producerJobs = new ArrayList<>(); + for (Job j : this.jobs.getAll()) { + producerJobs.add(new ProducerJobInfo(null, j.getId(), j.getType().getId(), j.getCallbackUrl(), j.getOwner(), + j.getLastUpdated())); } + return new ResponseEntity<>(gson.toJson(producerJobs), HttpStatus.OK); } @DeleteMapping(path = JOB_URL + "/{infoJobId}", produces = MediaType.APPLICATION_JSON_VALUE) @@ -96,7 +128,7 @@ public class ProducerCallbacksController { public ResponseEntity jobDeletedCallback( // @PathVariable("infoJobId") String infoJobId) { - logger.info("Job deleted callback {}", infoJobId); + logger.debug("Job deleted callback {}", infoJobId); this.jobs.remove(infoJobId); return new ResponseEntity<>(HttpStatus.OK); } @@ -109,7 +141,7 @@ public class ProducerCallbacksController { content = @Content(schema = @Schema(implementation = String.class))) // }) public ResponseEntity producerSupervision() { - logger.info("Producer supervision"); + logger.debug("Producer supervision"); return new ResponseEntity<>(HttpStatus.OK); }