summaryrefslogtreecommitdiffstats
path: root/authz-defOrg/src/main/java/com/osaaf/defOrg/DefaultOrgIdentity.java
blob: 21ea63e535da9fd16f3ae5add6f833dfe8407c95 (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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/*******************************************************************************
 * ============LICENSE_START====================================================
 * * org.onap.aaf
 * * ===========================================================================
 * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
 * * ===========================================================================
 * * 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====================================================
 * *
 * * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 * *
 ******************************************************************************/
package com.osaaf.defOrg;

import java.io.IOException;
import java.util.List;

import com.att.authz.env.AuthzTrans;
import com.att.authz.local.AbsData.Reuse;
import com.att.authz.org.Organization;
import com.att.authz.org.Organization.Identity;
import com.att.authz.org.OrganizationException;
import com.att.cadi.config.Config;
import com.osaaf.defOrg.Identities.Data;

/**
 * Org Users are essential representations of Identities within the Org.  Since this is a highly individual 
 * thing for most Orgs, i.e. some use LDAP, some need feed, some use something else, this object will allow
 * the Organization to connect to their own Identity systems...
 * 
 *
 */
public class DefaultOrgIdentity implements Identity {
    private final static int TIMEOUT = Integer.parseInt(Config.AAF_CONN_TIMEOUT_DEF);
	
	private DefaultOrg org;
	private Data identity;
	private Identity owner;

	public DefaultOrgIdentity(AuthzTrans trans, String key, DefaultOrg dorg) throws OrganizationException {
		org = dorg;
		identity=null;
		try {
			org.identities.open(trans, TIMEOUT);
			try {
				Reuse r = org.identities.reuse();
				identity = org.identities.find(key, r);
				if(identity==null) {
					identity = Identities.NO_DATA;
				} else {
					if("a".equals(identity.status)) {
						owner = new DefaultOrgIdentity(trans,identity.responsibleTo,org);
					} else {
						owner = null;
					}
				}
			} finally {
				org.identities.close(trans);
			}
		} catch (IOException e) {
			throw new OrganizationException(e);
		}
	}
	
	@Override
	public boolean equals(Object b) {
		if(b instanceof DefaultOrgIdentity) {
			return identity.id.equals(((DefaultOrgIdentity)b).identity.id);
		}
		return false;
	}

	@Override
	public String id() {
		return identity.id;
	}

	@Override
	public String fullID() {
		return identity.id+'@'+org.getDomain();
	}

	@Override
	public String type() {
		switch(identity.status) {
			case "e": return DefaultOrg.Types.Employee.name();
			case "c": return DefaultOrg.Types.Contractor.name();
			case "a": return DefaultOrg.Types.Application.name();
			case "n": return DefaultOrg.Types.NotActive.name();
			default:
				return "Unknown";
		}
	}

	@Override
	public String responsibleTo() {
		return identity.responsibleTo;
	}

	@Override
	public List<String> delegate() {
		//NOTE:  implement Delegate system, if desired
		return DefaultOrg.NULL_DELEGATES;
	}

	@Override
	public String email() {
		return identity.email;
	}

	@Override
	public String fullName() {
		return identity.name;
	}

	@Override
	public boolean isResponsible() {
		return "e".equals(identity.status); // Assume only Employees are responsible for Resources.  
	}

	@Override
	public boolean isFound() {
		return identity!=null;
	}

	@Override
	public Identity owner() throws OrganizationException {
		return owner;
	}

	@Override
	public Organization org() {
		return org;
	}

}