Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
OLAT CI-CD Testing Project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lars Oliver Dam
OLAT CI-CD Testing Project
Commits
73fc6855
Commit
73fc6855
authored
11 years ago
by
srosse
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/org/olat/course/assessment/bulk/ValidationStepForm.java
+15
-0
15 additions, 0 deletions
...a/org/olat/course/assessment/bulk/ValidationStepForm.java
with
15 additions
and
0 deletions
src/main/java/org/olat/course/assessment/bulk/ValidationStepForm.java
+
15
−
0
View file @
73fc6855
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment