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
4962b5ba
Commit
4962b5ba
authored
7 years ago
by
srosse
Browse files
Options
Downloads
Patches
Plain Diff
OO-3022: commit after every synchronization of a user or rollback if the sync failed
parent
bc43c7cc
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/ldap/manager/LDAPLoginManagerImpl.java
+26
-20
26 additions, 20 deletions
...main/java/org/olat/ldap/manager/LDAPLoginManagerImpl.java
with
26 additions
and
20 deletions
src/main/java/org/olat/ldap/manager/LDAPLoginManagerImpl.java
+
26
−
20
View file @
4962b5ba
...
@@ -1177,15 +1177,15 @@ public class LDAPLoginManagerImpl implements LDAPLoginManager, GenericEventListe
...
@@ -1177,15 +1177,15 @@ public class LDAPLoginManagerImpl implements LDAPLoginManager, GenericEventListe
}
else
{
}
else
{
log
.
warn
(
errors
.
get
(),
null
);
log
.
warn
(
errors
.
get
(),
null
);
}
}
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
// catch here to go on with other users on exeptions!
// catch here to go on with other users on exeptions!
log
.
error
(
"some error occured in looping over set of changed user-attributes, actual user "
+
user
+
". Will still continue with others."
,
e
);
log
.
error
(
"some error occured in looping over set of changed user-attributes, actual user "
+
user
+
". Will still continue with others."
,
e
);
}
errors
.
insert
(
"Cannot sync user: "
+
user
);
}
finally
{
if
(
count
%
10
==
0
)
{
dbInstance
.
commit
();
dbInstance
.
commitAndCloseSession
();
if
(
count
%
10
==
0
)
{
dbInstance
.
closeSession
();
}
}
}
if
(
count
%
1000
==
0
)
{
if
(
count
%
1000
==
0
)
{
log
.
info
(
"Retrieve "
+
count
+
"/"
+
ldapUserList
.
size
()
+
" users in LDAP server"
);
log
.
info
(
"Retrieve "
+
count
+
"/"
+
ldapUserList
.
size
()
+
" users in LDAP server"
);
...
@@ -1200,11 +1200,16 @@ public class LDAPLoginManagerImpl implements LDAPLoginManager, GenericEventListe
...
@@ -1200,11 +1200,16 @@ public class LDAPLoginManagerImpl implements LDAPLoginManager, GenericEventListe
int
syncCount
=
0
;
int
syncCount
=
0
;
for
(
IdentityRef
ident
:
changedMapIdentityMap
.
keySet
())
{
for
(
IdentityRef
ident
:
changedMapIdentityMap
.
keySet
())
{
// sync user is exception save, no try/catch needed
// sync user is exception save, no try/catch needed
syncUser
(
changedMapIdentityMap
.
get
(
ident
),
ident
);
try
{
syncCount
++;
syncCount
++;
syncUser
(
changedMapIdentityMap
.
get
(
ident
),
ident
);
if
(
syncCount
%
20
==
0
)
{
}
catch
(
Exception
e
)
{
dbInstance
.
commitAndCloseSession
();
errors
.
insert
(
"Cannot sync user: "
+
ident
);
}
finally
{
dbInstance
.
commit
();
if
(
syncCount
%
20
==
0
)
{
dbInstance
.
closeSession
();
}
}
}
if
(
syncCount
%
1000
==
0
)
{
if
(
syncCount
%
1000
==
0
)
{
log
.
info
(
"Update "
+
syncCount
+
"/"
+
changedMapIdentityMap
.
size
()
+
" LDAP users"
);
log
.
info
(
"Update "
+
syncCount
+
"/"
+
changedMapIdentityMap
.
size
()
+
" LDAP users"
);
...
@@ -1218,26 +1223,27 @@ public class LDAPLoginManagerImpl implements LDAPLoginManager, GenericEventListe
...
@@ -1218,26 +1223,27 @@ public class LDAPLoginManagerImpl implements LDAPLoginManager, GenericEventListe
log
.
info
(
"LDAP batch sync: no users to create"
+
sinceSentence
);
log
.
info
(
"LDAP batch sync: no users to create"
+
sinceSentence
);
}
else
{
}
else
{
int
newCount
=
0
;
int
newCount
=
0
;
for
(
LDAPUser
ldapUser:
newLdapUserList
)
{
for
(
LDAPUser
ldapUser:
newLdapUserList
)
{
Attributes
userAttrs
=
ldapUser
.
getAttributes
();
Attributes
userAttrs
=
ldapUser
.
getAttributes
();
try
{
try
{
newCount
++;
Identity
identity
=
createAndPersistUser
(
userAttrs
);
Identity
identity
=
createAndPersistUser
(
userAttrs
);
if
(
StringHelper
.
containsNonWhitespace
(
ldapUser
.
getDn
()))
{
if
(
StringHelper
.
containsNonWhitespace
(
ldapUser
.
getDn
()))
{
dnToIdentityKeyMap
.
put
(
ldapUser
.
getDn
(),
ldapUser
);
dnToIdentityKeyMap
.
put
(
ldapUser
.
getDn
(),
ldapUser
);
ldapUser
.
setCachedIdentity
(
new
IdentityRefImpl
(
identity
.
getKey
()));
ldapUser
.
setCachedIdentity
(
new
IdentityRefImpl
(
identity
.
getKey
()));
}
}
newCount
++;
if
(
newCount
%
20
==
0
)
{
dbInstance
.
intermediateCommit
();
}
if
(
newCount
%
1000
==
0
)
{
log
.
info
(
"Create "
+
count
+
"/"
+
newLdapUserList
.
size
()
+
" LDAP users"
);
}
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
// catch here to go on with other users on exeptions!
// catch here to go on with other users on exeptions!
log
.
error
(
"some error occured while creating new users, actual userAttribs "
+
userAttrs
+
". Will still continue with others."
,
e
);
log
.
error
(
"some error occured while creating new users, actual userAttribs "
+
userAttrs
+
". Will still continue with others."
,
e
);
}
finally
{
dbInstance
.
commit
();
if
(
newCount
%
20
==
0
)
{
dbInstance
.
closeSession
();
}
}
if
(
newCount
%
1000
==
0
)
{
log
.
info
(
"Create "
+
count
+
"/"
+
newLdapUserList
.
size
()
+
" LDAP users"
);
}
}
}
}
log
.
info
(
"LDAP batch sync: "
+
newLdapUserList
.
size
()
+
" users created"
+
sinceSentence
);
log
.
info
(
"LDAP batch sync: "
+
newLdapUserList
.
size
()
+
" users created"
+
sinceSentence
);
...
...
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