aboutsummaryrefslogtreecommitdiff
path: root/subsonic-main/src/main/java/net/sourceforge/subsonic/controller/PlayerSettingsController.java
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2013-07-27 14:33:25 -0700
committerScott Jackson <daneren2005@gmail.com>2013-07-27 14:33:38 -0700
commit4738428c2c205f42200386ae09b44b9ec07b9144 (patch)
treea6402978fe1b4655f90c3c8a181f4d246fbc5e89 /subsonic-main/src/main/java/net/sourceforge/subsonic/controller/PlayerSettingsController.java
parent82ec8315f777c319f2372540098e21111019d629 (diff)
downloaddsub-4738428c2c205f42200386ae09b44b9ec07b9144.tar.gz
dsub-4738428c2c205f42200386ae09b44b9ec07b9144.tar.bz2
dsub-4738428c2c205f42200386ae09b44b9ec07b9144.zip
Move subsonic-android to root
Diffstat (limited to 'subsonic-main/src/main/java/net/sourceforge/subsonic/controller/PlayerSettingsController.java')
-rw-r--r--subsonic-main/src/main/java/net/sourceforge/subsonic/controller/PlayerSettingsController.java150
1 files changed, 0 insertions, 150 deletions
diff --git a/subsonic-main/src/main/java/net/sourceforge/subsonic/controller/PlayerSettingsController.java b/subsonic-main/src/main/java/net/sourceforge/subsonic/controller/PlayerSettingsController.java
deleted file mode 100644
index 813d94a5..00000000
--- a/subsonic-main/src/main/java/net/sourceforge/subsonic/controller/PlayerSettingsController.java
+++ /dev/null
@@ -1,150 +0,0 @@
-/*
- This file is part of Subsonic.
-
- Subsonic is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- Subsonic is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with Subsonic. If not, see <http://www.gnu.org/licenses/>.
-
- Copyright 2009 (C) Sindre Mehus
- */
-package net.sourceforge.subsonic.controller;
-
-import java.util.ArrayList;
-import java.util.List;
-
-import javax.servlet.http.HttpServletRequest;
-
-import org.apache.commons.lang.StringUtils;
-import org.springframework.web.servlet.mvc.SimpleFormController;
-
-import net.sourceforge.subsonic.command.PlayerSettingsCommand;
-import net.sourceforge.subsonic.domain.CoverArtScheme;
-import net.sourceforge.subsonic.domain.Player;
-import net.sourceforge.subsonic.domain.PlayerTechnology;
-import net.sourceforge.subsonic.domain.TranscodeScheme;
-import net.sourceforge.subsonic.domain.Transcoding;
-import net.sourceforge.subsonic.domain.User;
-import net.sourceforge.subsonic.service.PlayerService;
-import net.sourceforge.subsonic.service.SecurityService;
-import net.sourceforge.subsonic.service.TranscodingService;
-
-/**
- * Controller for the player settings page.
- *
- * @author Sindre Mehus
- */
-public class PlayerSettingsController extends SimpleFormController {
-
- private PlayerService playerService;
- private SecurityService securityService;
- private TranscodingService transcodingService;
-
- @Override
- protected Object formBackingObject(HttpServletRequest request) throws Exception {
-
- handleRequestParameters(request);
- List<Player> players = getPlayers(request);
-
- User user = securityService.getCurrentUser(request);
- PlayerSettingsCommand command = new PlayerSettingsCommand();
- Player player = null;
- String playerId = request.getParameter("id");
- if (playerId != null) {
- player = playerService.getPlayerById(playerId);
- } else if (!players.isEmpty()) {
- player = players.get(0);
- }
-
- if (player != null) {
- command.setPlayerId(player.getId());
- command.setName(player.getName());
- command.setDescription(player.toString());
- command.setType(player.getType());
- command.setLastSeen(player.getLastSeen());
- command.setDynamicIp(player.isDynamicIp());
- command.setAutoControlEnabled(player.isAutoControlEnabled());
- command.setCoverArtSchemeName(player.getCoverArtScheme().name());
- command.setTranscodeSchemeName(player.getTranscodeScheme().name());
- command.setTechnologyName(player.getTechnology().name());
- command.setAllTranscodings(transcodingService.getAllTranscodings());
- List<Transcoding> activeTranscodings = transcodingService.getTranscodingsForPlayer(player);
- int[] activeTranscodingIds = new int[activeTranscodings.size()];
- for (int i = 0; i < activeTranscodings.size(); i++) {
- activeTranscodingIds[i] = activeTranscodings.get(i).getId();
- }
- command.setActiveTranscodingIds(activeTranscodingIds);
- }
-
- command.setTranscodingSupported(transcodingService.isDownsamplingSupported(null));
- command.setTranscodeDirectory(transcodingService.getTranscodeDirectory().getPath());
- command.setCoverArtSchemes(CoverArtScheme.values());
- command.setTranscodeSchemes(TranscodeScheme.values());
- command.setTechnologies(PlayerTechnology.values());
- command.setPlayers(players.toArray(new Player[players.size()]));
- command.setAdmin(user.isAdminRole());
-
- return command;
- }
-
- @Override
- protected void doSubmitAction(Object comm) throws Exception {
- PlayerSettingsCommand command = (PlayerSettingsCommand) comm;
- Player player = playerService.getPlayerById(command.getPlayerId());
-
- player.setAutoControlEnabled(command.isAutoControlEnabled());
- player.setCoverArtScheme(CoverArtScheme.valueOf(command.getCoverArtSchemeName()));
- player.setDynamicIp(command.isDynamicIp());
- player.setName(StringUtils.trimToNull(command.getName()));
- player.setTranscodeScheme(TranscodeScheme.valueOf(command.getTranscodeSchemeName()));
- player.setTechnology(PlayerTechnology.valueOf(command.getTechnologyName()));
-
- playerService.updatePlayer(player);
- transcodingService.setTranscodingsForPlayer(player, command.getActiveTranscodingIds());
-
- command.setReloadNeeded(true);
- }
-
- private List<Player> getPlayers(HttpServletRequest request) {
- User user = securityService.getCurrentUser(request);
- String username = user.getUsername();
- List<Player> players = playerService.getAllPlayers();
- List<Player> authorizedPlayers = new ArrayList<Player>();
-
- for (Player player : players) {
- // Only display authorized players.
- if (user.isAdminRole() || username.equals(player.getUsername())) {
- authorizedPlayers.add(player);
- }
- }
- return authorizedPlayers;
- }
-
- private void handleRequestParameters(HttpServletRequest request) {
- if (request.getParameter("delete") != null) {
- playerService.removePlayerById(request.getParameter("delete"));
- } else if (request.getParameter("clone") != null) {
- playerService.clonePlayer(request.getParameter("clone"));
- }
- }
-
- public void setSecurityService(SecurityService securityService) {
- this.securityService = securityService;
- }
-
- public void setPlayerService(PlayerService playerService) {
- this.playerService = playerService;
- }
-
- public void setTranscodingService(TranscodingService transcodingService) {
- this.transcodingService = transcodingService;
- }
-}