SEC-38: Make InMemoryDaoImpl support external Properties objects.
This commit is contained in:
parent
0d77abb9c1
commit
f50cbd31ba
|
@ -1,4 +1,4 @@
|
|||
/* Copyright 2004 Acegi Technology Pty Limited
|
||||
/* Copyright 2004, 2005 Acegi Technology Pty Limited
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
@ -22,8 +22,11 @@ import net.sf.acegisecurity.providers.dao.UsernameNotFoundException;
|
|||
import org.springframework.beans.factory.InitializingBean;
|
||||
|
||||
import org.springframework.dao.DataAccessException;
|
||||
|
||||
import org.springframework.util.Assert;
|
||||
|
||||
import java.util.Properties;
|
||||
|
||||
|
||||
/**
|
||||
* Retrieves user details from an in-memory list created by the bean context.
|
||||
|
@ -46,8 +49,22 @@ public class InMemoryDaoImpl implements AuthenticationDao, InitializingBean {
|
|||
return userMap;
|
||||
}
|
||||
|
||||
/**
|
||||
* Modifies the internal <code>UserMap</code> to reflect the
|
||||
* <code>Properties</code> instance passed. This helps externalise user
|
||||
* information to another file etc.
|
||||
*
|
||||
* @param props the account information in a <code>Properties</code> object
|
||||
* format
|
||||
*/
|
||||
public void setUserProperties(Properties props) {
|
||||
UserMap userMap = new UserMap();
|
||||
this.userMap = UserMapEditor.addUsersFromProperties(userMap, props);
|
||||
}
|
||||
|
||||
public void afterPropertiesSet() throws Exception {
|
||||
Assert.notNull(this.userMap, "A list of users, passwords, enabled/disabled status and their granted authorities must be set");
|
||||
Assert.notNull(this.userMap,
|
||||
"A list of users, passwords, enabled/disabled status and their granted authorities must be set");
|
||||
}
|
||||
|
||||
public UserDetails loadUserByUsername(String username)
|
||||
|
|
|
@ -80,7 +80,14 @@ public class UserMapEditor extends PropertyEditorSupport {
|
|||
propertiesEditor.setAsText(s);
|
||||
|
||||
Properties props = (Properties) propertiesEditor.getValue();
|
||||
addUsersFromProperties(userMap, props);
|
||||
}
|
||||
|
||||
setValue(userMap);
|
||||
}
|
||||
|
||||
public static UserMap addUsersFromProperties(UserMap userMap,
|
||||
Properties props) {
|
||||
// Now we have properties, process each one individually
|
||||
UserAttributeEditor configAttribEd = new UserAttributeEditor();
|
||||
|
||||
|
@ -101,8 +108,7 @@ public class UserMapEditor extends PropertyEditorSupport {
|
|||
userMap.addUser(user);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
setValue(userMap);
|
||||
return userMap;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* Copyright 2004 Acegi Technology Pty Limited
|
||||
/* Copyright 2004, 2005 Acegi Technology Pty Limited
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
@ -19,6 +19,8 @@ import junit.framework.TestCase;
|
|||
|
||||
import net.sf.acegisecurity.providers.dao.UsernameNotFoundException;
|
||||
|
||||
import java.util.Properties;
|
||||
|
||||
|
||||
/**
|
||||
* Tests {@link InMemoryDaoImpl}.
|
||||
|
@ -68,7 +70,7 @@ public class InMemoryDaoTests extends TestCase {
|
|||
assertEquals("wombat", dao.loadUserByUsername("scott").getPassword());
|
||||
}
|
||||
|
||||
public void testLookupSuccessWithMixedeCase() throws Exception {
|
||||
public void testLookupSuccessWithMixedCase() throws Exception {
|
||||
InMemoryDaoImpl dao = new InMemoryDaoImpl();
|
||||
dao.setUserMap(makeUserMap());
|
||||
dao.afterPropertiesSet();
|
||||
|
@ -106,6 +108,16 @@ public class InMemoryDaoTests extends TestCase {
|
|||
assertEquals(2, dao.getUserMap().getUserCount());
|
||||
}
|
||||
|
||||
public void testUseOfExternalPropertiesObject() throws Exception {
|
||||
InMemoryDaoImpl dao = new InMemoryDaoImpl();
|
||||
Properties props = new Properties();
|
||||
props.put("marissa", "koala,ROLE_ONE,ROLE_TWO,enabled");
|
||||
props.put("scott", "wombat,ROLE_ONE,ROLE_TWO,enabled");
|
||||
dao.setUserProperties(props);
|
||||
assertEquals("koala", dao.loadUserByUsername("marissa").getPassword());
|
||||
assertEquals("wombat", dao.loadUserByUsername("scott").getPassword());
|
||||
}
|
||||
|
||||
private UserMap makeUserMap() {
|
||||
UserMapEditor editor = new UserMapEditor();
|
||||
editor.setAsText(
|
||||
|
|
Loading…
Reference in New Issue