summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-BE-common/src/main/java/org/onap/portalapp/portal/service/ExternalAccessRolesService.java
blob: 53a7a5f5b7ba13afc629ba65e49937ccfea5d6ab (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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
/*-
 * ============LICENSE_START==========================================
 * ONAP Portal
 * ===================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ===================================================================
 *
 * Unless otherwise specified, all software contained herein is licensed
 * under the Apache License, Version 2.0 (the "License");
 * you may not use this software 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.
 *
 * Unless otherwise specified, all documentation contained herein is licensed
 * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
 * you may not use this documentation except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *             https://creativecommons.org/licenses/by/4.0/
 *
 * Unless required by applicable law or agreed to in writing, documentation
 * 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.portalapp.portal.service;

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

import org.hibernate.Session;
import org.json.JSONArray;
import org.onap.portalapp.portal.domain.CentralV2RoleFunction;
import org.onap.portalapp.portal.domain.CentralizedApp;
import org.onap.portalapp.portal.domain.EPApp;
import org.onap.portalapp.portal.domain.EPRole;
import org.onap.portalapp.portal.domain.EPUser;
import org.onap.portalapp.portal.domain.ExternalRoleDetails;
import org.onap.portalapp.portal.ecomp.model.UploadRoleFunctionExtSystem;
import org.onap.portalapp.portal.exceptions.InvalidUserException;
import org.onap.portalapp.portal.exceptions.RoleFunctionException;
import org.onap.portalapp.portal.transport.CentralRole;
import org.onap.portalapp.portal.transport.CentralRoleFunction;
import org.onap.portalapp.portal.transport.CentralUser;
import org.onap.portalapp.portal.transport.CentralV2Role;
import org.onap.portalapp.portal.transport.ExternalRequestFieldsValidator;
import org.onap.portalsdk.core.domain.Role;
import org.onap.portalsdk.core.restful.domain.EcompRole;
import org.onap.portalsdk.core.restful.domain.EcompUser;
import org.springframework.http.HttpEntity;
import org.springframework.http.ResponseEntity;
import org.springframework.web.client.HttpClientErrorException;

import com.fasterxml.jackson.core.JsonParseException;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.ObjectMapper;

public interface ExternalAccessRolesService {
	
	/**
	 * It gets list of application roles 
	 * 
	 * @param appId
	 * @return List
	 * @throws Exception 
	 */
	public List<EPRole> getAppRoles(Long appId) throws Exception;
	
	/**
	 * It returns single app record
	 * 
	 * @param uebkey
	 * @return List
	 * @throws Exception 
	 */		
	public List<EPApp> getApp(String uebkey) throws Exception;
	
	/**
	 * Adds role in the external access system if fails throws exception
	 * 
	 * @param addRoles
	 * @param uebkey
	 * @return boolean
	 * @throws Exception
	 */
	public boolean addRole(Role addRoles, String uebkey) throws Exception;

	/**
	 * It returns complete user information
	 * 
	 * @param loginId
	 * @return EPUser object
	 * @throws Exception
	 */
	List<EPUser> getUser(String loginId) throws InvalidUserException;
	
	/**
	 * It returns complete user information including application roles permissions
	 * 
	 * @param loginId
	 * @param uebkey
	 * @return String
	 * @throws Exception
	 */
	String getV2UserWithRoles(String loginId, String uebkey) throws Exception;

	/**
	 * It returns list of all role functions
	 * @param string 
	 * @return List
	 * @throws Exception 
	 */
	List<CentralV2RoleFunction> getRoleFuncList(String string) throws Exception;
	
	/**
	 * It return list of role provided by the app uebkey and roleId
	 * 
	 * @param roleId
	 * @param uebkey
	 * @return CentralRole
	 * @throws Exception
	 */
	CentralV2Role getRoleInfo(Long roleId, String uebkey) throws Exception;
	
	/**
	 *  It returns the CentralV2RoleFunction object 
	 *   
	 * @param functionCode
	 * @param uebkey 
	 * @return CentralV2RoleFunction
	 * @throws Exception 
	 */
	public CentralV2RoleFunction getRoleFunction(String functionCode, String uebkey) throws Exception;

	/**
	 *  It saves role function in the DB
	 *  
	 * @param domainCentralRoleFunction
	 * @param requestedApp 
	 * @return true else false
	 * @throws Exception 
	 */
	public boolean saveCentralRoleFunction(CentralV2RoleFunction domainCentralRoleFunction, EPApp requestedApp) throws Exception;
	
	/**
	 * It deletes role function in the DB
	 * 
	 * @param code
	 * @param app 
	 */
	public boolean deleteCentralRoleFunction(String code, EPApp app);

	/**
	 * It gets all roles the applications
	 * 
	 * @param uebkey
	 * @return List
	 * @throws Exception 
	 */
	public List<CentralV2Role> getRolesForApp(String uebkey) throws Exception;
	
	/**
	 * 
	 * It saves role function in the DB
	 * 
	 * @param saveRole
	 * @param uebkey
	 * @return message and true or false  
	 * @throws Exception
	 */
	ExternalRequestFieldsValidator saveRoleForApplication(Role saveRole, String uebkey) throws Exception;

	/**
	 *  It deletes role in the DB
	 *  
	 * @param code
	 * @param uebkey
	 * @return true else false
	 * @throws Exception 
	 */
	boolean deleteRoleForApplication(String code, String uebkey) throws Exception;
	
	/**
	 * It gets all active roles for single application 
	 * 
	 * @param uebkey
	 * @return List
	 * @throws Exception
	 */
	List<CentralV2Role> getActiveRoles(String uebkey) throws Exception;
	
	/**
	 * It deletes user related roles for an application in the table
	 * @param roleId
	 * @param uebkey
	 * @param LoginId 
	 * @return true else false
	 * @throws Exception 
	 */
	public ExternalRequestFieldsValidator deleteDependencyRoleRecord(Long roleId, String uebkey, String LoginId) throws Exception;
	
	/**
	 * It sync new functions codes and names from and updates role functions from external access system
	 * 
	 * @param app
	 * @throws Exception
	 */
	public void syncRoleFunctionFromExternalAccessSystem(EPApp app) throws Exception;

	/**
	 * It uploads portal functions into external auth system
	 * @param uebkey
	 * @return
	 * @throws Exception
	 */
	public Integer bulkUploadFunctions(String uebkey) throws Exception;

	/**
	 * It uploads portal roles into external auth system
	 * @param uebkey
	 * @return
	 * @throws Exception
	 */
	public Integer bulkUploadRoles(String uebkey) throws Exception;

	/**
	 * It uploads partner application role functions into external auth system
	 * 
	 * @param uebkey
	 * @param upload
	 * @throws Exception
	 */
	public Integer bulkUploadPartnerFunctions(String uebkey) throws Exception;

	/** 
	 * It uploads partner application role functions into external auth system
	 * 
	 * @param uebkey
	 * @param upload
	 * @throws Exception
	 */
	public void bulkUploadPartnerRoles(String uebkey, List<Role> upload) throws Exception;

	/**
	 * It returns total no. of portal application role functions records added in external auth system 
	 * @param uebkey
	 * @return
	 * @throws Exception
	 */
	Integer bulkUploadRolesFunctions(String uebkey) throws Exception;
	
	/**
	 *  It syncs the roles and rolefunctions to the ONAP DB from AAF
	 * @param app
	 * @throws Exception
	 */
	void syncApplicationRolesWithEcompDB(EPApp app) throws Exception;

	/**
	 * It uploads list of user roles of the application into external auth system 
	 * 
	 * @param uebkey
	 * @return
	 * @throws Exception
	 */
	public Integer bulkUploadUserRoles(String uebkey) throws Exception;

	/**
	 * It Uploads partner application role functions into external auth system
	 * 
	 * @param uebkey
	 * @param roleList
	 * @throws Exception
	 */
	Integer bulkUploadPartnerRoleFunctions(String uebkey) throws Exception;

	/**
	 * it deletes all dependency role records 
	 * 
	 * @param localSession
	 * @param roleId
	 * @param appId
	 * @param isPortalRequest 
	 * @throws Exception
	 */
	public void deleteRoleDependencyRecords(Session localSession, Long roleId, Long appId, boolean isPortalRequest) throws Exception;

	/**
	 * It returns list of applications functions along with functions associated with global role
	 * 
	 * @param uebkey
	 * @return
	 * @throws Exception
	 */
	List<String> getMenuFunctionsList(String uebkey) throws Exception;
	
	/**
	 * 
	 * @param uebkey applications UebKey
	 * @return
	 * @throws Exception
	 * Method getAllUsers returns all the active users of application
	 */
	List<EcompUser> getAllAppUsers(String uebkey) throws Exception;
	
	/**
	 * 
	 * @param result
	 * @return returns Role Object
	 * Method ConvertCentralRoleToRole converts the CentralRole String to Role Object
	 */
	public Role ConvertCentralRoleToRole(String result);
	
	/**
	 * It returns the list of centralized applications
	 * 
	 * @param userId
	 * @return List
	 */
	public List<CentralizedApp> getCentralizedAppsOfUser(String userId);
	
	/**
	 * It returns the list of globalRoles of Portal
	 * @return
	 */
	public  List<EPRole> getGlobalRolesOfPortal();
	
	/**
	 * It converts list of CentralV2RoleFunction objects to older version of CentralRoleFunction objects
	 * @param answer contains list of CentralRoleFunction objects
	 * @return List of CentralRoleFunction objects
	 */
	public List<CentralRoleFunction> convertCentralRoleFunctionToRoleFunctionObject(List<CentralV2RoleFunction> answer);
	
	/**
	 * 
	 * It returns user roles for older version
	 * 
	 * @param loginId
	 * @param uebkey
	 * @return EPUser
	 * @throws Exception 
	 */
	public CentralUser getUserRoles(String loginId, String uebkey) throws Exception;
	
	/**
	 * It converts list of V2 CentralRole objects to old version CentralRole objects
	 * 
	 * @param v2CenRole
	 * @return List of CentralRole objects
	 */
	public List<CentralRole> convertV2CentralRoleListToOldVerisonCentralRoleList(List<CentralV2Role> v2CenRole);
	
	/**
	 * 
	 * It finds namespace in external auth system if found returns namespace information
	 * 
	 * @param epApp
	 * @return Http response
	 */
	public ResponseEntity<String> getNameSpaceIfExists(EPApp epApp) throws Exception, HttpClientErrorException;
	
	/**
	 * 
	 * It converts V2 CentralRole objects to old version CentralRole objects
	 * 
	 * @param answer
	 * @return
	 */
	public CentralRole convertV2CentralRoleToOldVerisonCentralRole(CentralV2Role answer);

	/**
	 * 
	 * Returns list of EPRole Objects if exists
	 * 
	 * @param app
	 * @return List of EPRole objects
	 */
	Map<String, EPRole> getAppRoleNamesWithUnderscoreMap(EPApp app);
    
	
	/**
	 * 
	 * It uploads list of users for single role when role name is re-named
	 * 
	 * @param header
	 * @param roleId
	 * @param roleName 
	 * @return number of user roles added in External Auth System
	 * @throws Exception 
	 */
	public Integer bulkUploadUsersSingleRole(String uebkey, Long roleId, String roleName) throws Exception;
	
	/**
	 * 
	 * It returns JSON array of external auth roles and its corresponding functions
	 * 
	 * @param app
	 * @return JSON Array
	 * @throws Exception
	 */
	public JSONArray getAppRolesJSONFromExtAuthSystem(EPApp app) throws Exception;
	
	/**
	 * 
	 * It returns list of ExternalRoleDetails which is converted from JSON array of roles
	 * 
	 * @param app 
	 * @param mapper
	 * @param extRole contains external auth application roles JSON array
	 * @return List of ExternalRoleDetails objects
	 * @throws IOException
	 * @throws JsonParseException
	 * @throws JsonMappingException
	 */
	public List<ExternalRoleDetails> getExternalRoleDetailsList(EPApp app,
			ObjectMapper mapper, JSONArray extRole)	throws IOException, JsonParseException, JsonMappingException;
	
	public JSONArray getAllUsersByRole(String roleName) throws Exception;
	
	/**
	 * 
	 * It check function code has any pipes, if found return function type
	 * 
	 * @param roleFuncItem
	 * @param type
	 * @return function type
	 */
	String getFunctionCodeType(String roleFuncItem);
	
	/**
	 * It return function action
	 * 
	 * @param roleFuncItem
	 * @return String action
	 */
	String getFunctionCodeAction(String roleFuncItem);
	
	/**
	 * 
	 * Adds function to role in external auth system
	 * 
	 * @param data
	 * @param app
	 */
	void bulkUploadRoleFunc(UploadRoleFunctionExtSystem data, EPApp app) throws Exception;

	/**
	 * 
	 * Syncs user roles from external auth system to ecomp portal 
	 * 
	 * @param orgUserId
	 * @throws Exception 
	 */
	public void syncApplicationUserRolesFromExtAuthSystem(String orgUserId) throws Exception;

	/**
	 * 
	 * Gets all user roles from external auth system
	 * 
	 * @param orgUserId
	 * @param getUserRolesEntity
	 * @return user roles from external auth system 
	 */
	ResponseEntity<String> getUserRolesFromExtAuthSystem(String orgUserId, HttpEntity<String> getUserRolesEntity) throws Exception;

	/**
	 * 
	 * Updates app role description in external auth system
	 * 
	 * @param uebkey
	 * @return number of updates
	 */
	public Integer updateAppRoleDescription(String uebkey);

	/**
	 * Creates centralRoleObject
	 * @param app
	 * @param roleInfo
	 * @param roleList
	 * @param params
	 * @return returns List<CentralV2Role>
	 * @throws RoleFunctionException
	 */
	public List<CentralV2Role> createCentralRoleObject(List<EPApp> app, List<EPRole> roleInfo,
			List<CentralV2Role> roleList, Map<String, Long> params) throws RoleFunctionException;
	
	/**
	 * 
	 * @param uebkey
	 * @param loginId
	 * @param CurrentUserRoles
	 * @return returns list of user roles
	 * @throws Exception
	 */
	public List<EcompRole> missingUserApplicationRoles(String uebkey, String loginId, Set<EcompRole> CurrentUserRoles) throws Exception;

	List<EPRole> getPortalAppRoleInfo(Long roleId);

}