47da903476f4adfc1adc43a75fb1d5750ac495e6
[dmaap/messagerouter/msgrtr.git] / src / main / java / org / onap / dmaap / dmf / mr / service / impl / ApiKeysServiceImpl.java
1 /*******************************************************************************
2  *  ============LICENSE_START=======================================================
3  *  org.onap.dmaap
4  *  ================================================================================
5  *  Copyright © 2017 AT&T Intellectual Property. 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
10  *        http://www.apache.org/licenses/LICENSE-2.0
11 *  
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *  ============LICENSE_END=========================================================
18  *  
19  *  ECOMP is a trademark and service mark of AT&T Intellectual Property.
20  *  
21  *******************************************************************************/
22 package org.onap.dmaap.dmf.mr.service.impl;
23
24 import java.io.IOException;
25
26 import org.json.JSONArray;
27 import org.json.JSONObject;
28 import org.springframework.stereotype.Service;
29
30 import org.onap.dmaap.dmf.mr.beans.ApiKeyBean;
31 import org.onap.dmaap.dmf.mr.beans.DMaaPContext;
32 import org.onap.dmaap.dmf.mr.constants.CambriaConstants;
33 import org.onap.dmaap.dmf.mr.security.DMaaPAuthenticatorImpl;
34 import org.onap.dmaap.dmf.mr.service.ApiKeysService;
35 import org.onap.dmaap.dmf.mr.utils.ConfigurationReader;
36 import org.onap.dmaap.dmf.mr.utils.DMaaPResponseBuilder;
37 import org.onap.dmaap.dmf.mr.utils.Emailer;
38 import com.att.eelf.configuration.EELFLogger;
39 import com.att.eelf.configuration.EELFManager;
40 import com.att.nsa.configs.ConfigDbException;
41 import com.att.nsa.drumlin.service.standards.HttpStatusCodes;
42 import com.att.nsa.security.NsaApiKey;
43 import com.att.nsa.security.ReadWriteSecuredResource.AccessDeniedException;
44 import com.att.nsa.security.db.NsaApiDb;
45 import com.att.nsa.security.db.NsaApiDb.KeyExistsException;
46 import com.att.nsa.security.db.simple.NsaSimpleApiKey;
47
48 /**
49  * Implementation of the ApiKeysService, this will provide the below operations,
50  * getAllApiKeys, getApiKey, createApiKey, updateApiKey, deleteApiKey
51  * 
52  * @author nilanjana.maity
53  */
54 @Service
55 public class ApiKeysServiceImpl implements ApiKeysService {
56
57         
58         private static final EELFLogger log = EELFManager.getInstance().getLogger(ApiKeysServiceImpl.class.toString());
59         /**
60          * This method will provide all the ApiKeys present in kafka server.
61          * 
62          * @param dmaapContext
63          * @throws ConfigDbException
64          * @throws IOException
65          */
66         public void getAllApiKeys(DMaaPContext dmaapContext)
67                         throws ConfigDbException, IOException {
68
69                 ConfigurationReader configReader = dmaapContext.getConfigReader();
70
71                 log.info("configReader : " + configReader.toString());
72
73                 final JSONObject result = new JSONObject();
74                 final JSONArray keys = new JSONArray();
75                 result.put("apiKeys", keys);
76
77                 NsaApiDb<NsaSimpleApiKey> apiDb = configReader.getfApiKeyDb();
78
79                 for (String key : apiDb.loadAllKeys()) {
80                         keys.put(key);
81                 }
82                 log.info("========== ApiKeysServiceImpl: getAllApiKeys: Api Keys are : "
83                                 + keys.toString() + "===========");
84                 DMaaPResponseBuilder.respondOk(dmaapContext, result);
85         }
86
87         /**
88          * @param dmaapContext
89          * @param apikey
90          * @throws ConfigDbException
91          * @throws IOException
92          */
93         @Override
94         public void getApiKey(DMaaPContext dmaapContext, String apikey)
95                         throws ConfigDbException, IOException {
96
97                 String errorMsg = "Api key name is not mentioned.";
98                 int errorCode = HttpStatusCodes.k400_badRequest;
99                 
100                 if (null != apikey) {
101                         NsaSimpleApiKey simpleApiKey = getApiKeyDb(dmaapContext)
102                                         .loadApiKey(apikey);
103                         
104                 
105                         if (null != simpleApiKey) {
106                                 JSONObject result = simpleApiKey.asJsonObject();
107                                 DMaaPResponseBuilder.respondOk(dmaapContext, result);
108                                 log.info("========== ApiKeysServiceImpl: getApiKey : "
109                                                 + result.toString() + "===========");
110                                 return;
111                         } else {
112                                 errorMsg = "Api key [" + apikey + "] does not exist.";
113                                 errorCode = HttpStatusCodes.k404_notFound;
114                                 log.info("========== ApiKeysServiceImpl: getApiKey: Error : API Key does not exist. "
115                                                 + "===========");
116                                 DMaaPResponseBuilder.respondWithError(dmaapContext, errorCode,
117                                                 errorMsg);
118                                 throw new IOException();
119                         }
120                 }
121
122         }
123
124         /**
125          * @param dmaapContext
126          * @param nsaApiKey
127          * @throws KeyExistsException
128          * @throws ConfigDbException
129          * @throws IOException
130          */
131         @Override
132         public void createApiKey(DMaaPContext dmaapContext, ApiKeyBean nsaApiKey)
133                         throws KeyExistsException, ConfigDbException, IOException {
134
135                 log.debug("TopicService: : createApiKey....");
136                 
137                         String contactEmail = nsaApiKey.getEmail();
138                         final boolean emailProvided = contactEmail != null && contactEmail.length() > 0 && contactEmail.indexOf("@") > 1 ;
139                          String kSetting_AllowAnonymousKeys= com.att.ajsc.filemonitor.AJSCPropertiesMap.getProperty(CambriaConstants.msgRtr_prop,"apiKeys.allowAnonymous");
140                          if(null==kSetting_AllowAnonymousKeys) kSetting_AllowAnonymousKeys ="false";
141                          
142             
143                          if ( kSetting_AllowAnonymousKeys.equalsIgnoreCase("true")    &&  !emailProvided   )
144               {
145                 DMaaPResponseBuilder.respondWithErrorInJson(dmaapContext, 400, "You must provide an email address.");
146                 return;
147               }
148                 
149                 
150                 final NsaApiDb<NsaSimpleApiKey> apiKeyDb = getApiKeyDb(dmaapContext);
151                 String apiKey = nsaApiKey.getKey();
152                 String sharedSecret = nsaApiKey.getSharedSecret();
153                 final NsaSimpleApiKey key = apiKeyDb.createApiKey(apiKey,
154                                 sharedSecret);
155                 if (null != key) {
156
157                         if (null != nsaApiKey.getEmail()) {
158                                 key.setContactEmail(nsaApiKey.getEmail());
159                         }
160
161                         if (null != nsaApiKey.getDescription()) {
162                                 key.setDescription(nsaApiKey.getDescription());
163                         }
164
165                         log.debug("=======ApiKeysServiceImpl: createApiKey : saving api key : "
166                                         + key.toString() + "=====");
167                         apiKeyDb.saveApiKey(key);
168                         
169                         // email out the secret to validate the email address
170                         if ( emailProvided )
171                         {
172                                 String body = "\n" + "Your email address was provided as the creator of new API key \""
173                                 + apiKey + "\".\n" + "\n" + "If you did not make this request, please let us know."
174                                 + " See http://sa2020.it.att.com:8888 for contact information, " + "but don't worry -"
175                                 + " the API key is useless without the information below, which has been provided "
176                                 + "only to you.\n" + "\n\n" + "For API key \"" + apiKey + "\", use API key secret:\n\n\t"
177                                 + sharedSecret + "\n\n" + "Note that it's normal to share the API key"
178                                 + " (" + apiKey + "). "                         
179                                 + "This is how you are granted access to resources " + "like a UEB topic or Flatiron scope. "
180                                 + "However, you should NOT share the API key's secret. " + "The API key is associated with your"
181                                 + " email alone. ALL access to data made with this " + "key will be your responsibility. If you "
182                                 + "share the secret, someone else can use the API key " + "to access proprietary data with your "
183                                 + "identity.\n" + "\n" + "Enjoy!\n" + "\n" + "The GFP/SA-2020 Team";
184         
185                         Emailer em = dmaapContext.getConfigReader().getSystemEmailer();
186                         em.send(contactEmail, "New API Key", body);
187                         }
188                         log.debug("TopicService: : sending response.");
189         
190                         JSONObject o = key.asJsonObject();
191                         
192                         o.put ( NsaSimpleApiKey.kApiSecretField,
193                                         emailProvided ?
194                                                 "Emailed to " + contactEmail + "." :
195                                                 key.getSecret ()
196                                 );
197                         DMaaPResponseBuilder.respondOk(dmaapContext,
198                                         o);
199                         
200                         return;
201                 } else {
202                         log.debug("=======ApiKeysServiceImpl: createApiKey : Error in creating API Key.=====");
203                         DMaaPResponseBuilder.respondWithError(dmaapContext,
204                                         HttpStatusCodes.k500_internalServerError,
205                                         "Failed to create api key.");
206                         throw new KeyExistsException(apiKey);
207                 }
208         }
209
210         /**
211          * @param dmaapContext
212          * @param apikey
213          * @param nsaApiKey
214          * @throws ConfigDbException
215          * @throws IOException
216          * @throws AccessDeniedException
217          */
218         @Override
219         public void updateApiKey(DMaaPContext dmaapContext, String apikey,
220                         ApiKeyBean nsaApiKey) throws ConfigDbException, IOException, AccessDeniedException {
221
222                 String errorMsg = "Api key name is not mentioned.";
223                 int errorCode = HttpStatusCodes.k400_badRequest;
224
225                 if (null != apikey) {
226                         final NsaApiDb<NsaSimpleApiKey> apiKeyDb = getApiKeyDb(dmaapContext);
227                         final NsaSimpleApiKey key = apiKeyDb.loadApiKey(apikey);
228                         boolean shouldUpdate = false;
229
230                         if (null != key) {
231                                 final NsaApiKey user = DMaaPAuthenticatorImpl
232                                                 .getAuthenticatedUser(dmaapContext);
233
234                                 if (user == null || !user.getKey().equals(key.getKey())) {
235                                         throw new AccessDeniedException("You must authenticate with the key you'd like to update.");
236                                 }
237
238                                 if (null != nsaApiKey.getEmail()) {
239                                         key.setContactEmail(nsaApiKey.getEmail());
240                                         shouldUpdate = true;
241                                 }
242
243                                 if (null != nsaApiKey.getDescription()) {
244                                         key.setDescription(nsaApiKey.getDescription());
245                                         shouldUpdate = true;
246                                 }
247
248                                 if (shouldUpdate) {
249                                         apiKeyDb.saveApiKey(key);
250                                 }
251
252                                 log.info("======ApiKeysServiceImpl : updateApiKey : Key Updated Successfully :"
253                                                 + key.toString() + "=========");
254                                 DMaaPResponseBuilder.respondOk(dmaapContext,
255                                                 key.asJsonObject());
256                                 return;
257                         }
258                 } else {
259                         errorMsg = "Api key [" + apikey + "] does not exist.";
260                         errorCode = HttpStatusCodes.k404_notFound;
261                         DMaaPResponseBuilder.respondWithError(dmaapContext, errorCode,
262                                         errorMsg);
263                         log.info("======ApiKeysServiceImpl : updateApiKey : Error in Updating Key.============");
264                         throw new IOException();
265                 }
266         }
267
268         /**
269          * @param dmaapContext
270          * @param apikey
271          * @throws ConfigDbException
272          * @throws IOException
273          * @throws AccessDeniedException
274          */
275         @Override
276         public void deleteApiKey(DMaaPContext dmaapContext, String apikey)
277                         throws ConfigDbException, IOException, AccessDeniedException {
278
279                 String errorMsg = "Api key name is not mentioned.";
280                 int errorCode = HttpStatusCodes.k400_badRequest;
281
282                 if (null != apikey) {
283                         final NsaApiDb<NsaSimpleApiKey> apiKeyDb = getApiKeyDb(dmaapContext);
284                         final NsaSimpleApiKey key = apiKeyDb.loadApiKey(apikey);
285
286                         if (null != key) {
287
288                                 final NsaApiKey user = DMaaPAuthenticatorImpl
289                                                 .getAuthenticatedUser(dmaapContext);
290                                 if (user == null || !user.getKey().equals(key.getKey())) {
291                                         throw new AccessDeniedException("You don't own the API key.");
292                                 }
293
294                                 apiKeyDb.deleteApiKey(key);
295                                 log.info("======ApiKeysServiceImpl : deleteApiKey : Deleted Key successfully.============");
296                                 DMaaPResponseBuilder.respondOkWithHtml(dmaapContext,
297                                                 "Api key [" + apikey + "] deleted successfully.");
298                                 return;
299                         }
300                 } else {
301                         errorMsg = "Api key [" + apikey + "] does not exist.";
302                         errorCode = HttpStatusCodes.k404_notFound;
303                         DMaaPResponseBuilder.respondWithError(dmaapContext, errorCode,
304                                         errorMsg);
305                         log.info("======ApiKeysServiceImpl : deleteApiKey : Error while deleting key.============");
306                         throw new IOException();
307                 }
308         }
309
310         /**
311          * 
312          * @param dmaapContext
313          * @return
314          */
315         private NsaApiDb<NsaSimpleApiKey> getApiKeyDb(DMaaPContext dmaapContext) {
316                 ConfigurationReader configReader = dmaapContext.getConfigReader();
317                 return configReader.getfApiKeyDb();
318         }
319
320 }