[POLICY-73] replace openecomp for policy-engine
[policy/engine.git] / ONAP-PAP-REST / src / main / java / org / onap / policy / pap / xacml / restAuth / AuthenticationService.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-PAP-REST
4  * ================================================================================
5  * Copyright (C) 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  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.pap.xacml.restAuth;
22
23 import java.util.Base64;
24 import java.util.StringTokenizer;
25
26 import org.onap.policy.common.logging.eelf.MessageCodes;
27 import org.onap.policy.common.logging.eelf.PolicyLogger;
28 import org.onap.policy.rest.XACMLRestProperties;
29
30 import com.att.research.xacml.util.XACMLProperties;
31
32 public class AuthenticationService {
33         private String papID = XACMLProperties.getProperty(XACMLRestProperties.PROP_PAP_USERID);
34         private String papPass = XACMLProperties.getProperty(XACMLRestProperties.PROP_PAP_PASS);
35         
36         public boolean authenticate(String authCredentials) {
37
38                 if (null == authCredentials)
39                         return false;
40                 // header value format will be "Basic encodedstring" for Basic authentication. 
41                 final String encodedUserPassword = authCredentials.replaceFirst("Basic" + " ", "");
42                 String usernameAndPassword = null;
43                 try {
44                         byte[] decodedBytes = Base64.getDecoder().decode(encodedUserPassword);
45                         usernameAndPassword = new String(decodedBytes, "UTF-8");
46                 } catch (Exception e) {
47                         PolicyLogger.error(MessageCodes.ERROR_SYSTEM_ERROR, e, "AuthenticationService", "Exception decoding username and password");
48                         return false;
49                 }
50                 try {
51                         final StringTokenizer tokenizer = new StringTokenizer(usernameAndPassword, ":");
52                         final String username = tokenizer.nextToken();
53                         final String password = tokenizer.nextToken();
54
55                         boolean authenticationStatus = papID.equals(username)   && papPass.equals(password);
56                         return authenticationStatus;
57                 } catch (Exception e){
58                         PolicyLogger.error(MessageCodes.ERROR_SYSTEM_ERROR, e, "AuthenticationService", "Exception authenticating user");
59                         return false;
60                 }
61         }
62         
63 }