Add Create loop dialog
[clamp.git] / src / main / java / org / onap / clamp / clds / config / CldsUserJsonDecoder.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights
6  *                             reserved.
7  * ================================================================================
8  * Modifications Copyright (c) 2019 Samsung
9  * ================================================================================
10  * Licensed under the Apache License, Version 2.0 (the "License");
11  * you may not use this file except in compliance with the License.
12  * You may obtain a copy of the License at
13  *
14  * http://www.apache.org/licenses/LICENSE-2.0
15  *
16  * Unless required by applicable law or agreed to in writing, software
17  * distributed under the License is distributed on an "AS IS" BASIS,
18  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  * See the License for the specific language governing permissions and
20  * limitations under the License.
21  * ============LICENSE_END============================================
22  * ===================================================================
23  *
24  */
25
26 package org.onap.clamp.clds.config;
27
28 import com.google.gson.JsonParseException;
29 import java.io.IOException;
30 import java.io.InputStream;
31 import java.nio.charset.StandardCharsets;
32 import org.apache.commons.io.IOUtils;
33 import org.onap.clamp.authorization.CldsUser;
34 import org.onap.clamp.clds.exception.CldsUsersException;
35 import org.onap.clamp.clds.util.JsonUtils;
36
37 public class CldsUserJsonDecoder {
38
39     private CldsUserJsonDecoder() {
40     }
41
42     /**
43      * This method decodes the JSON file provided to a CldsUser Array. The stream is
44      * closed after this call, this is not possible to reuse it.
45      *
46      * @param cldsUsersFile
47      *        The inputStream containing the users json file
48      * @return CldsUser[] Array containing a list of the user defined in the JSON
49      *         file
50      */
51     public static CldsUser[] decodeJson(InputStream cldsUsersFile) {
52         try {
53             return decodeJson(IOUtils.toString(cldsUsersFile, StandardCharsets.UTF_8.name()));
54         } catch (IOException e) {
55             throw new CldsUsersException("Exception occurred during the decoding of the clds-users.json", e);
56         }
57     }
58
59     /**
60      * This method decodes the JSON string to a CldsUser Array.
61      *
62      * @param cldsUsersString JSON string
63      * @return CldsUser[] Array containing a list of the user defined in the JSON
64      */
65     public static CldsUser[] decodeJson(String cldsUsersString) {
66         try {
67             // the ObjectMapper readValue method closes the stream no need to do
68             // it
69             return JsonUtils.GSON.fromJson(cldsUsersString, CldsUser[].class);
70         } catch (JsonParseException e) {
71             throw new CldsUsersException("Exception occurred during the decoding of the clds-users.json", e);
72         }
73     }
74 }