Skip to content
Snippets Groups Projects
Commit 73fc6855 authored by srosse's avatar srosse
Browse files

OO-852: search assessed identities with username, email, institutional email and institutional id

parent 886834d1
No related branches found
No related tags found
No related merge requests found
......@@ -56,6 +56,9 @@ import org.olat.course.nodes.AssessableCourseNode;
*/
public class ValidationStepForm extends StepFormBasicController {
private static final String[] userPropsToSearch = new String[]{ UserConstants.EMAIL, UserConstants.INSTITUTIONALEMAIL, UserConstants.INSTITUTIONALUSERIDENTIFIER };
private ValidDataModel validModel;
private ValidDataModel invalidModel;
private FlexiTableElement validTableEl;
......@@ -141,7 +144,19 @@ public class ValidationStepForm extends StepFormBasicController {
Identity identity = securityManager.findIdentityByName(assessedId);
if(identity != null) {
idToIdentityMap.put(assessedId, identity);
continue;
}
Map<String, String> userProperties = new HashMap<String,String>();
for(String prop : userPropsToSearch) {
userProperties.put(prop, assessedId);
List<Identity> identities = securityManager.getIdentitiesByPowerSearch(null, userProperties, false, null, null, null, null, null, null, null, null);
if(!identities.isEmpty()) {
idToIdentityMap.put(assessedId, identities.get(0));
break;
}
userProperties.clear();
}
}
return idToIdentityMap;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment