8f9b03d46786ef24aeb270389009a665f0c3ce12
[aai/aai-common.git] / aai-auth / src / main / java / org / onap / aaiauth / auth / Auth.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *    http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.aaiauth.auth;
22
23 import org.apache.http.cookie.Cookie;
24
25 public class Auth {
26
27     private AuthCore authCore;
28
29     public Auth(String filename) throws Exception {
30         this.authCore = new AuthCore(filename);
31     }
32
33     public boolean authBasic(String username, String authFunction) throws Exception {
34         return authCore.authorize(username, authFunction);
35     }
36
37     public boolean authCookie(Cookie cookie, String authFunction, StringBuilder username) throws Exception {
38         return cookie != null && authCore.authorize(username.toString(), authFunction);
39     }
40
41     /**
42      *  Returns true if the user is allowed to access a function.
43      * @param authUser
44      *        - String value of the user.
45      * @param authAction
46      *        - String value of the function.
47      */
48     public boolean validateRequest(String authUser, String authAction) throws Exception {
49         return authUser != null && authAction != null && authCore.authorize(authUser, authAction);
50     }
51 }