/connect-web/src/main/java/org/osforce/connect/web/module/system/CategoryWidget.java

http://focus-sns.googlecode.com/ · Java · 100 lines · 81 code · 12 blank · 7 comment · 9 complexity · 6a22ef46de1b11bc399bc7e4adf3c1c4 MD5 · raw file

  1. package org.osforce.connect.web.module.system;
  2. import java.util.List;
  3. import java.util.Map;
  4. import java.util.TreeMap;
  5. import javax.validation.Valid;
  6. import org.osforce.connect.entity.system.ProjectCategory;
  7. import org.osforce.connect.service.system.ProjectCategoryService;
  8. import org.osforce.connect.web.AttributeKeys;
  9. import org.osforce.spring4me.dao.Page;
  10. import org.osforce.spring4me.web.stereotype.Widget;
  11. import org.springframework.beans.factory.annotation.Autowired;
  12. import org.springframework.ui.Model;
  13. import org.springframework.validation.BindingResult;
  14. import org.springframework.web.bind.annotation.ModelAttribute;
  15. import org.springframework.web.bind.annotation.RequestMapping;
  16. import org.springframework.web.bind.annotation.RequestMethod;
  17. import org.springframework.web.bind.annotation.RequestParam;
  18. /**
  19. *
  20. * @author <a href="mailto:haozhonghu@hotmail.com">gavin</a>
  21. * @since 1.1.0
  22. * @create May 18, 2011 - 9:33:50 PM
  23. * <a href="http://www.opensourceforce.org">????</a>
  24. */
  25. @Widget
  26. @RequestMapping("/system/category")
  27. public class CategoryWidget {
  28. private ProjectCategoryService categoryService;
  29. public CategoryWidget() {
  30. }
  31. @Autowired
  32. public void setCategoryService(ProjectCategoryService categoryService) {
  33. this.categoryService = categoryService;
  34. }
  35. @RequestMapping(value="/list-view", method=RequestMethod.GET)
  36. public String doListView(Page<ProjectCategory> page, @RequestParam Long siteId,
  37. @RequestParam(required=false) Long parentId, Model model) {
  38. if(parentId!=null) {
  39. ProjectCategory parent = categoryService.getProjectCategory(parentId);
  40. model.addAttribute(AttributeKeys.PARENT_KEY_READABLE, parent);
  41. }
  42. page = categoryService.getProjectCategoryPage(page, siteId, parentId);
  43. model.addAttribute(AttributeKeys.PAGE_KEY_READABLE, page);
  44. return "system/category-list";
  45. }
  46. @RequestMapping(value="/form-view")
  47. public String doFormView(@RequestParam(required=false) Long categoryId,
  48. @RequestParam(required=false) Long parentId, @RequestParam Long siteId,
  49. @ModelAttribute(AttributeKeys.PROJECT_CATEGORY_KEY_READABLE)
  50. @Valid ProjectCategory category, BindingResult result, Model model) {
  51. category.setSiteId(siteId);
  52. category.setParentId(parentId);
  53. if(parentId!=null) {
  54. List<ProjectCategory> categories = categoryService.getSiblingProjectCategoryList(siteId, parentId);
  55. model.addAttribute("categoryOptions", getCategoryOptions(categories));
  56. model.addAttribute(AttributeKeys.PROJECT_CATEGORY_LIST_KEY_READABLE, categories);
  57. } else if (categoryId!=null) {
  58. category = categoryService.getProjectCategory(categoryId);
  59. if(category.getParent()!=null) {
  60. List<ProjectCategory> categories = categoryService
  61. .getSiblingProjectCategoryList(siteId, category.getParentId());
  62. model.addAttribute("categoryOptions", getCategoryOptions(categories));
  63. model.addAttribute(AttributeKeys.PROJECT_CATEGORY_LIST_KEY_READABLE, categories);
  64. }
  65. }
  66. model.addAttribute(AttributeKeys.PROJECT_CATEGORY_KEY_READABLE, category);
  67. return "system/category-form";
  68. }
  69. @RequestMapping(value="/form-action", method=RequestMethod.POST)
  70. public String doFormAction(@Valid ProjectCategory category, BindingResult result) {
  71. if(result.hasErrors()) {
  72. return "page:/system/category-form";
  73. }
  74. if(category.getId()==null) {
  75. categoryService.createProjectCategory(category);
  76. } else {
  77. categoryService.updateProjectCategory(category);
  78. }
  79. return String.format("redirect:/system/category/list?siteId=%s", category.getSiteId());
  80. }
  81. private Map<String, String> getCategoryOptions(List<ProjectCategory> categories) {
  82. Map<String, String> categoryOptions = new TreeMap<String, String>();
  83. for(ProjectCategory tmp : categories) {
  84. categoryOptions.put(tmp.getId().toString(), tmp.getLabel());
  85. }
  86. return categoryOptions;
  87. }
  88. }