7
7
import org .tmatesoft .svn .core .SVNErrorCode ;
8
8
import org .tmatesoft .svn .core .SVNErrorMessage ;
9
9
import org .tmatesoft .svn .core .SVNException ;
10
+ import svnserver .config .LDAPUserDBConfig ;
10
11
11
12
import javax .naming .AuthenticationException ;
12
13
import javax .naming .Context ;
@@ -34,60 +35,20 @@ public final class LDAPUserDB implements UserDB, PasswordChecker {
34
35
@ NotNull
35
36
private final Collection <Authenticator > authenticators = Collections .singleton (new PlainAuthenticator (this ));
36
37
37
- /**
38
- * This is a URL whose format is defined by the JNDI provider.
39
- * It is usually an LDAP URL that specifies the domain name of the directory server to connect to,
40
- * and optionally the port number and distinguished name (DN) of the required root naming context.
41
- * <p>
42
- * Example:
43
- */
44
38
@ NotNull
45
- private String connectionUrl = "ldap://localhost:389/ou=groups,dc=mycompany,dc=com" ;
46
- /**
47
- * The JNDI context factory used to acquire our InitialContext. By
48
- * default, assumes use of an LDAP server using the standard JNDI LDAP
49
- * provider.
50
- */
51
- @ NotNull
52
- private final String contextFactory = "com.sun.jndi.ldap.LdapCtxFactory" ;
53
- /**
54
- * The type of authentication to use.
55
- */
56
- @ NotNull
57
- private String authentication = "DIGEST-MD5" ;
58
- /**
59
- * The search scope. Set to <code>true</code> if you wish to search the entire subtree rooted at the <code>userBase</code> entry. The default value of <code>false</code> requests a single-level search including only the top level.
60
- */
61
- private boolean userSubtree ;
62
- /**
63
- * Pattern specifying the LDAP search filter to use after substitution of the username.
64
- */
65
- @ NotNull
66
- private String userSearch = "(mail={0})" ;
67
- /**
68
- * LDAP attribute, containing user name.
69
- */
70
- @ NotNull
71
- private String nameAttribute = "name" ;
72
- /**
73
- * LDAP attribute, containing user email.
74
- */
75
- @ NotNull
76
- private String emailAttribute = "mail" ;
39
+ private final LDAPUserDBConfig config ;
77
40
78
- public LDAPUserDB (@ NotNull String connectionUrl , @ NotNull String userSearch , boolean userSubtree ) {
79
- this .userSearch = userSearch ;
80
- this .userSubtree = userSubtree ;
81
- this .connectionUrl = connectionUrl ;
41
+ public LDAPUserDB (@ NotNull LDAPUserDBConfig config ) {
42
+ this .config = config ;
82
43
}
83
44
84
45
@ Nullable
85
46
@ Override
86
47
public User check (@ NotNull String username , @ NotNull String password ) throws SVNException {
87
48
final Hashtable <String , Object > env = new Hashtable <>();
88
- env .put (Context .INITIAL_CONTEXT_FACTORY , contextFactory );
89
- env .put (Context .PROVIDER_URL , connectionUrl );
90
- env .put (Context .SECURITY_AUTHENTICATION , authentication );
49
+ env .put (Context .INITIAL_CONTEXT_FACTORY , config . getContextFactory () );
50
+ env .put (Context .PROVIDER_URL , config . getConnectionUrl () );
51
+ env .put (Context .SECURITY_AUTHENTICATION , config . getAuthentication () );
91
52
env .put (Context .SECURITY_PRINCIPAL , username );
92
53
env .put (Context .SECURITY_CREDENTIALS , password );
93
54
@@ -96,15 +57,15 @@ public User check(@NotNull String username, @NotNull String password) throws SVN
96
57
context = new InitialDirContext (env );
97
58
98
59
final SearchControls searchControls = new SearchControls ();
99
- searchControls .setSearchScope (userSubtree ? SearchControls .SUBTREE_SCOPE : SearchControls .ONELEVEL_SCOPE );
60
+ searchControls .setSearchScope (config . isUserSubtree () ? SearchControls .SUBTREE_SCOPE : SearchControls .ONELEVEL_SCOPE );
100
61
101
- final NamingEnumeration <SearchResult > search = context .search ("" , MessageFormat .format (userSearch , username ), searchControls );
62
+ final NamingEnumeration <SearchResult > search = context .search ("" , MessageFormat .format (config . getUserSearch () , username ), searchControls );
102
63
if (!search .hasMore ())
103
64
return null ;
104
65
105
66
final Attributes attributes = search .next ().getAttributes ();
106
- final String realName = String .valueOf (attributes .get (nameAttribute ).get ());
107
- final String email = String .valueOf (attributes .get (emailAttribute ).get ());
67
+ final String realName = String .valueOf (attributes .get (config . getNameAttribute () ).get ());
68
+ final String email = String .valueOf (attributes .get (config . getEmailAttribute () ).get ());
108
69
109
70
return new User (username , realName , email );
110
71
} catch (AuthenticationException e ) {
0 commit comments