Add Initial Code Import
[dmaap/messagerouter/msgrtr.git] / src / main / java / com / att / nsa / cambria / security / DMaaPAAFAuthenticatorImpl.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 com.att.nsa.cambria.security;
23
24 import java.util.Date;
25
26 import javax.servlet.http.HttpServletRequest;
27
28 import org.apache.http.HttpStatus;
29
30 import com.att.nsa.cambria.CambriaApiException;
31 import com.att.nsa.cambria.constants.CambriaConstants;
32 import com.att.nsa.cambria.exception.DMaaPResponseCode;
33 import com.att.nsa.cambria.exception.ErrorResponse;
34 import com.att.nsa.cambria.utils.Utils;
35
36
37 /**
38  * 
39  * @author author
40  *
41  */
42 public class DMaaPAAFAuthenticatorImpl implements DMaaPAAFAuthenticator {
43
44         /**
45          * @param req
46          * @param role
47          */
48         @Override
49         public boolean aafAuthentication(HttpServletRequest req, String role) {
50                 boolean auth = false;
51                 if(req.isUserInRole(role))
52                 {
53                         
54                         auth = true;
55                 }
56                 return auth;
57         }
58
59         @Override
60         public String aafPermissionString(String topicName, String action) throws CambriaApiException {
61                 
62                 
63                 String permission = "";
64                 String nameSpace ="";
65                 if(topicName.contains(".") && (topicName.contains("com.att")||topicName.contains("org"))) {
66                         //String topic = topicName.substring(topicName.lastIndexOf(".")+1);
67                         nameSpace = topicName.substring(0,topicName.lastIndexOf("."));
68                 }
69                 else {
70                         nameSpace = null;
71                          nameSpace= com.att.ajsc.filemonitor.AJSCPropertiesMap.getProperty(CambriaConstants.msgRtr_prop,"defaultNSforUEB");
72                         
73                         if(null==nameSpace)nameSpace="com.att.dmaap.mr.ueb";
74                         
75                         
76                         /*ErrorResponse errRes = new ErrorResponse(HttpStatus.SC_FORBIDDEN,
77                                         DMaaPResponseCode.TOPIC_NOT_IN_AAF.getResponseCode(), "Topic does not exist in AAF"
78                                                         , null, Utils.getFormattedDate(new Date()), topicName,
79                                         null, null, null, null);
80                                         
81                         throw new CambriaApiException(errRes);*/
82                 }
83                 
84                 permission = nameSpace+".mr.topic|:topic."+topicName+"|"+action;
85                 return permission;
86                 
87         }
88         
89         
90
91 }