aboutsummaryrefslogtreecommitdiff
path: root/subsonic-main/src/main/java/net/sourceforge/subsonic/command/MusicFolderSettingsCommand.java
diff options
context:
space:
mode:
Diffstat (limited to 'subsonic-main/src/main/java/net/sourceforge/subsonic/command/MusicFolderSettingsCommand.java')
-rw-r--r--subsonic-main/src/main/java/net/sourceforge/subsonic/command/MusicFolderSettingsCommand.java187
1 files changed, 187 insertions, 0 deletions
diff --git a/subsonic-main/src/main/java/net/sourceforge/subsonic/command/MusicFolderSettingsCommand.java b/subsonic-main/src/main/java/net/sourceforge/subsonic/command/MusicFolderSettingsCommand.java
new file mode 100644
index 00000000..8fcfa72c
--- /dev/null
+++ b/subsonic-main/src/main/java/net/sourceforge/subsonic/command/MusicFolderSettingsCommand.java
@@ -0,0 +1,187 @@
+/*
+ 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.command;
+
+import java.io.File;
+import java.util.Date;
+import java.util.List;
+
+import net.sourceforge.subsonic.controller.MusicFolderSettingsController;
+import net.sourceforge.subsonic.domain.MusicFolder;
+import org.apache.commons.lang.StringUtils;
+
+/**
+ * Command used in {@link MusicFolderSettingsController}.
+ *
+ * @author Sindre Mehus
+ */
+public class MusicFolderSettingsCommand {
+
+ private String interval;
+ private String hour;
+ private boolean scanning;
+ private boolean fastCache;
+ private boolean organizeByFolderStructure;
+ private List<MusicFolderInfo> musicFolders;
+ private MusicFolderInfo newMusicFolder;
+ private boolean reload;
+
+ public String getInterval() {
+ return interval;
+ }
+
+ public void setInterval(String interval) {
+ this.interval = interval;
+ }
+
+ public String getHour() {
+ return hour;
+ }
+
+ public void setHour(String hour) {
+ this.hour = hour;
+ }
+
+ public boolean isScanning() {
+ return scanning;
+ }
+
+ public void setScanning(boolean scanning) {
+ this.scanning = scanning;
+ }
+
+ public boolean isFastCache() {
+ return fastCache;
+ }
+
+ public List<MusicFolderInfo> getMusicFolders() {
+ return musicFolders;
+ }
+
+ public void setMusicFolders(List<MusicFolderInfo> musicFolders) {
+ this.musicFolders = musicFolders;
+ }
+
+ public void setFastCache(boolean fastCache) {
+ this.fastCache = fastCache;
+ }
+
+ public MusicFolderInfo getNewMusicFolder() {
+ return newMusicFolder;
+ }
+
+ public void setNewMusicFolder(MusicFolderInfo newMusicFolder) {
+ this.newMusicFolder = newMusicFolder;
+ }
+
+ public void setReload(boolean reload) {
+ this.reload = reload;
+ }
+
+ public boolean isReload() {
+ return reload;
+ }
+
+ public boolean isOrganizeByFolderStructure() {
+ return organizeByFolderStructure;
+ }
+
+ public void setOrganizeByFolderStructure(boolean organizeByFolderStructure) {
+ this.organizeByFolderStructure = organizeByFolderStructure;
+ }
+
+ public static class MusicFolderInfo {
+
+ private Integer id;
+ private String path;
+ private String name;
+ private boolean enabled;
+ private boolean delete;
+ private boolean existing;
+
+ public MusicFolderInfo(MusicFolder musicFolder) {
+ id = musicFolder.getId();
+ path = musicFolder.getPath().getPath();
+ name = musicFolder.getName();
+ enabled = musicFolder.isEnabled();
+ existing = musicFolder.getPath().exists() && musicFolder.getPath().isDirectory();
+ }
+
+ public MusicFolderInfo() {
+ enabled = true;
+ }
+
+ public Integer getId() {
+ return id;
+ }
+
+ public void setId(Integer id) {
+ this.id = id;
+ }
+
+ public String getPath() {
+ return path;
+ }
+
+ public void setPath(String path) {
+ this.path = path;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public boolean isEnabled() {
+ return enabled;
+ }
+
+ public void setEnabled(boolean enabled) {
+ this.enabled = enabled;
+ }
+
+ public boolean isDelete() {
+ return delete;
+ }
+
+ public void setDelete(boolean delete) {
+ this.delete = delete;
+ }
+
+ public MusicFolder toMusicFolder() {
+ String path = StringUtils.trimToNull(this.path);
+ if (path == null) {
+ return null;
+ }
+ File file = new File(path);
+ String name = StringUtils.trimToNull(this.name);
+ if (name == null) {
+ name = file.getName();
+ }
+ return new MusicFolder(id, new File(path), name, enabled, new Date());
+ }
+
+ public boolean isExisting() {
+ return existing;
+ }
+ }
+} \ No newline at end of file