aboutsummaryrefslogtreecommitdiff
path: root/subsonic-main/src/main/java/net/sourceforge/subsonic/controller/MultiController.java
diff options
context:
space:
mode:
Diffstat (limited to 'subsonic-main/src/main/java/net/sourceforge/subsonic/controller/MultiController.java')
-rw-r--r--subsonic-main/src/main/java/net/sourceforge/subsonic/controller/MultiController.java244
1 files changed, 244 insertions, 0 deletions
diff --git a/subsonic-main/src/main/java/net/sourceforge/subsonic/controller/MultiController.java b/subsonic-main/src/main/java/net/sourceforge/subsonic/controller/MultiController.java
new file mode 100644
index 00000000..1d781565
--- /dev/null
+++ b/subsonic-main/src/main/java/net/sourceforge/subsonic/controller/MultiController.java
@@ -0,0 +1,244 @@
+/*
+ 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.Logger;
+import net.sourceforge.subsonic.domain.Playlist;
+import net.sourceforge.subsonic.domain.User;
+import net.sourceforge.subsonic.domain.UserSettings;
+import net.sourceforge.subsonic.service.PlaylistService;
+import net.sourceforge.subsonic.service.SecurityService;
+import net.sourceforge.subsonic.service.SettingsService;
+import net.sourceforge.subsonic.util.StringUtil;
+import org.apache.commons.lang.ObjectUtils;
+import org.apache.commons.lang.RandomStringUtils;
+import org.apache.commons.lang.StringUtils;
+import org.apache.http.NameValuePair;
+import org.apache.http.client.HttpClient;
+import org.apache.http.client.entity.UrlEncodedFormEntity;
+import org.apache.http.client.methods.HttpPost;
+import org.apache.http.impl.client.DefaultHttpClient;
+import org.apache.http.message.BasicNameValuePair;
+import org.apache.http.params.HttpConnectionParams;
+import org.springframework.web.bind.ServletRequestBindingException;
+import org.springframework.web.bind.ServletRequestUtils;
+import org.springframework.web.servlet.ModelAndView;
+import org.springframework.web.servlet.mvc.multiaction.MultiActionController;
+import org.springframework.web.servlet.view.RedirectView;
+
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import java.io.IOException;
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+/**
+ * Multi-controller used for simple pages.
+ *
+ * @author Sindre Mehus
+ */
+public class MultiController extends MultiActionController {
+
+ private static final Logger LOG = Logger.getLogger(MultiController.class);
+
+ private SecurityService securityService;
+ private SettingsService settingsService;
+ private PlaylistService playlistService;
+
+ public ModelAndView login(HttpServletRequest request, HttpServletResponse response) throws Exception {
+
+ // Auto-login if "user" and "password" parameters are given.
+ String username = request.getParameter("user");
+ String password = request.getParameter("password");
+ if (username != null && password != null) {
+ username = StringUtil.urlEncode(username);
+ password = StringUtil.urlEncode(password);
+ return new ModelAndView(new RedirectView("j_acegi_security_check?j_username=" + username +
+ "&j_password=" + password + "&_acegi_security_remember_me=checked"));
+ }
+
+ Map<String, Object> map = new HashMap<String, Object>();
+ map.put("logout", request.getParameter("logout") != null);
+ map.put("error", request.getParameter("error") != null);
+ map.put("brand", settingsService.getBrand());
+ map.put("loginMessage", settingsService.getLoginMessage());
+
+ User admin = securityService.getUserByName(User.USERNAME_ADMIN);
+ if (User.USERNAME_ADMIN.equals(admin.getPassword())) {
+ map.put("insecure", true);
+ }
+
+ return new ModelAndView("login", "model", map);
+ }
+
+ public ModelAndView recover(HttpServletRequest request, HttpServletResponse response) throws Exception {
+
+ Map<String, Object> map = new HashMap<String, Object>();
+ String usernameOrEmail = StringUtils.trimToNull(request.getParameter("usernameOrEmail"));
+
+ if (usernameOrEmail != null) {
+ User user = getUserByUsernameOrEmail(usernameOrEmail);
+ if (user == null) {
+ map.put("error", "recover.error.usernotfound");
+ } else if (user.getEmail() == null) {
+ map.put("error", "recover.error.noemail");
+ } else {
+ String password = RandomStringUtils.randomAlphanumeric(8);
+ if (emailPassword(password, user.getUsername(), user.getEmail())) {
+ map.put("sentTo", user.getEmail());
+ user.setLdapAuthenticated(false);
+ user.setPassword(password);
+ securityService.updateUser(user);
+ } else {
+ map.put("error", "recover.error.sendfailed");
+ }
+ }
+ }
+
+ return new ModelAndView("recover", "model", map);
+ }
+
+ private boolean emailPassword(String password, String username, String email) {
+ HttpClient client = new DefaultHttpClient();
+ try {
+ HttpConnectionParams.setConnectionTimeout(client.getParams(), 10000);
+ HttpConnectionParams.setSoTimeout(client.getParams(), 10000);
+ HttpPost method = new HttpPost("http://subsonic.org/backend/sendMail.view");
+
+ List<NameValuePair> params = new ArrayList<NameValuePair>();
+ params.add(new BasicNameValuePair("from", "noreply@subsonic.org"));
+ params.add(new BasicNameValuePair("to", email));
+ params.add(new BasicNameValuePair("subject", "Subsonic Password"));
+ params.add(new BasicNameValuePair("text",
+ "Hi there!\n\n" +
+ "You have requested to reset your Subsonic password. Please find your new login details below.\n\n" +
+ "Username: " + username + "\n" +
+ "Password: " + password + "\n\n" +
+ "--\n" +
+ "The Subsonic Team\n" +
+ "subsonic.org"));
+ method.setEntity(new UrlEncodedFormEntity(params, StringUtil.ENCODING_UTF8));
+ client.execute(method);
+ return true;
+ } catch (Exception x) {
+ LOG.warn("Failed to send email.", x);
+ return false;
+ } finally {
+ client.getConnectionManager().shutdown();
+ }
+ }
+
+ private User getUserByUsernameOrEmail(String usernameOrEmail) {
+ if (usernameOrEmail != null) {
+ User user = securityService.getUserByName(usernameOrEmail);
+ if (user != null) {
+ return user;
+ }
+ return securityService.getUserByEmail(usernameOrEmail);
+ }
+ return null;
+ }
+
+ public ModelAndView accessDenied(HttpServletRequest request, HttpServletResponse response) {
+ return new ModelAndView("accessDenied");
+ }
+
+ public ModelAndView notFound(HttpServletRequest request, HttpServletResponse response) {
+ return new ModelAndView("notFound");
+ }
+
+ public ModelAndView gettingStarted(HttpServletRequest request, HttpServletResponse response) {
+ updatePortAndContextPath(request);
+
+ if (request.getParameter("hide") != null) {
+ settingsService.setGettingStartedEnabled(false);
+ settingsService.save();
+ return new ModelAndView(new RedirectView("home.view"));
+ }
+
+ Map<String, Object> map = new HashMap<String, Object>();
+ map.put("runningAsRoot", "root".equals(System.getProperty("user.name")));
+ return new ModelAndView("gettingStarted", "model", map);
+ }
+
+ public ModelAndView index(HttpServletRequest request, HttpServletResponse response) {
+ updatePortAndContextPath(request);
+ UserSettings userSettings = settingsService.getUserSettings(securityService.getCurrentUsername(request));
+
+ Map<String, Object> map = new HashMap<String, Object>();
+ map.put("showRight", userSettings.isShowNowPlayingEnabled() || userSettings.isShowChatEnabled());
+ map.put("brand", settingsService.getBrand());
+ return new ModelAndView("index", "model", map);
+ }
+
+ public ModelAndView exportPlaylist(HttpServletRequest request, HttpServletResponse response) throws Exception {
+
+ int id = ServletRequestUtils.getRequiredIntParameter(request, "id");
+ Playlist playlist = playlistService.getPlaylist(id);
+ if (!playlistService.isReadAllowed(playlist, securityService.getCurrentUsername(request))) {
+ response.sendError(HttpServletResponse.SC_FORBIDDEN);
+ return null;
+
+ }
+ response.setContentType("application/x-download");
+ response.setHeader("Content-Disposition", "attachment; filename=\"" + StringUtil.fileSystemSafe(playlist.getName()) + ".m3u8\"");
+
+ playlistService.exportPlaylist(id, response.getOutputStream());
+ return null;
+ }
+
+ private void updatePortAndContextPath(HttpServletRequest request) {
+
+ int port = Integer.parseInt(System.getProperty("subsonic.port", String.valueOf(request.getLocalPort())));
+ int httpsPort = Integer.parseInt(System.getProperty("subsonic.httpsPort", "0"));
+
+ String contextPath = request.getContextPath().replace("/", "");
+
+ if (settingsService.getPort() != port) {
+ settingsService.setPort(port);
+ settingsService.save();
+ }
+ if (settingsService.getHttpsPort() != httpsPort) {
+ settingsService.setHttpsPort(httpsPort);
+ settingsService.save();
+ }
+ if (!ObjectUtils.equals(settingsService.getUrlRedirectContextPath(), contextPath)) {
+ settingsService.setUrlRedirectContextPath(contextPath);
+ settingsService.save();
+ }
+ }
+
+ public ModelAndView test(HttpServletRequest request, HttpServletResponse response) {
+ return new ModelAndView("test");
+ }
+
+ public void setSecurityService(SecurityService securityService) {
+ this.securityService = securityService;
+ }
+
+ public void setSettingsService(SettingsService settingsService) {
+ this.settingsService = settingsService;
+ }
+
+ public void setPlaylistService(PlaylistService playlistService) {
+ this.playlistService = playlistService;
+ }
+} \ No newline at end of file