aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/dmaap/dbcapi/authentication/AafLurAndFish.java
blob: 9defe34da128c03008a8cfed255691e925272dca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*-
 * ============LICENSE_START=======================================================
  * org.onap.dmaap
 * ================================================================================
 * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
 * Modifications Copyright (C) 2019 IBM.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */
package org.onap.dmaap.dbcapi.authentication;


import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;

import org.apache.log4j.Logger;
import org.onap.aaf.cadi.CadiException;
import org.onap.aaf.cadi.LocatorException;
import org.onap.aaf.cadi.PropAccess;
import org.onap.aaf.misc.env.APIException;
import org.onap.dmaap.dbcapi.aaf.AafLurService;
import org.onap.dmaap.dbcapi.aaf.DmaapPerm;
import org.onap.dmaap.dbcapi.util.DmaapConfig;


	

public class AafLurAndFish implements ApiAuthorizationCheckInterface {
	private AafLurService svc;
	private static String apiNamespace;
	private static final String ERROR="Error";
	static final Logger logger = Logger.getLogger(AafLurAndFish.class);
	
	AafLurAndFish()  throws AuthenticationErrorException  {
	
		DmaapConfig p = (DmaapConfig)DmaapConfig.getConfig();
		apiNamespace = p.getProperty( "ApiNamespace", "org.onap.dmaap-bc.api");

		String cadiprop = p.getProperty( "cadi.properties", "/opt/app/osaaf/local/org.onap.dmaap-bc.props");
		logger.info( "cadiprops in " + cadiprop );
		Properties props = new Properties();
		try {
			FileInputStream fis = new FileInputStream( cadiprop );
			try {
				props.load( fis );
			} finally {
				fis.close();
			}
		} catch ( IOException e ) {
			logger.error( "Unable to load " + cadiprop );
			logger.error(ERROR, e);
			throw new AuthenticationErrorException( );
		}
		try {
			PropAccess myAccess = new PropAccess( props );
		
			svc =  AafLurService.getInstance(myAccess);
		} catch (APIException | CadiException | LocatorException e ) {
			logger.error(ERROR, e);
			logger.error( e.toString() );
			throw new AuthenticationErrorException();
		}
	
	}
	
	public void check( String mechid, String pwd, DmaapPerm p ) throws AuthenticationErrorException {
	
		try {
			boolean resp = svc.checkPerm( apiNamespace, mechid, pwd, p );
			boolean flag = false;
			if ( resp == flag ) {
				throw new AuthenticationErrorException();
			}
		} catch ( IOException | CadiException  e ) { 
			logger.error(ERROR, e);
			logger.error( e.toString() );
			throw new AuthenticationErrorException();
		}
		
	}
	
	 public static void main(String[] args) throws Exception {
	        AafLurAndFish alaf = new AafLurAndFish();
	        DmaapPerm p = new DmaapPerm( "org.onap.dmaap-bc.api.dmaap", "boot", "GET");
	        
	        try {
	        	alaf.check("mmanager@people.osaaf.org", "demo123456!", p);
	        } catch (AuthenticationErrorException aee ) {
	        	logger.error(aee);
	        	logger.error( "Check failed for: " + p.toJSON());
	        	System.exit(-1);
	        }
	        logger.info("Check succeeded for: " + p.toJSON());
	    }
}