summaryrefslogtreecommitdiffstats
path: root/src/main/org/onap/ecomp/usermanagement/EcompUserManagementDao.java
blob: a4d506de4498c2bac3106ed059dc924a3cce6f7f (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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
/*******************************************************************************
 * =============LICENSE_START=========================================================
 *
 * =================================================================================
 * Copyright (c) 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 org.onap.ecomp.usermanagement;

import java.io.PrintWriter;
import java.io.StringWriter;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

import org.onap.ecomp.persistence.APIHDBSource;

import com.att.eelf.configuration.EELFLogger;
import com.att.eelf.configuration.EELFManager;
/*
 * 
 */
public class EcompUserManagementDao {
	final static EELFLogger logger = EELFManager.getInstance().getLogger(EcompUserManagementDao.class);
	private APIHDBSource apihDBSource = null;
	
	public EcompUserManagementDao() {
		apihDBSource = APIHDBSource.getInstance();
	}
	/*
	 * 
	 */
	private void logException(Exception e) {
		StringWriter stack = new StringWriter();
		e.printStackTrace(new PrintWriter(stack));
		logger.info(stack.toString());
	}
	
	private void close(Connection conn, Statement st, ResultSet rs ) {
		apihDBSource.close(conn);
		apihDBSource.close(st);
		apihDBSource.close(rs);
	}
	
	public List<EcompRole> getRoles() {
		logger.info("Received request: getRoles");
		List<EcompRole> roles = null; 
		ResultSet rs = null;
		Statement st = null;
		Connection conn = null;
		String sql = "SELECT role_id, role_name FROM fn_role where active_yn='Y';";
		logger.info(sql);
		try {
			conn = apihDBSource.getConnection();
			st = conn.createStatement();
			rs = st.executeQuery(sql);
			roles = new ArrayList<EcompRole>();
			while (rs.next()) {
				String roleName = rs.getString("role_name");
				Long id = rs.getLong("role_id");
				EcompRole role = new EcompRole();
				role.setId(id);
				role.setName(roleName);
				roles.add(role);
			}
			logger.info("found " + roles.size() + " record(s).");
		}  
		catch (Exception e ) {
			this.logException(e);
		}
		finally {
			this.close(conn, st, rs );
		}
		return roles;
	}
	/*
	 * 
	 */
	public List<EcompRole> getRoles(String userId) {
		logger.info("Received request: getRoles/userId:" + userId);
		List<EcompRole> roles = null; 
		ResultSet rs = null;
		Statement st = null;
		Connection conn = null;
		String sql = "select r.role_id, r.role_name " +
					" from fn_user_role ur, fn_role r, fn_user u " +
					" where u.org_user_id=" + "'" + userId + "'" +
					" and ur.role_id=r.role_id " +
					" and u.user_id = ur.user_id; ";
		logger.info(sql);
		try {
			conn = apihDBSource.getConnection();
			st = conn.createStatement();
			rs = st.executeQuery(sql);
			roles = new ArrayList<EcompRole>();
			while (rs.next()) {
				String roleName = rs.getString("role_name");
				Long id = rs.getLong("role_id");
				EcompRole role = new EcompRole();
				role.setId(id);
				role.setName(roleName);
				roles.add(role);
			}
			logger.info("found " + roles.size() + " record(s).");
		}  
		catch (Exception e ) {
			this.logException(e);
		}
		finally {
			this.close(conn, st, rs );
		}
		return roles;
	}
	/*
	 * 
	 */
	public List<EcompUser> getUsers() {
		logger.info("Received request: getUsers");
		List<EcompUser> ecompUsers = null; 
		ResultSet rs = null;
		Statement st = null;
		Connection conn = null;
		String sql = "SELECT org_id, manager_id, first_name, middle_name, last_name, phone, " +
					" email, hrid, org_user_id, org_code, org_manager_userid, job_title, " +
					" login_id, active_yn FROM fn_user;";
		logger.info(sql);
		try {
			conn = apihDBSource.getConnection();
			st = conn.createStatement();
			rs = st.executeQuery(sql);
			ecompUsers = new ArrayList<EcompUser>();
			while (rs.next()) {
				Long orgId = rs.getLong("org_id");
				String managerId = rs.getString("manager_id");
				String firstName = rs.getString("first_name");;
				String middleInitial = rs.getString("middle_name");
				String lastName = rs.getString("last_name");
				String phone = rs.getString("phone");
				String email = rs.getString("email");
				String hrid = rs.getString("hrid");
				String orgUserId = rs.getString("org_user_id");
				String orgCode = rs.getString("org_code");
				String orgManagerUserId = rs.getString("org_manager_userid");
				String jobTitle = rs.getString("job_title");
				String loginId = rs.getString("login_id");
				boolean active = rs.getBoolean("active_yn");
				
				EcompUser ecompUser = new EcompUser();
				ecompUser.setOrgId(orgId);
				ecompUser.setManagerId(managerId);
				ecompUser.setFirstName(firstName);
				ecompUser.setMiddleInitial(middleInitial);
				ecompUser.setLastName(lastName);
				ecompUser.setPhone(phone);
				ecompUser.setEmail(email);
				ecompUser.setHrid(hrid);
				ecompUser.setOrgUserId(orgUserId);
				ecompUser.setOrgCode(orgCode);
				ecompUser.setOrgManagerUserId(orgManagerUserId);
				ecompUser.setJobTitle(jobTitle);
				ecompUser.setLoginId(loginId);
				ecompUser.setActive(active);
			
				ecompUsers.add(ecompUser);
			}
			logger.info("found " + ecompUsers.size() + " record(s).");
			
			for (EcompUser user : ecompUsers ) {
				String userId = user.getOrgUserId();
				List<EcompRole> roles = getRoles(userId);
				Set<EcompRole> setRoles = new HashSet<EcompRole>(roles);
				user.setRoles(setRoles);
			}	
		}  
		catch (Exception e ) {
			this.logException(e);
		}
		finally {
			this.close(conn, st, rs );
		}
		return ecompUsers;
	}
	/*
	 * 
	 */
	public List<EcompUser> getUser(String uid) {
		logger.info("Received request: getUser:" + uid);
		List<EcompUser> ecompUsers = null; 
		ResultSet rs = null;
		Statement st = null;
		Connection conn = null;
		String sql = "SELECT org_id, manager_id, first_name, " +
					" middle_name, last_name, phone, email, hrid, " +
					" org_user_id, org_code, org_manager_userid, job_title, " +
					" login_id, active_yn " + 
					" FROM fn_user " +
					" where org_user_id = " + "'" + uid + "'";
		logger.info(sql);
		try {
			conn = apihDBSource.getConnection();
			st = conn.createStatement();
			rs = st.executeQuery(sql);
			ecompUsers = new ArrayList<EcompUser>();
			while (rs.next()) {
				Long orgId = rs.getLong("org_id");
				String managerId = rs.getString("manager_id");
				String firstName = rs.getString("first_name");;
				String middleInitial = rs.getString("middle_name");
				String lastName = rs.getString("last_name");
				String phone = rs.getString("phone");
				String email = rs.getString("email");
				String hrid = rs.getString("hrid");
				String orgUserId = rs.getString("org_user_id");
				String orgCode = rs.getString("org_code");
				String orgManagerUserId = rs.getString("org_manager_userid");
				String jobTitle = rs.getString("job_title");
				String loginId = rs.getString("login_id");
				boolean active = rs.getBoolean("active_yn");
				
				EcompUser ecompUser = new EcompUser();
				ecompUser.setOrgId(orgId);
				ecompUser.setManagerId(managerId);
				ecompUser.setFirstName(firstName);
				ecompUser.setMiddleInitial(middleInitial);
				ecompUser.setLastName(lastName);
				ecompUser.setPhone(phone);
				ecompUser.setEmail(email);
				ecompUser.setHrid(hrid);
				ecompUser.setOrgUserId(orgUserId);
				ecompUser.setOrgCode(orgCode);
				ecompUser.setOrgManagerUserId(orgManagerUserId);
				ecompUser.setJobTitle(jobTitle);
				ecompUser.setLoginId(loginId);
				ecompUser.setActive(active);
			
				ecompUsers.add(ecompUser);
			}
			logger.info("found " + ecompUsers.size() + " record(s).");
			
			for (EcompUser user : ecompUsers ) {
				logger.info("+++++");
				String userId = user.getOrgUserId();
				List<EcompRole> roles = getRoles(userId);
				Set<EcompRole> setRoles = new HashSet<EcompRole>(roles);
				user.setRoles(setRoles);
			}	
		}  
		catch (Exception e ) {
			this.logException(e);
		}
		finally {
			this.close(conn, st, rs );
		}
		return ecompUsers;
	}

	/**
	 * 
	 * @param uid
	 * @return
	 */
	public List<EcompRole> getUserRole(String uid ) {
		logger.info("Received request: getUserRole:" + uid);
		return getRoles(uid);
	}
	
	public int adduser(EcompUser[] userInfo) {
		logger.info("Received request: adduser");
		int users = -1;
		/*
		PreparedStatement pst = null;
		Connection conn = null; 
		ResultSet rs = null;
		String sql = "INSERT INTO fn_user (	first_name, " +
										" 	last_name, " +
										" 	phone, " +
										"	email, " +
										" 	hrid, " +
										"	org_user_id, " +
										" 	org_code, " +
										"	login_id, " +
										" 	active_yn, " +
										"	state_cd, " +
										" 	country_cd ) " +
										" 	VALUES " + 
										" 	( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?); "; 
		logger.info(sql);
		try {
			conn = apihDBSource.getConnection();
			conn.setAutoCommit(false);
			pst = conn.prepareStatement(sql,Statement.RETURN_GENERATED_KEYS);

			for (EcompUser ui:userInfo) {	 
				logger.info(ui.toString());
				String orgUserId = ui.getOrgUserId();
				if (orgUserId==null || orgUserId.length()==0) {
					continue;
				}
				LdapUtil ldap= new LdapUtil(orgUserId);
				if (ldap.getAll().equals("")) 
				continue;
				logger.info(ldap.getAll());
			
				String orgId=ldap.getOrgid();
				String managerId=ldap.getMngr();
				String firstName=ldap.getFirstName();
				//String middleInitial=;
				String lastName=ldap.getLastName();
				String phone=ldap.getTeln();
				String email=ldap.getMail();
				String hrid=ldap.getAttuid();
				//String orgUserId=;
				String orgCode=ldap.getBorg();
				String orgManagerUserId=ldap.getManagerId();
				String jobTitle=ldap.getJttl();
				String loginId=ldap.getHndl();
				String state = ldap.getStat();
				String country = ldap.getCountry();
				String active="N";		
				logger.info("User info:" + ui.toString());
			
				pst.setString(1,firstName);
				pst.setString(2,lastName);
				pst.setString(3,phone);
				pst.setString(4,email);
				pst.setString(5,hrid);
				pst.setString(6,orgUserId);
				pst.setString(7,orgCode);
				pst.setString(8,loginId);
				pst.setString(9,active);
				pst.setString(10,state);
				pst.setString(11,country);
				
				pst.executeUpdate();
				rs = pst.getGeneratedKeys();
				int user_id = -1;
	            if(rs != null && rs.next()){
	            	user_id = rs.getInt(1);
	            }

				logger.info("User ID:" + user_id);
				
				Set<EcompRole> roles = ui.getRoles();
				if (roles != null && !roles.isEmpty()) {
					addUserRole(conn, user_id, roles);
				}
				conn.commit();
				users++;
			} // end of for loop
		} catch (Exception e) {
			apihDBSource.rollback(conn);
			this.logException(e);
		}
		finally {
			this.close(conn, pst, rs );
		}
		logger.info("User Added:" + (users + 1));
		*/
		return users+1;
	}
	
	private void addUserRole(Connection conn, int userId, Set<EcompRole> roles) throws Exception {
		logger.info("Received request: addUserRole");
		PreparedStatement pst = null;
		String sql = "INSERT INTO fn_user_role ( user_id, " +
										" 	role_id, " +
										" 	app_id ) " +
										" 	VALUES " + 
										" 	( ?, ?, ? ); "; 
		logger.info(sql);	
		List<EcompRole> roleInfo = getRoles();
		try {
			pst = conn.prepareStatement(sql);
			for (EcompRole er : roles ){
				for (EcompRole ei : roleInfo) {
					if (er.getName().equals(ei.getName())) {
						long roleId = ei.getId();
						pst.setInt(1,userId);
						pst.setLong(2,roleId);
						pst.setInt(3,1);
						pst.executeUpdate();
						logger.info("Added role:" + ei.getName() + " for user_id " + userId);
						break;
					}	
				}
			}			
		} catch ( Exception e) {
			this.logException(e);
			throw e;
		} finally {
			apihDBSource.close(pst);
		}
	}
}