Как я могу установить информацию о пользователе в jetspeed?
Мы используем Jetspeed в проекте и требуем, чтобы jetspeed проходил аутентификацию в сторонней службе отдыха, которая принимает имя пользователя и пароль и возвращает объект пользователя.
Самым простым и понятным способом реализации этого, не оказав слишком большого влияния на jetspeed, было написание собственного AuthenticationProvider, расширяющего класс DefaultAuthenticationProvider и переопределяющего метод login.
После того, как я аутентифицирую пользователя, я возвращаю информацию о пользователе, включая роли, электронную почту и т. Д. Теперь, если пользователь уже существует в базе данных jetspeed, я синхронизирую его роли, в противном случае я создаю пользователя и назначаю ему роли, возвращенные удаленной службой.
Теперь я хочу также указать способ установки свойств user.email, user.firstname и user.lastname, чтобы он был доступен с помощью $jetspeed.getUserAttribute в файлах psml. Есть идеи, как мы можем это сделать?
Вот мой код [вырезать ненужные вещи] -
public class CustomAuthenticationProvider extends BaseAuthenticationProvider {
....
public AuthenticatedUser authenticate(String userName, String password) throws SecurityException {
try {
//Login the user
UserSessionDTO customSession = Security.login(userName, password);
//Fetch the user details
UserDTO customUser = customSession.getUser();
//Get the user roles
List<UserRoleDTO> roles = customUser.getUserRoleDTOList();
//Verify/create the user in jetspeed user database
UserImpl user = null;
if (!um.userExists(customUser.getLoginId())) {
user = (UserImpl) um.addUser(customUser.getLoginId(), true);
//Standard data
user.setMapped(true);
user.setEnabled(true);
} else {
user = (UserImpl) um.getUser(customUser.getLoginId());
}
//Sync the portal user roles with the CMGI user roles
List<Role> portalRoles = rm.getRolesForUser(customUser.getLoginId());
for (Role portalRole : portalRoles) {
Boolean found = Boolean.FALSE;
for (UserRoleDTO role : roles) {
if (role.getRoleName().equalsIgnoreCase(portalRole.getName())) {
found = Boolean.TRUE;
break;
}
}
if(!found){
rm.removeRoleFromUser(userName, portalRole.getName());
}
}
for(UserRoleDTO role : roles){
rm.addRoleToUser(userName, role.getRoleName());
}
PasswordCredential pwc = new PasswordCredentialImpl(user, password);
UserCredentialImpl uc = new UserCredentialImpl(pwc);
AuthenticatedUserImpl authUser = new AuthenticatedUserImpl(user, uc);
return authUser;
}
.... } }
1 ответ
Вы можете добавить пользовательские атрибуты пользователя в пользовательский компонент Jetspeed "org.apache.jetspeed.security.JetspeedPrincipalType.user", расположенный в security-Manager.xml.
Эти атрибуты должны быть определены следующим образом:
<bean class="org.apache.jetspeed.security.impl.SecurityAttributeTypeImpl">
<constructor-arg index="0" value="user.lastname" />
<constructor-arg index="1" value="info" />
</bean>