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