aboutsummaryrefslogtreecommitdiff
path: root/subsonic-main/src/main/java/net/sourceforge/subsonic/controller/GeneralSettingsController.java
diff options
context:
space:
mode:
Diffstat (limited to 'subsonic-main/src/main/java/net/sourceforge/subsonic/controller/GeneralSettingsController.java')
-rw-r--r--subsonic-main/src/main/java/net/sourceforge/subsonic/controller/GeneralSettingsController.java114
1 files changed, 114 insertions, 0 deletions
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
new file mode 100644
index 00000000..e7b19b04
--- /dev/null
+++ b/subsonic-main/src/main/java/net/sourceforge/subsonic/controller/GeneralSettingsController.java
@@ -0,0 +1,114 @@
+/*
+ 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 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;
+ }
+}