From 4738428c2c205f42200386ae09b44b9ec07b9144 Mon Sep 17 00:00:00 2001 From: Scott Jackson Date: Sat, 27 Jul 2013 14:33:25 -0700 Subject: Move subsonic-android to root --- .../controller/GeneralSettingsController.java | 114 --------------------- 1 file changed, 114 deletions(-) delete mode 100644 subsonic-main/src/main/java/net/sourceforge/subsonic/controller/GeneralSettingsController.java (limited to 'subsonic-main/src/main/java/net/sourceforge/subsonic/controller/GeneralSettingsController.java') diff --git a/subsonic-main/src/main/java/net/sourceforge/subsonic/controller/GeneralSettingsController.java b/subsonic-main/src/main/java/net/sourceforge/subsonic/controller/GeneralSettingsController.java deleted file mode 100644 index e7b19b04..00000000 --- a/subsonic-main/src/main/java/net/sourceforge/subsonic/controller/GeneralSettingsController.java +++ /dev/null @@ -1,114 +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 . - - Copyright 2009 (C) Sindre Mehus - */ -package net.sourceforge.subsonic.controller; - -import net.sourceforge.subsonic.command.GeneralSettingsCommand; -import net.sourceforge.subsonic.domain.Theme; -import net.sourceforge.subsonic.service.SettingsService; -import org.springframework.web.servlet.mvc.SimpleFormController; - -import javax.servlet.http.HttpServletRequest; -import java.util.Locale; - -/** - * Controller for the page used to administrate general settings. - * - * @author Sindre Mehus - */ -public class GeneralSettingsController extends SimpleFormController { - - private SettingsService settingsService; - - protected Object formBackingObject(HttpServletRequest request) throws Exception { - GeneralSettingsCommand command = new GeneralSettingsCommand(); - command.setCoverArtFileTypes(settingsService.getCoverArtFileTypes()); - command.setIgnoredArticles(settingsService.getIgnoredArticles()); - command.setShortcuts(settingsService.getShortcuts()); - command.setIndex(settingsService.getIndexString()); - command.setMusicFileTypes(settingsService.getMusicFileTypes()); - command.setVideoFileTypes(settingsService.getVideoFileTypes()); - command.setSortAlbumsByYear(settingsService.isSortAlbumsByYear()); - command.setGettingStartedEnabled(settingsService.isGettingStartedEnabled()); - command.setWelcomeTitle(settingsService.getWelcomeTitle()); - command.setWelcomeSubtitle(settingsService.getWelcomeSubtitle()); - command.setWelcomeMessage(settingsService.getWelcomeMessage()); - command.setLoginMessage(settingsService.getLoginMessage()); - - Theme[] themes = settingsService.getAvailableThemes(); - command.setThemes(themes); - String currentThemeId = settingsService.getThemeId(); - for (int i = 0; i < themes.length; i++) { - if (currentThemeId.equals(themes[i].getId())) { - command.setThemeIndex(String.valueOf(i)); - break; - } - } - - Locale currentLocale = settingsService.getLocale(); - Locale[] locales = settingsService.getAvailableLocales(); - String[] localeStrings = new String[locales.length]; - for (int i = 0; i < locales.length; i++) { - localeStrings[i] = locales[i].getDisplayName(locales[i]); - - if (currentLocale.equals(locales[i])) { - command.setLocaleIndex(String.valueOf(i)); - } - } - command.setLocales(localeStrings); - - return command; - - } - - protected void doSubmitAction(Object comm) throws Exception { - GeneralSettingsCommand command = (GeneralSettingsCommand) comm; - - int themeIndex = Integer.parseInt(command.getThemeIndex()); - Theme theme = settingsService.getAvailableThemes()[themeIndex]; - - int localeIndex = Integer.parseInt(command.getLocaleIndex()); - Locale locale = settingsService.getAvailableLocales()[localeIndex]; - - command.setReloadNeeded(!settingsService.getIndexString().equals(command.getIndex()) || - !settingsService.getIgnoredArticles().equals(command.getIgnoredArticles()) || - !settingsService.getShortcuts().equals(command.getShortcuts()) || - !settingsService.getThemeId().equals(theme.getId()) || - !settingsService.getLocale().equals(locale)); - - settingsService.setIndexString(command.getIndex()); - settingsService.setIgnoredArticles(command.getIgnoredArticles()); - settingsService.setShortcuts(command.getShortcuts()); - settingsService.setMusicFileTypes(command.getMusicFileTypes()); - settingsService.setVideoFileTypes(command.getVideoFileTypes()); - settingsService.setCoverArtFileTypes(command.getCoverArtFileTypes()); - settingsService.setSortAlbumsByYear(command.isSortAlbumsByYear()); - settingsService.setGettingStartedEnabled(command.isGettingStartedEnabled()); - settingsService.setWelcomeTitle(command.getWelcomeTitle()); - settingsService.setWelcomeSubtitle(command.getWelcomeSubtitle()); - settingsService.setWelcomeMessage(command.getWelcomeMessage()); - settingsService.setLoginMessage(command.getLoginMessage()); - settingsService.setThemeId(theme.getId()); - settingsService.setLocale(locale); - settingsService.save(); - } - - public void setSettingsService(SettingsService settingsService) { - this.settingsService = settingsService; - } -} -- cgit v1.2.3