Introduce unique value RESTs
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / unique-type-rest / unique-type-rest-services / src / main / java / org / openecomp / sdcrests / uniquevalue / rest / services / UniqueTypesImpl.java
1 /*
2  * Copyright © 2018 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.openecomp.sdcrests.uniquevalue.rest.services;
17
18 import org.openecomp.core.dao.UniqueValueDaoFactory;
19 import org.openecomp.core.util.UniqueValueUtil;
20 import org.openecomp.sdc.common.errors.ErrorCategory;
21 import org.openecomp.sdc.common.errors.ErrorCode;
22 import org.openecomp.sdc.common.errors.ErrorCodeAndMessage;
23 import org.openecomp.sdcrests.uniquevalue.rest.UniqueTypes;
24 import org.openecomp.sdcrests.uniquevalue.types.UniqueTypesProvider;
25 import org.openecomp.sdcrests.wrappers.GenericCollectionWrapper;
26 import org.springframework.context.annotation.Scope;
27 import org.springframework.stereotype.Service;
28
29 import javax.inject.Named;
30 import javax.ws.rs.core.Response;
31 import java.util.ArrayList;
32 import java.util.Collections;
33 import java.util.HashMap;
34 import java.util.Map;
35 import java.util.ServiceLoader;
36
37 import static javax.ws.rs.core.Response.Status.NOT_FOUND;
38
39 @Named
40 @Service("uniqueTypes")
41 @Scope(value = "prototype")
42 public class UniqueTypesImpl implements UniqueTypes {
43
44   private static final String UNIQUE_TYPE_NOT_FOUND_ERR_ID = "UNIQUE_TYPE_NOT_FOUND";
45   private static final String UNIQUE_TYPE_NOT_FOUND_MSG = "%s is not a supported unique type.";
46
47   private static final Map<String, String> UNIQUE_TYPE_TO_INTERNAL;
48
49   static {
50     Map<String, String> uniqueTypes = new HashMap<>();
51     ServiceLoader.load(UniqueTypesProvider.class)
52         .forEach(typesProvider -> uniqueTypes.putAll(typesProvider.listUniqueTypes()));
53     UNIQUE_TYPE_TO_INTERNAL = Collections.unmodifiableMap(uniqueTypes);
54   }
55
56   private final UniqueValueUtil uniqueValueUtil =
57       new UniqueValueUtil(UniqueValueDaoFactory.getInstance().createInterface());
58
59   @Override
60   public Response listUniqueTypes(String user) {
61     return Response.ok(
62         new GenericCollectionWrapper<>(new ArrayList<>(UNIQUE_TYPE_TO_INTERNAL.keySet())))
63         .build();
64   }
65
66   @Override
67   public Response getUniqueValue(String type, String value, String user) {
68     String internalType = UNIQUE_TYPE_TO_INTERNAL.get(type);
69
70     if (internalType == null) {
71       ErrorCode error = new ErrorCode.ErrorCodeBuilder()
72           .withCategory(ErrorCategory.APPLICATION)
73           .withId(UNIQUE_TYPE_NOT_FOUND_ERR_ID)
74           .withMessage(String.format(UNIQUE_TYPE_NOT_FOUND_MSG, type)).build();
75       return Response.status(NOT_FOUND).entity(new ErrorCodeAndMessage(NOT_FOUND, error)).build();
76     }
77
78     return Response.ok(Collections
79         .singletonMap("occupied", uniqueValueUtil.isUniqueValueOccupied(internalType, value)))
80         .build();
81   }
82 }