2 * ========================LICENSE_START=================================
5 * Copyright (C) 2021 Nordix Foundation
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ========================LICENSE_END===================================
21 package org.oran.dmaapadapter;
23 import com.google.gson.Gson;
24 import com.google.gson.GsonBuilder;
26 import io.swagger.v3.oas.annotations.tags.Tag;
28 import java.lang.invoke.MethodHandles;
29 import java.util.HashMap;
32 import org.oran.dmaapadapter.clients.AsyncRestClient;
33 import org.oran.dmaapadapter.r1.ConsumerJobInfo;
34 import org.oran.dmaapadapter.r1.ProducerInfoTypeInfo;
35 import org.oran.dmaapadapter.r1.ProducerJobInfo;
36 import org.oran.dmaapadapter.r1.ProducerRegistrationInfo;
37 import org.slf4j.Logger;
38 import org.slf4j.LoggerFactory;
39 import org.springframework.http.HttpStatus;
40 import org.springframework.http.MediaType;
41 import org.springframework.http.ResponseEntity;
42 import org.springframework.web.bind.annotation.GetMapping;
43 import org.springframework.web.bind.annotation.PathVariable;
44 import org.springframework.web.bind.annotation.PutMapping;
45 import org.springframework.web.bind.annotation.RequestBody;
46 import org.springframework.web.bind.annotation.RestController;
48 @RestController("EcsSimulatorController")
49 @Tag(name = "EcsSimulator")
50 public class EcsSimulatorController {
52 private final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
53 private final static Gson gson = new GsonBuilder().create();
55 public static class TestResults {
57 ProducerRegistrationInfo registrationInfo;
58 Map<String, ProducerInfoTypeInfo> types = new HashMap<>();
60 public TestResults() {}
63 registrationInfo = null;
68 final TestResults testResults = new TestResults();
69 public static final String API_ROOT = "/data-producer/v1";
71 @GetMapping(path = API_ROOT + "/info-producers/{infoProducerId}", produces = MediaType.APPLICATION_JSON_VALUE)
72 public ResponseEntity<Object> getInfoProducer( //
73 @PathVariable("infoProducerId") String infoProducerId) {
75 if (testResults.registrationInfo != null) {
76 return new ResponseEntity<>(gson.toJson(testResults.registrationInfo), HttpStatus.OK);
78 return new ResponseEntity<>(HttpStatus.NOT_FOUND);
83 @PutMapping(path = API_ROOT + "/info-producers/{infoProducerId}", //
84 produces = MediaType.APPLICATION_JSON_VALUE)
85 public ResponseEntity<Object> putInfoProducer( //
86 @PathVariable("infoProducerId") String infoProducerId, //
87 @RequestBody ProducerRegistrationInfo registrationInfo) {
88 testResults.registrationInfo = registrationInfo;
89 return new ResponseEntity<>(HttpStatus.OK);
92 @PutMapping(path = API_ROOT + "/info-types/{infoTypeId}", produces = MediaType.APPLICATION_JSON_VALUE)
93 public ResponseEntity<Object> putInfoType( //
94 @PathVariable("infoTypeId") String infoTypeId, //
95 @RequestBody ProducerInfoTypeInfo registrationInfo) {
96 testResults.types.put(infoTypeId, registrationInfo);
97 return new ResponseEntity<>(HttpStatus.OK);
100 public void addJob(ConsumerJobInfo job, String jobId, AsyncRestClient restClient) {
101 String url = this.testResults.registrationInfo.jobCallbackUrl;
102 ProducerJobInfo request =
103 new ProducerJobInfo(job.jobDefinition, jobId, job.infoTypeId, job.jobResultUri, job.owner, "TIMESTAMP");
104 String body = gson.toJson(request);
105 logger.info("ECS Simulator PUT job: {}", body);
106 restClient.post(url, body).block();
109 public void deleteJob(String jobId, AsyncRestClient restClient) {
110 String url = this.testResults.registrationInfo.jobCallbackUrl + "/" + jobId;
111 logger.info("ECS Simulator DELETE job: {}", url);
112 restClient.delete(url).block();