AAI-1523 Batch reformat aai-auth
[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
22 package org.onap.aaiauth.auth;
23
24 import org.apache.http.cookie.Cookie;
25
26 public class Auth {
27
28     private AuthCore authCore;
29
30     public Auth(String filename) throws Exception {
31         this.authCore = new AuthCore(filename);
32     }
33
34     public boolean authBasic(String username, String authFunction) throws Exception {
35         return authCore.authorize(username, authFunction);
36     }
37
38     public boolean authCookie(Cookie cookie, String authFunction, StringBuilder username) throws Exception {
39         return cookie != null && authCore.authorize(username.toString(), authFunction);
40     }
41
42     /**
43      * Returns true if the user is allowed to access a function.
44      * 
45      * @param authUser
46      *        - String value of the user.
47      * @param authAction
48      *        - String value of the function.
49      */
50     public boolean validateRequest(String authUser, String authAction) throws Exception {
51         return authUser != null && authAction != null && authCore.authorize(authUser, authAction);
52     }
53 }