/* This file is part of Airsonic. Airsonic 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. Airsonic 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 Airsonic. If not, see . Copyright 2016 (C) Airsonic Authors Based upon Subsonic, Copyright 2009 (C) Sindre Mehus */ package org.airsonic.player.controller; import org.airsonic.player.command.SearchCommand; import org.airsonic.player.domain.*; import org.airsonic.player.service.PlayerService; import org.airsonic.player.service.SearchService; import org.airsonic.player.service.SecurityService; import org.airsonic.player.service.SettingsService; 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.web.bind.annotation.ModelAttribute; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.util.List; /** * Controller for the search page. * * @author Sindre Mehus */ @Controller @RequestMapping("/search") public class SearchController { private static final int MATCH_COUNT = 25; @Autowired private SecurityService securityService; @Autowired private SettingsService settingsService; @Autowired private PlayerService playerService; @Autowired private SearchService searchService; @RequestMapping(method = RequestMethod.GET) protected String displayForm() throws Exception { return "search"; } @ModelAttribute protected void formBackingObject(HttpServletRequest request, Model model) throws Exception { model.addAttribute("command",new SearchCommand()); } @RequestMapping(method = RequestMethod.POST) protected String onSubmit(HttpServletRequest request, HttpServletResponse response,@ModelAttribute("command") SearchCommand command, Model model) throws Exception { User user = securityService.getCurrentUser(request); UserSettings userSettings = settingsService.getUserSettings(user.getUsername()); command.setUser(user); command.setPartyModeEnabled(userSettings.isPartyModeEnabled()); List musicFolders = settingsService.getMusicFoldersForUser(user.getUsername()); String query = StringUtils.trimToNull(command.getQuery()); if (query != null) { SearchCriteria criteria = new SearchCriteria(); criteria.setCount(MATCH_COUNT); criteria.setQuery(query); SearchResult artists = searchService.search(criteria, musicFolders, SearchService.IndexType.ARTIST); command.setArtists(artists.getMediaFiles()); SearchResult albums = searchService.search(criteria, musicFolders, SearchService.IndexType.ALBUM); command.setAlbums(albums.getMediaFiles()); SearchResult songs = searchService.search(criteria, musicFolders, SearchService.IndexType.SONG); command.setSongs(songs.getMediaFiles()); command.setPlayer(playerService.getPlayer(request, response)); } return "search"; } }