aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/music/main/CachingUtil.java
blob: 2c46efbcca538ced628f0f83ea1b9af750460666 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
/*
 * ============LICENSE_START==========================================
 * org.onap.music
 * ===================================================================
 *  Copyright (c) 2017 AT&T Intellectual Property
 * ===================================================================
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 * 
 *     http://www.apache.org/licenses/LICENSE-2.0
 * 
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 * 
 * ============LICENSE_END=============================================
 * ====================================================================
 */
package org.onap.music.main;

import java.util.Arrays;
import java.util.Calendar;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.UUID;
import javax.ws.rs.core.HttpHeaders;
import javax.ws.rs.core.MediaType;
import org.apache.commons.codec.binary.Base64;
import org.apache.commons.jcs.JCS;
import org.apache.commons.jcs.access.CacheAccess;
import org.codehaus.jackson.map.ObjectMapper;
import org.onap.music.datastore.PreparedQueryObject;
import org.onap.music.datastore.jsonobjects.AAFResponse;
import org.onap.music.eelf.logging.EELFLoggerDelegate;
import org.onap.music.eelf.logging.format.AppMessages;
import org.onap.music.eelf.logging.format.ErrorSeverity;
import org.onap.music.eelf.logging.format.ErrorTypes;
import org.onap.music.exceptions.MusicServiceException;

import com.att.eelf.configuration.EELFLogger;
import com.datastax.driver.core.DataType;
import com.datastax.driver.core.ResultSet;
import com.datastax.driver.core.Row;
import com.sun.jersey.api.client.Client;
import com.sun.jersey.api.client.ClientResponse;
import com.sun.jersey.api.client.WebResource;

/**
 * All Caching related logic is handled by this class and a schedule cron runs to update cache.
 * 
 * @author Vikram
 *
 */
public class CachingUtil implements Runnable {

    private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(CachingUtil.class);

    private static CacheAccess<String, String> musicCache = JCS.getInstance("musicCache");
    private static CacheAccess<String, Map<String, String>> aafCache = JCS.getInstance("aafCache");
    private static CacheAccess<String, String> appNameCache = JCS.getInstance("appNameCache");
    private static Map<String, Number> userAttempts = new HashMap<>();
    private static Map<String, Calendar> lastFailedTime = new HashMap<>();

    public boolean isCacheRefreshNeeded() {
        if (aafCache.get("initBlankMap") == null)
            return true;
        return false;
    }

    public void initializeMusicCache() {
        logger.info(EELFLoggerDelegate.applicationLogger,"Initializing Music Cache...");
        musicCache.put("isInitialized", "true");
    }

    public void initializeAafCache() throws MusicServiceException {
        logger.info(EELFLoggerDelegate.applicationLogger,"Resetting and initializing AAF Cache...");

        String query = "SELECT uuid, application_name, keyspace_name, username, password FROM admin.keyspace_master WHERE is_api = ? allow filtering";
        PreparedQueryObject pQuery = new PreparedQueryObject();
        pQuery.appendQueryString(query);
        try {
            pQuery.addValue(MusicUtil.convertToActualDataType(DataType.cboolean(), false));
        } catch (Exception e1) {
            logger.error(EELFLoggerDelegate.errorLogger, e1.getMessage(),AppMessages.CACHEERROR, ErrorSeverity.CRITICAL, ErrorTypes.GENERALSERVICEERROR);
            e1.printStackTrace();
        }
        ResultSet rs = MusicCore.get(pQuery);
        Iterator<Row> it = rs.iterator();
        Map<String, String> map = null;
        while (it.hasNext()) {
            Row row = it.next();
            String nameSpace = row.getString("keyspace_name");
            String userId = row.getString("username");
            String password = row.getString("password");
            String keySpace = row.getString("application_name");
            try {
                userAttempts.put(nameSpace, 0);
                AAFResponse responseObj = triggerAAF(nameSpace, userId, password);
                if (responseObj.getNs().size() > 0) {
                    map = new HashMap<>();
                    map.put(userId, password);
                    aafCache.put(nameSpace, map);
                    musicCache.put(nameSpace, keySpace);
                    logger.debug("Cronjob: Cache Updated with AAF response for namespace "
                                    + nameSpace);
                }
            } catch (Exception e) {
                logger.error(EELFLoggerDelegate.errorLogger, e.getMessage(),AppMessages.UNKNOWNERROR, ErrorSeverity.INFO, ErrorTypes.GENERALSERVICEERROR);
                logger.error(EELFLoggerDelegate.errorLogger, e.getMessage(),"Something at AAF was changed for ns: " + nameSpace+" So not updating Cache for the namespace. ");
                e.printStackTrace();
            }
        }

    }

    @Override
    public void run() {
    	logger.info(EELFLoggerDelegate.applicationLogger,"Scheduled task invoked. Refreshing Cache...");
        try {
			initializeAafCache();
		} catch (MusicServiceException e) {
			logger.error(EELFLoggerDelegate.errorLogger, e.getMessage(),AppMessages.UNKNOWNERROR, ErrorSeverity.INFO, ErrorTypes.GENERALSERVICEERROR);
		}
    }

    public static boolean authenticateAAFUser(String nameSpace, String userId, String password,
                    String keySpace) throws Exception {

        if (aafCache.get(nameSpace) != null) {
            if (keySpace != null && !musicCache.get(nameSpace).equals(keySpace)) {
            	logger.info(EELFLoggerDelegate.applicationLogger,"Create new application for the same namespace.");
            } else if (aafCache.get(nameSpace).get(userId).equals(password)) {
            	logger.info(EELFLoggerDelegate.applicationLogger,"Authenticated with cache value..");
                // reset invalid attempts to 0
                userAttempts.put(nameSpace, 0);
                return true;
            } else {
                // call AAF update cache with new password
                if (userAttempts.get(nameSpace) == null)
                    userAttempts.put(nameSpace, 0);
                if ((Integer) userAttempts.get(nameSpace) >= 3) {
                    logger.info(EELFLoggerDelegate.applicationLogger,"Reached max attempts. Checking if time out..");
                    logger.info(EELFLoggerDelegate.applicationLogger,"Failed time: "+lastFailedTime.get(nameSpace).getTime());
                    Calendar calendar = Calendar.getInstance();
                    long delayTime = (calendar.getTimeInMillis()-lastFailedTime.get(nameSpace).getTimeInMillis());
                    logger.info(EELFLoggerDelegate.applicationLogger,"Delayed time: "+delayTime);
                    if( delayTime > 120000) {
                        logger.info(EELFLoggerDelegate.applicationLogger,"Resetting failed attempt.");
                        userAttempts.put(nameSpace, 0);
                    } else {
                    	logger.info(EELFLoggerDelegate.applicationLogger,"No more attempts allowed. Please wait for atleast 2 min.");
                        throw new Exception("No more attempts allowed. Please wait for atleast 2 min.");
                    }
                }
                logger.error(EELFLoggerDelegate.errorLogger,"",AppMessages.CACHEAUTHENTICATION,ErrorSeverity.WARN, ErrorTypes.GENERALSERVICEERROR);
                logger.info(EELFLoggerDelegate.applicationLogger,"Check AAF again...");
            }
        }

        AAFResponse responseObj = triggerAAF(nameSpace, userId, password);
        if (responseObj.getNs().size() > 0) {
            if (responseObj.getNs().get(0).getAdmin().contains(userId)) {
            	//Map<String, String> map = new HashMap<>();
                //map.put(userId, password);
                //aafCache.put(nameSpace, map);
            	return true;
            }
        }
        logger.info(EELFLoggerDelegate.applicationLogger,"Invalid user. Cache not updated");
        return false;
    }

    private static AAFResponse triggerAAF(String nameSpace, String userId, String password)
                    throws Exception {
        if (MusicUtil.getAafEndpointUrl() == null) {
        	logger.error(EELFLoggerDelegate.errorLogger,"",AppMessages.UNKNOWNERROR,ErrorSeverity.WARN, ErrorTypes.GENERALSERVICEERROR);
            throw new Exception("AAF endpoint is not set. Please specify in the properties file.");
        }
        Client client = Client.create();
        // WebResource webResource =
        // client.resource("https://aaftest.test.att.com:8095/proxy/authz/nss/"+nameSpace);
        WebResource webResource = client.resource(MusicUtil.getAafEndpointUrl().concat(nameSpace));
        String plainCreds = userId + ":" + password;
        byte[] plainCredsBytes = plainCreds.getBytes();
        byte[] base64CredsBytes = Base64.encodeBase64(plainCredsBytes);
        String base64Creds = new String(base64CredsBytes);

        ClientResponse response = webResource.accept(MediaType.APPLICATION_JSON)
                        .header("Authorization", "Basic " + base64Creds)
                        .header("content-type", "application/json").get(ClientResponse.class);
        if (response.getStatus() != 200) {
            if (userAttempts.get(nameSpace) == null)
                userAttempts.put(nameSpace, 0);
            if ((Integer) userAttempts.get(nameSpace) >= 2) {
                lastFailedTime.put(nameSpace, Calendar.getInstance());
                userAttempts.put(nameSpace, ((Integer) userAttempts.get(nameSpace) + 1));
                throw new Exception(
                                "Reached max invalid attempts. Please contact admin and retry with valid credentials.");
            }
            userAttempts.put(nameSpace, ((Integer) userAttempts.get(nameSpace) + 1));
            throw new Exception(
                            "Unable to authenticate. Please check the AAF credentials against namespace.");
            // TODO Allow for 2-3 times and forbid any attempt to trigger AAF with invalid values
            // for specific time.
        }
        response.getHeaders().put(HttpHeaders.CONTENT_TYPE,
                        Arrays.asList(MediaType.APPLICATION_JSON));
        // AAFResponse output = response.getEntity(AAFResponse.class);
        response.bufferEntity();
        String x = response.getEntity(String.class);
        AAFResponse responseObj = new ObjectMapper().readValue(x, AAFResponse.class);
        
        return responseObj;
    }

    public static Map<String, Object> authenticateAIDUser(String aid, String keyspace)
                    throws Exception {
        Map<String, Object> resultMap = new HashMap<>();
        String uuid = null;
        /*
         * if(aid == null || aid.length() == 0) { resultMap.put("Exception Message",
         * "AID is missing for the keyspace requested."); //create a new AID ?? } else
         */
        if (musicCache.get(keyspace) == null) {
            PreparedQueryObject pQuery = new PreparedQueryObject();
            pQuery.appendQueryString(
                            "SELECT uuid from admin.keyspace_master where keyspace_name = '"
                                            + keyspace + "' allow filtering");
            Row rs = MusicCore.get(pQuery).one();
            try {
                uuid = rs.getUUID("uuid").toString();
                musicCache.put(keyspace, uuid);
            } catch (Exception e) {
                String msg = e.getMessage();
                logger.error(EELFLoggerDelegate.errorLogger,  e.getMessage(), AppMessages.QUERYERROR,ErrorSeverity.ERROR, ErrorTypes.QUERYERROR);
                resultMap.put("Exception", "Unauthorized operation. Check AID and Keyspace. "
                                + "Exception from MUSIC is: "
                                + (msg == null ? "Keyspace is new so no AID should be passed in Header."
                                                : msg));
                return resultMap;
            }
            if (!musicCache.get(keyspace).toString().equals(aid)) {
                resultMap.put("Exception",
                                "Unauthorized operation. Invalid AID for the keyspace");
                return resultMap;
            }
        } else if (musicCache.get(keyspace) != null
                        && !musicCache.get(keyspace).toString().equals(aid)) {
            resultMap.put("Exception Message",
                            "Unauthorized operation. Invalid AID for the keyspace");
            return resultMap;
        }
        resultMap.put("aid", uuid);
        return resultMap;
    }

    public static void updateMusicCache(String aid, String keyspace) {
    	logger.info(EELFLoggerDelegate.applicationLogger,"Updating musicCache for keyspace " + keyspace + " with aid " + aid);
        musicCache.put(keyspace, aid);
    }

    public static void updateisAAFCache(String namespace, String isAAF) {
        appNameCache.put(namespace, isAAF);
    }

    public static String isAAFApplication(String namespace) throws MusicServiceException {
        String isAAF = appNameCache.get(namespace);
        if (isAAF == null) {
            PreparedQueryObject pQuery = new PreparedQueryObject();
            pQuery.appendQueryString(
                            "SELECT is_aaf from admin.keyspace_master where application_name = '"
                                            + namespace + "' allow filtering");
            Row rs = MusicCore.get(pQuery).one();
            try {
                isAAF = String.valueOf(rs.getBool("is_aaf"));
                if(isAAF != null)
                    appNameCache.put(namespace, isAAF);
            } catch (Exception e) {
            	logger.error(EELFLoggerDelegate.errorLogger,  e.getMessage(), AppMessages.QUERYERROR,ErrorSeverity.ERROR, ErrorTypes.QUERYERROR);
            	e.printStackTrace();
            }
        }
        return isAAF;
    }

    public static String getUuidFromMusicCache(String keyspace) throws MusicServiceException {
        String uuid = musicCache.get(keyspace);
        if (uuid == null) {
            PreparedQueryObject pQuery = new PreparedQueryObject();
            pQuery.appendQueryString(
                            "SELECT uuid from admin.keyspace_master where keyspace_name = '"
                                            + keyspace + "' allow filtering");
            Row rs = MusicCore.get(pQuery).one();
            try {
                uuid = rs.getUUID("uuid").toString();
                musicCache.put(keyspace, uuid);
            } catch (Exception e) {
                logger.error(EELFLoggerDelegate.errorLogger,"Exception occured during uuid retrieval from DB."+e.getMessage());
                e.printStackTrace();
            }
        }
        return uuid;
    }

    public static String getAppName(String keyspace) throws MusicServiceException {
        String appName = null;
        PreparedQueryObject pQuery = new PreparedQueryObject();
        pQuery.appendQueryString(
                        "SELECT application_name from admin.keyspace_master where keyspace_name = '"
                                        + keyspace + "' allow filtering");
        Row rs = MusicCore.get(pQuery).one();
        try {
            appName = rs.getString("application_name");
        } catch (Exception e) {
        	logger.error(EELFLoggerDelegate.errorLogger,  e.getMessage(), AppMessages.QUERYERROR, ErrorSeverity.ERROR, ErrorTypes.QUERYERROR);
            e.printStackTrace();
        }
        return appName;
    }

    public static String generateUUID() {
        String uuid = UUID.randomUUID().toString();
        logger.info(EELFLoggerDelegate.applicationLogger,"New AID generated: "+uuid);
        return uuid;
    }

    public static Map<String, Object> validateRequest(String nameSpace, String userId,
                    String password, String keyspace, String aid, String operation) {
        Map<String, Object> resultMap = new HashMap<>();
        if (!"createKeySpace".equals(operation)) {
            if (nameSpace == null) {
                resultMap.put("Exception", "Application namespace is mandatory.");
            }
        }
        return resultMap;

    }

    public static Map<String, Object> verifyOnboarding(String ns, String userId, String password) {
        Map<String, Object> resultMap = new HashMap<>();
        if (ns == null || userId == null || password == null) {
        	logger.error(EELFLoggerDelegate.errorLogger,"", AppMessages.MISSINGINFO ,ErrorSeverity.WARN, ErrorTypes.AUTHENTICATIONERROR);
        	logger.error(EELFLoggerDelegate.errorLogger,"One or more required headers is missing. userId: "+userId+" :: password: "+password);
            resultMap.put("Exception",
                            "One or more required headers appName(ns), userId, password is missing. Please check.");
            return resultMap;
        }
        PreparedQueryObject queryObject = new PreparedQueryObject();
        queryObject.appendQueryString(
                        "select * from admin.keyspace_master where application_name = ? allow filtering");
        try {
        	queryObject.addValue(MusicUtil.convertToActualDataType(DataType.text(), ns));
        } catch(Exception e) {
        	resultMap.put("Exception",
                    "Unable to process input data. Invalid input data type. Please check ns, userId and password values. "+e.getMessage());
        	return resultMap;
        }
        Row rs = null;
		try {
			rs = MusicCore.get(queryObject).one();
		} catch (MusicServiceException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
			resultMap.put("Exception", "Unable to process operation. Error is "+e.getMessage());
			return resultMap;
		}
        if (rs == null) {
            logger.error(EELFLoggerDelegate.errorLogger,"Application is not onboarded. Please contact admin.");
            resultMap.put("Exception", "Application is not onboarded. Please contact admin.");
        } else {
            if(!(rs.getString("username").equals(userId)) && !(rs.getString("password").equals("password"))) {
                logger.error(EELFLoggerDelegate.errorLogger,"", AppMessages.AUTHENTICATIONERROR, ErrorSeverity.WARN, ErrorTypes.AUTHENTICATIONERROR);
                logger.error(EELFLoggerDelegate.errorLogger,"Namespace, UserId and password doesn't match. namespace: "+ns+" and userId: "+userId);
                resultMap.put("Exception", "Namespace, UserId and password doesn't match. namespace: "+ns+" and userId: "+userId);
                return resultMap;
            }
            boolean is_aaf = rs.getBool("is_aaf");
            String keyspace = rs.getString("keyspace_name");
            if (!is_aaf) {
                if (!keyspace.equals(MusicUtil.DEFAULTKEYSPACENAME)) {
                    logger.error(EELFLoggerDelegate.errorLogger,"", AppMessages.MISSINGINFO ,ErrorSeverity.WARN, ErrorTypes.DATAERROR);
                    logger.error(EELFLoggerDelegate.errorLogger,"Non AAF applications are allowed to have only one keyspace per application.");
                    resultMap.put("Exception",
                                    "Non AAF applications are allowed to have only one keyspace per application.");
                }
            }
        }
        return resultMap;
    }
}