Merge remote-tracking branch 'origin/pr/1129'

master
Andrew DeMaria 5 years ago
commit a9b4d481c3
No known key found for this signature in database
GPG Key ID: 0A3F5E91F8364EDF
  1. 9
      airsonic-main/src/main/java/org/airsonic/player/command/UserSettingsCommand.java
  2. 1
      airsonic-main/src/main/java/org/airsonic/player/controller/UserSettingsController.java
  3. 14
      airsonic-main/src/main/java/org/airsonic/player/validator/UserSettingsValidator.java
  4. 6
      airsonic-main/src/main/webapp/WEB-INF/jsp/userSettings.jsp

@ -46,6 +46,7 @@ public class UserSettingsCommand {
private List<User> users;
private boolean isAdmin;
private boolean isCurrentUser;
private boolean isPasswordChange;
private boolean isNewUser;
private boolean isDeleteUser;
@ -166,6 +167,14 @@ public class UserSettingsCommand {
isAdmin = admin;
}
public boolean isCurrentUser() {
return isCurrentUser;
}
public void setCurrentUser(boolean currentUser) {
isCurrentUser = currentUser;
}
public boolean isPasswordChange() {
return isPasswordChange;
}

@ -87,6 +87,7 @@ public class UserSettingsController {
UserSettings userSettings = settingsService.getUserSettings(user.getUsername());
command.setTranscodeSchemeName(userSettings.getTranscodeScheme().name());
command.setAllowedMusicFolderIds(Util.toIntArray(getAllowedMusicFolderIds(user)));
command.setCurrentUser(securityService.getCurrentUser(request).getUsername().equals(user.getUsername()));
} else {
command.setNewUser(true);
command.setStreamRole(true);

@ -29,6 +29,8 @@ import org.springframework.stereotype.Component;
import org.springframework.validation.Errors;
import org.springframework.validation.Validator;
import javax.servlet.http.HttpServletRequest;
/**
* Validator for {@link UserSettingsController}.
*
@ -41,6 +43,8 @@ public class UserSettingsValidator implements Validator {
private SecurityService securityService;
@Autowired
private SettingsService settingsService;
@Autowired
private HttpServletRequest request;
/**
* {@inheritDoc}
@ -85,6 +89,16 @@ public class UserSettingsValidator implements Validator {
errors.rejectValue("password", "usersettings.passwordnotsupportedforldap");
}
if (securityService.getCurrentUser(request).getUsername().equals(username)) {
// These errors don't need translation since the option isn't exposed to the user
if (command.isDeleteUser()) {
errors.rejectValue("deleteUser", null, "Cannot delete the current user");
}
if (! command.isAdminRole()) {
errors.rejectValue("adminRole", null, "Cannot remove admin from the current user");
}
}
}
}

@ -63,9 +63,10 @@
<form:form method="post" action="userSettings.view" modelAttribute="command">
<table style="${command.admin ? 'display:none' : ''}">
<tr>
<tr style="${command.currentUser ? 'display:none' : ''}">
<td><form:checkbox path="adminRole" id="admin" cssClass="checkbox"/></td>
<td><label for="admin"><fmt:message key="usersettings.admin"/></label></td>
<td class="warning"><form:errors path="adminRole"/></td>
</tr>
<tr>
<td><form:checkbox path="settingsRole" id="settings" cssClass="checkbox"/></td>
@ -136,11 +137,12 @@
</tr>
</table>
<c:if test="${not command.newUser and not command.admin}">
<c:if test="${not command.newUser and not command.admin and not command.currentUser}">
<table class="indent">
<tr>
<td><form:checkbox path="deleteUser" id="delete" cssClass="checkbox"/></td>
<td><label for="delete"><fmt:message key="usersettings.delete"/></label></td>
<td class="warning"><form:errors path="deleteUser"/></td>
</tr>
</table>
</c:if>

Loading…
Cancel
Save