if (parameterName.startsWith(PREFERENCE)) {
preferences.put(parameterName.substring(PREFERENCE.length()), request.getParameter(parameterName));
}
}
SecurityRealm realm = PebbleContext.getInstance().getConfiguration().getSecurityRealm();
PebbleUserDetails currentUserDetails = realm.getUser(username);
PebbleUserDetails newUserDetails = new PebbleUserDetails(username, password1, name, emailAddress, website, profile, roles, preferences, detailsUpdateable);
ValidationContext validationContext = new ValidationContext();
if (newUser && currentUserDetails != null) {
validationContext.addError("A user with this username already exists");
} else if (newUser && (username == null || username.trim().length() == 0)) {
validationContext.addError("Username can't be empty");
} else if (password1 != null && password1.length() > 0 && !password1.equals(password2)) {
validationContext.addError("Passwords must match");
} else {
if (newUser) {
try {
realm.createUser(newUserDetails);
} catch (SecurityRealmException sre) {
validationContext.addError(sre.getMessage());
}
} else {
realm.updateUser(newUserDetails);
if (password1 != null && password1.length() > 0) {
realm.changePassword(username, password1);
}
}
return new RedirectView(blog.getUrl() + "viewUsers.secureaction");
}