2 * ========================LICENSE_START=================================
4 * ======================================================================
5 * Copyright (C) 2019-2020 Nordix Foundation. All rights reserved.
6 * ======================================================================
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.oransc.enrichment.controllers.producer;
23 import com.google.gson.Gson;
24 import com.google.gson.GsonBuilder;
26 import io.swagger.annotations.Api;
27 import io.swagger.annotations.ApiOperation;
28 import io.swagger.annotations.ApiResponse;
29 import io.swagger.annotations.ApiResponses;
31 import java.lang.invoke.MethodHandles;
32 import java.util.ArrayList;
33 import java.util.Collection;
34 import java.util.List;
36 import org.oransc.enrichment.clients.ProducerCallbacks;
37 import org.oransc.enrichment.clients.ProducerJobInfo;
38 import org.oransc.enrichment.controllers.ErrorResponse;
39 import org.oransc.enrichment.controllers.producer.ProducerRegistrationInfo.ProducerEiTypeRegistrationInfo;
40 import org.oransc.enrichment.repository.EiJob;
41 import org.oransc.enrichment.repository.EiJobs;
42 import org.oransc.enrichment.repository.EiProducer;
43 import org.oransc.enrichment.repository.EiProducers;
44 import org.oransc.enrichment.repository.EiType;
45 import org.oransc.enrichment.repository.EiTypes;
46 import org.oransc.enrichment.repository.ImmutableEiProducer;
47 import org.slf4j.Logger;
48 import org.slf4j.LoggerFactory;
49 import org.springframework.beans.factory.annotation.Autowired;
50 import org.springframework.http.HttpStatus;
51 import org.springframework.http.MediaType;
52 import org.springframework.http.ResponseEntity;
53 import org.springframework.web.bind.annotation.DeleteMapping;
54 import org.springframework.web.bind.annotation.GetMapping;
55 import org.springframework.web.bind.annotation.PathVariable;
56 import org.springframework.web.bind.annotation.PutMapping;
57 import org.springframework.web.bind.annotation.RequestBody;
58 import org.springframework.web.bind.annotation.RestController;
60 @SuppressWarnings("squid:S2629") // Invoke method(s) only conditionally
61 @RestController("ProducerController")
62 @Api(tags = {ProducerConsts.PRODUCER_API_NAME})
63 public class ProducerController {
65 private final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
67 private static Gson gson = new GsonBuilder() //
72 private EiJobs eiJobs;
75 private EiTypes eiTypes;
78 private EiProducers eiProducers;
81 ProducerCallbacks producerCallbacks;
83 @GetMapping(path = ProducerConsts.API_ROOT + "/eitypes", produces = MediaType.APPLICATION_JSON_VALUE)
84 @ApiOperation(value = "EI type identifiers", notes = "")
89 message = "EI type identifiers",
90 response = String.class,
91 responseContainer = "List"), //
93 public ResponseEntity<Object> getEiTypeIdentifiers( //
95 List<String> result = new ArrayList<>();
96 for (EiType eiType : this.eiTypes.getAllEiTypes()) {
97 result.add(eiType.getId());
100 return new ResponseEntity<>(gson.toJson(result), HttpStatus.OK);
103 @GetMapping(path = ProducerConsts.API_ROOT + "/eitypes/{eiTypeId}", produces = MediaType.APPLICATION_JSON_VALUE)
104 @ApiOperation(value = "Individual EI Type", notes = "")
107 @ApiResponse(code = 200, message = "EI type", response = ProducerEiTypeInfo.class), //
110 message = "Enrichment Information type is not found",
111 response = ErrorResponse.ErrorInfo.class)})
112 public ResponseEntity<Object> getEiType( //
113 @PathVariable("eiTypeId") String eiTypeId) {
115 EiType t = this.eiTypes.getType(eiTypeId);
116 ProducerEiTypeInfo info = toEiTypeInfo(t);
117 return new ResponseEntity<>(gson.toJson(info), HttpStatus.OK);
118 } catch (Exception e) {
119 return ErrorResponse.create(e, HttpStatus.NOT_FOUND);
123 @GetMapping(path = ProducerConsts.API_ROOT + "/eiproducers", produces = MediaType.APPLICATION_JSON_VALUE)
124 @ApiOperation(value = "EI producer identifiers", notes = "")
129 message = "EI producer identifiers",
130 response = String.class,
131 responseContainer = "List"), //
133 public ResponseEntity<Object> getEiProducerIdentifiers( //
135 List<String> result = new ArrayList<>();
136 for (EiProducer eiProducer : this.eiProducers.getAllProducers()) {
137 result.add(eiProducer.id());
140 return new ResponseEntity<>(gson.toJson(result), HttpStatus.OK);
144 path = ProducerConsts.API_ROOT + "/eiproducers/{eiProducerId}",
145 produces = MediaType.APPLICATION_JSON_VALUE)
146 @ApiOperation(value = "Individual EI producer", notes = "")
149 @ApiResponse(code = 200, message = "EI Jobs", response = ProducerRegistrationInfo.class), //
152 message = "Enrichment Information producer is not found",
153 response = ErrorResponse.ErrorInfo.class)})
154 public ResponseEntity<Object> getEiProducer( //
155 @PathVariable("eiProducerId") String eiProducerId) {
157 EiProducer p = this.eiProducers.getProducer(eiProducerId);
158 ProducerRegistrationInfo info = toEiProducerRegistrationInfo(p);
159 return new ResponseEntity<>(gson.toJson(info), HttpStatus.OK);
160 } catch (Exception e) {
161 return ErrorResponse.create(e, HttpStatus.NOT_FOUND);
166 path = ProducerConsts.API_ROOT + "/eiproducers/{eiProducerId}/eijobs",
167 produces = MediaType.APPLICATION_JSON_VALUE)
168 @ApiOperation(value = "EI job definitions", notes = "EI job definitions for one EI producer")
171 @ApiResponse(code = 200, message = "EI jobs", response = ProducerJobInfo.class, responseContainer = "List"), //
174 message = "Enrichment Information producer is not found",
175 response = ErrorResponse.ErrorInfo.class)})
176 public ResponseEntity<Object> getEiProducerJobs( //
177 @PathVariable("eiProducerId") String eiProducerId) {
179 EiProducer producer = this.eiProducers.getProducer(eiProducerId);
180 Collection<ProducerJobInfo> producerJobs = new ArrayList<>();
181 for (EiType type : producer.eiTypes()) {
182 for (EiJob eiJob : this.eiJobs.getJobsForType(type)) {
183 ProducerJobInfo request = new ProducerJobInfo(eiJob.jobData(), eiJob, eiJob.type());
184 producerJobs.add(request);
188 return new ResponseEntity<>(gson.toJson(producerJobs), HttpStatus.OK);
189 } catch (Exception e) {
190 return ErrorResponse.create(e, HttpStatus.NOT_FOUND);
195 path = ProducerConsts.API_ROOT + "/eiproducers/{eiProducerId}",
196 produces = MediaType.APPLICATION_JSON_VALUE)
197 @ApiOperation(value = "Individual EI producer", notes = "")
200 @ApiResponse(code = 201, message = "Producer created", response = void.class), //
201 @ApiResponse(code = 200, message = "Producer updated", response = void.class)}//
203 public ResponseEntity<Object> putEiProducer( //
204 @PathVariable("eiProducerId") String eiProducerId, //
205 @RequestBody ProducerRegistrationInfo registrationInfo) {
207 final EiProducer previousDefinition = this.eiProducers.get(eiProducerId);
208 if (previousDefinition != null) {
209 deregisterProducer(previousDefinition, false);
212 registerProducer(eiProducerId, registrationInfo);
214 return new ResponseEntity<>(previousDefinition == null ? HttpStatus.CREATED : HttpStatus.OK);
215 } catch (Exception e) {
216 return ErrorResponse.create(e, HttpStatus.NOT_FOUND);
221 path = ProducerConsts.API_ROOT + "/eiproducers/{eiProducerId}",
222 produces = MediaType.APPLICATION_JSON_VALUE)
223 @ApiOperation(value = "Individual EI producer", notes = "")
226 @ApiResponse(code = 200, message = "Not used", response = void.class),
227 @ApiResponse(code = 204, message = "Producer deleted", response = void.class),
228 @ApiResponse(code = 404, message = "Producer is not found", response = ErrorResponse.ErrorInfo.class)})
229 public ResponseEntity<Object> deleteEiProducer(@PathVariable("eiProducerId") String eiProducerId) {
231 final EiProducer producer = this.eiProducers.getProducer(eiProducerId);
232 deregisterProducer(producer, true);
233 return new ResponseEntity<>(HttpStatus.NO_CONTENT);
234 } catch (Exception e) {
235 return ErrorResponse.create(e, HttpStatus.NOT_FOUND);
239 private EiType registerType(ProducerEiTypeRegistrationInfo typeInfo) {
240 EiType type = this.eiTypes.get(typeInfo.eiTypeId);
242 type = new EiType(typeInfo.eiTypeId, typeInfo.jobDataSchema);
243 this.eiTypes.put(type);
249 EiProducer createProducer(Collection<EiType> types, String producerId, ProducerRegistrationInfo registrationInfo) {
250 return ImmutableEiProducer.builder() //
253 .jobCreationCallbackUrl(registrationInfo.jobCreationCallbackUrl) //
254 .jobDeletionCallbackUrl(registrationInfo.jobDeletionCallbackUrl) //
258 private void registerProducer(String producerId, ProducerRegistrationInfo registrationInfo) {
259 ArrayList<EiType> types = new ArrayList<>();
260 for (ProducerEiTypeRegistrationInfo typeInfo : registrationInfo.types) {
261 types.add(registerType(typeInfo));
263 EiProducer producer = createProducer(types, producerId, registrationInfo);
264 this.eiProducers.put(producer);
266 for (EiType type : types) {
267 for (EiJob job : this.eiJobs.getJobsForType(type)) {
268 this.producerCallbacks.notifyProducerJobStarted(producer, job);
270 type.addProducer(producer);
274 private void deregisterProducer(EiProducer producer, boolean deleteJobs) {
275 this.eiProducers.remove(producer);
276 for (EiType type : producer.eiTypes()) {
277 boolean removed = type.removeProducer(producer) != null;
279 this.logger.error("Bug, no producer found");
281 if (type.getProducerIds().isEmpty() && deleteJobs) {
282 this.eiTypes.remove(type);
283 for (EiJob job : this.eiJobs.getJobsForType(type.getId())) {
284 this.eiJobs.remove(job);
285 this.logger.warn("Deleted job {} because no producers left", job.id());
291 ProducerRegistrationInfo toEiProducerRegistrationInfo(EiProducer p) {
292 Collection<ProducerEiTypeRegistrationInfo> types = new ArrayList<>();
293 for (EiType type : p.eiTypes()) {
294 types.add(toEiTypeRegistrationInfo(type));
296 return new ProducerRegistrationInfo(types, p.jobCreationCallbackUrl(), p.jobDeletionCallbackUrl());
299 private ProducerEiTypeRegistrationInfo toEiTypeRegistrationInfo(EiType type) {
300 return new ProducerEiTypeRegistrationInfo(type.getJobDataSchema(), type.getId());
303 private ProducerEiTypeInfo toEiTypeInfo(EiType t) {
304 return new ProducerEiTypeInfo(t.getJobDataSchema(), t.getProducerIds());