Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
3ebf50a0
Commit
3ebf50a0
authored
12 years ago
by
brinn
Browse files
Options
Downloads
Patches
Plain Diff
Add logging for authentication from an LDAP authentication service.
SVN: 28139
parent
cfb372a5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
authentication/source/java/ch/systemsx/cisd/authentication/ldap/LDAPAuthenticationService.java
+30
-7
30 additions, 7 deletions
...x/cisd/authentication/ldap/LDAPAuthenticationService.java
with
30 additions
and
7 deletions
authentication/source/java/ch/systemsx/cisd/authentication/ldap/LDAPAuthenticationService.java
+
30
−
7
View file @
3ebf50a0
...
...
@@ -18,10 +18,14 @@ package ch.systemsx.cisd.authentication.ldap;
import
java.util.List
;
import
org.apache.log4j.Logger
;
import
ch.systemsx.cisd.authentication.IAuthenticationService
;
import
ch.systemsx.cisd.authentication.Principal
;
import
ch.systemsx.cisd.common.exceptions.ConfigurationFailureException
;
import
ch.systemsx.cisd.common.exceptions.EnvironmentFailureException
;
import
ch.systemsx.cisd.common.logging.LogCategory
;
import
ch.systemsx.cisd.common.logging.LogFactory
;
/**
* A {@link IAuthenticationService} for LDAP servers.
...
...
@@ -32,6 +36,9 @@ public class LDAPAuthenticationService implements IAuthenticationService
{
private
static
final
String
DUMMY_TOKEN_STR
=
"DUMMY-TOKEN"
;
private
static
final
Logger
operationLog
=
LogFactory
.
getLogger
(
LogCategory
.
OPERATION
,
LDAPAuthenticationService
.
class
);
private
final
LDAPPrincipalQuery
query
;
public
LDAPAuthenticationService
(
LDAPDirectoryConfiguration
config
)
...
...
@@ -54,7 +61,18 @@ public class LDAPAuthenticationService implements IAuthenticationService
@Override
public
boolean
authenticateUser
(
String
user
,
String
password
)
{
return
query
.
authenticateUser
(
user
,
password
);
final
boolean
authenticated
=
query
.
authenticateUser
(
user
,
password
);
logAuthentication
(
user
,
authenticated
);
return
authenticated
;
}
private
void
logAuthentication
(
final
String
user
,
final
boolean
authenticated
)
{
if
(
operationLog
.
isInfoEnabled
())
{
final
String
msg
=
"LDAP: authentication of user '"
+
user
+
"': "
;
operationLog
.
info
(
msg
+
(
authenticated
?
"SUCCESS."
:
"FAILED."
));
}
}
@Override
...
...
@@ -67,7 +85,9 @@ public class LDAPAuthenticationService implements IAuthenticationService
@Override
public
Principal
tryGetAndAuthenticateUser
(
String
user
,
String
passwordOrNull
)
{
return
query
.
tryGetAndAuthenticatePrincipal
(
user
,
passwordOrNull
);
final
Principal
principal
=
query
.
tryGetAndAuthenticatePrincipal
(
user
,
passwordOrNull
);
logAuthentication
(
user
,
Principal
.
isAuthenticated
(
principal
));
return
principal
;
}
@Override
...
...
@@ -94,7 +114,7 @@ public class LDAPAuthenticationService implements IAuthenticationService
{
return
listPrincipalsByEmail
(
emailQuery
);
}
@Override
public
List
<
Principal
>
listPrincipalsByEmail
(
String
emailQuery
)
{
...
...
@@ -107,12 +127,15 @@ public class LDAPAuthenticationService implements IAuthenticationService
{
return
tryGetAndAuthenticateUserByEmail
(
email
,
passwordOrNull
);
}
@Override
public
Principal
tryGetAndAuthenticateUserByEmail
(
String
email
,
String
passwordOrNull
)
{
return
query
.
tryGetAndAuthenticatePrincipalByEmail
(
email
,
passwordOrNull
);
final
Principal
principal
=
query
.
tryGetAndAuthenticatePrincipalByEmail
(
email
,
passwordOrNull
);
final
String
user
=
(
principal
!=
null
)
?
principal
.
getUserId
()
:
"email:"
+
email
;
logAuthentication
(
user
,
Principal
.
isAuthenticated
(
principal
));
return
principal
;
}
@Override
...
...
@@ -120,7 +143,7 @@ public class LDAPAuthenticationService implements IAuthenticationService
{
return
listPrincipalsByLastName
(
lastNameQuery
);
}
@Override
public
List
<
Principal
>
listPrincipalsByLastName
(
String
lastNameQuery
)
{
...
...
@@ -132,7 +155,7 @@ public class LDAPAuthenticationService implements IAuthenticationService
{
return
listPrincipalsByUserId
(
userIdQuery
);
}
@Override
public
List
<
Principal
>
listPrincipalsByUserId
(
String
userIdQuery
)
{
...
...
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