Migration of SearchController + unit test.
This commit is contained in:
+1
-1
@@ -60,7 +60,7 @@ public class PlayerSettingsController {
|
|||||||
private TranscodingService transcodingService;
|
private TranscodingService transcodingService;
|
||||||
|
|
||||||
@RequestMapping(method = RequestMethod.GET)
|
@RequestMapping(method = RequestMethod.GET)
|
||||||
protected Object formBackingObject(HttpServletRequest request, Model model) throws Exception {
|
protected String formBackingObject(HttpServletRequest request, Model model) throws Exception {
|
||||||
|
|
||||||
handleRequestParameters(request);
|
handleRequestParameters(request);
|
||||||
List<Player> players = getPlayers(request);
|
List<Player> players = getPlayers(request);
|
||||||
|
|||||||
+20
-23
@@ -25,7 +25,12 @@ import javax.servlet.http.HttpServletRequest;
|
|||||||
import javax.servlet.http.HttpServletResponse;
|
import javax.servlet.http.HttpServletResponse;
|
||||||
|
|
||||||
import org.apache.commons.lang.StringUtils;
|
import org.apache.commons.lang.StringUtils;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.stereotype.Controller;
|
||||||
|
import org.springframework.ui.Model;
|
||||||
import org.springframework.validation.BindException;
|
import org.springframework.validation.BindException;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMethod;
|
||||||
import org.springframework.web.servlet.ModelAndView;
|
import org.springframework.web.servlet.ModelAndView;
|
||||||
import org.springframework.web.servlet.mvc.SimpleFormController;
|
import org.springframework.web.servlet.mvc.SimpleFormController;
|
||||||
|
|
||||||
@@ -45,24 +50,30 @@ import org.libresonic.player.service.SettingsService;
|
|||||||
*
|
*
|
||||||
* @author Sindre Mehus
|
* @author Sindre Mehus
|
||||||
*/
|
*/
|
||||||
public class SearchController extends SimpleFormController {
|
@Controller
|
||||||
|
@RequestMapping("/search")
|
||||||
|
public class SearchController {
|
||||||
|
|
||||||
private static final int MATCH_COUNT = 25;
|
private static final int MATCH_COUNT = 25;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
private SecurityService securityService;
|
private SecurityService securityService;
|
||||||
|
@Autowired
|
||||||
private SettingsService settingsService;
|
private SettingsService settingsService;
|
||||||
|
@Autowired
|
||||||
private PlayerService playerService;
|
private PlayerService playerService;
|
||||||
|
@Autowired
|
||||||
private SearchService searchService;
|
private SearchService searchService;
|
||||||
|
|
||||||
@Override
|
@RequestMapping(method = RequestMethod.GET)
|
||||||
protected Object formBackingObject(HttpServletRequest request) throws Exception {
|
protected String formBackingObject(HttpServletRequest request, Model model) throws Exception {
|
||||||
return new SearchCommand();
|
model.addAttribute("command",new SearchCommand());
|
||||||
|
return "search";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@RequestMapping(method = RequestMethod.POST)
|
||||||
protected ModelAndView onSubmit(HttpServletRequest request, HttpServletResponse response, Object com, BindException errors)
|
protected String onSubmit(HttpServletRequest request, HttpServletResponse response, SearchCommand command, Model model)
|
||||||
throws Exception {
|
throws Exception {
|
||||||
SearchCommand command = (SearchCommand) com;
|
|
||||||
|
|
||||||
User user = securityService.getCurrentUser(request);
|
User user = securityService.getCurrentUser(request);
|
||||||
UserSettings userSettings = settingsService.getUserSettings(user.getUsername());
|
UserSettings userSettings = settingsService.getUserSettings(user.getUsername());
|
||||||
@@ -90,22 +101,8 @@ public class SearchController extends SimpleFormController {
|
|||||||
command.setPlayer(playerService.getPlayer(request, response));
|
command.setPlayer(playerService.getPlayer(request, response));
|
||||||
}
|
}
|
||||||
|
|
||||||
return new ModelAndView(getSuccessView(), errors.getModel());
|
model.addAttribute("command",command);
|
||||||
|
return "search";
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setSecurityService(SecurityService securityService) {
|
|
||||||
this.securityService = securityService;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSettingsService(SettingsService settingsService) {
|
|
||||||
this.settingsService = settingsService;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPlayerService(PlayerService playerService) {
|
|
||||||
this.playerService = playerService;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSearchService(SearchService searchService) {
|
|
||||||
this.searchService = searchService;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -161,15 +161,6 @@
|
|||||||
<property name="mediaFileDao" ref="mediaFileDao"/>
|
<property name="mediaFileDao" ref="mediaFileDao"/>
|
||||||
<property name="mediaFileService" ref="mediaFileService"/>
|
<property name="mediaFileService" ref="mediaFileService"/>
|
||||||
</bean>
|
</bean>
|
||||||
<bean id="searchController" class="org.libresonic.player.controller.SearchController">
|
|
||||||
<property name="commandClass" value="org.libresonic.player.command.SearchCommand"/>
|
|
||||||
<property name="successView" value="search"/>
|
|
||||||
<property name="formView" value="search"/>
|
|
||||||
<property name="searchService" ref="searchService"/>
|
|
||||||
<property name="securityService" ref="securityService"/>
|
|
||||||
<property name="settingsService" ref="settingsService"/>
|
|
||||||
<property name="playerService" ref="playerService"/>
|
|
||||||
</bean>
|
|
||||||
<bean id="settingsController" class="org.libresonic.player.controller.SettingsController">
|
<bean id="settingsController" class="org.libresonic.player.controller.SettingsController">
|
||||||
<property name="securityService" ref="securityService"/>
|
<property name="securityService" ref="securityService"/>
|
||||||
</bean>
|
</bean>
|
||||||
@@ -413,7 +404,6 @@
|
|||||||
<prop key="/videoPlayer.view">videoPlayerController</prop>
|
<prop key="/videoPlayer.view">videoPlayerController</prop>
|
||||||
<prop key="/nowPlaying.view">nowPlayingController</prop>
|
<prop key="/nowPlaying.view">nowPlayingController</prop>
|
||||||
<prop key="/starred.view">starredController</prop>
|
<prop key="/starred.view">starredController</prop>
|
||||||
<prop key="/search.view">searchController</prop>
|
|
||||||
<prop key="/settings.view">settingsController</prop>
|
<prop key="/settings.view">settingsController</prop>
|
||||||
<prop key="/dlnaSettings.view">dlnaSettingsController</prop>
|
<prop key="/dlnaSettings.view">dlnaSettingsController</prop>
|
||||||
<prop key="/sonosSettings.view">sonosSettingsController</prop>
|
<prop key="/sonosSettings.view">sonosSettingsController</prop>
|
||||||
|
|||||||
Reference in New Issue
Block a user