Remove trunk directory

This commit is contained in:
Paulo Gustavo Veiga
2009-11-06 23:30:29 -02:00
parent 2494133fed
commit 75470a91fd
715 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,99 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* $Id: file 64488 2006-03-10 17:32:09Z paulo $
*/
package com.wisemapping.controller;
import com.wisemapping.model.MindMap;
import com.wisemapping.model.MindMapCriteria;
import com.wisemapping.security.Utils;
import com.wisemapping.view.MindMapBean;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.multiaction.NoSuchRequestHandlingMethodException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class SearchController extends BaseMultiActionController {
private static final int MAX_RESULT = 20;
public ModelAndView handleNoSuchRequestHandlingMethod(NoSuchRequestHandlingMethodException noSuchRequestHandlingMethodException, HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws Exception {
return searchPage(httpServletRequest, httpServletResponse);
}
public ModelAndView searchPage(HttpServletRequest request, HttpServletResponse response) {
logger.info("Search");
return new ModelAndView("search");
}
public ModelAndView showAll(HttpServletRequest request, HttpServletResponse response)
{
final Map<String, Object> viewAttrMap = getRequestAttributes(request);
viewAttrMap.put("emptyCriteria", false);
com.wisemapping.model.User user = Utils.getUser();
viewAttrMap.put("user",user);
final List<MindMap> searchResult = getMindmapService().getPublicMaps(MAX_RESULT);
final List<MindMapBean> result = new ArrayList<MindMapBean>();
for (MindMap mindMap : searchResult) {
result.add(new MindMapBean(mindMap));
}
viewAttrMap.put("wisemapsList", result);
return new ModelAndView("searchResult", viewAttrMap);
}
public ModelAndView search(HttpServletRequest request, HttpServletResponse response) {
logger.info("Search Result");
final Map<String, Object> viewAttrMap = getRequestAttributes(request);
final MindMapCriteria criteria = getMindMapCriteriaFromRequest(request);
viewAttrMap.put("emptyCriteria", criteria.isEmpty());
com.wisemapping.model.User user = Utils.getUser();
viewAttrMap.put("user",user);
if (!criteria.isEmpty()) {
final List<MindMap> searchResult = getMindmapService().search(criteria);
final List<MindMapBean> result = new ArrayList<MindMapBean>();
for (MindMap mindMap : searchResult) {
result.add(new MindMapBean(mindMap));
}
viewAttrMap.put("wisemapsList", result);
}
return new ModelAndView("searchResult", viewAttrMap);
}
private Map<String, Object> getRequestAttributes(HttpServletRequest request) {
final Map<String, Object> viewAttrMap = new HashMap<String, Object>();
viewAttrMap.put("titleOrTags", request.getParameter("titleOrTags"));
final String name = request.getParameter("name");
viewAttrMap.put("name", name);
viewAttrMap.put("description", request.getParameter("description"));
viewAttrMap.put("tags", request.getParameter("tags"));
viewAttrMap.put("advanceSearch", request.getParameter("advanceSearch"));
return viewAttrMap;
}
}