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