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

http://focus-sns.googlecode.com/ · Java · 96 lines · 75 code · 13 blank · 8 comment · 5 complexity · 95dc5b09c2ad43870e888ed560a98cf6 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.entity.system.Role;
  8. import org.osforce.connect.service.system.ProjectCategoryService;
  9. import org.osforce.connect.service.system.RoleService;
  10. import org.osforce.connect.web.AttributeKeys;
  11. import org.osforce.spring4me.dao.Page;
  12. import org.osforce.spring4me.web.stereotype.Widget;
  13. import org.springframework.beans.factory.annotation.Autowired;
  14. import org.springframework.ui.Model;
  15. import org.springframework.validation.BindingResult;
  16. import org.springframework.web.bind.annotation.ModelAttribute;
  17. import org.springframework.web.bind.annotation.RequestMapping;
  18. import org.springframework.web.bind.annotation.RequestMethod;
  19. import org.springframework.web.bind.annotation.RequestParam;
  20. /**
  21. *
  22. * @author <a href="mailto:haozhonghu@hotmail.com">gavin</a>
  23. * @since 0.1.0
  24. * @create May 19, 2011 - 10:39:32 AM
  25. * <a href="http://www.opensourceforce.org">????</a>
  26. */
  27. @Widget
  28. @RequestMapping("/system/role")
  29. public class RoleWidget {
  30. private RoleService roleService;
  31. private ProjectCategoryService categoryService;
  32. public RoleWidget() {
  33. }
  34. @Autowired
  35. public void setRoleService(RoleService roleService) {
  36. this.roleService = roleService;
  37. }
  38. @Autowired
  39. public void setCategoryService(ProjectCategoryService categoryService) {
  40. this.categoryService = categoryService;
  41. }
  42. @RequestMapping("/list-view")
  43. public String doListView(@RequestParam Long siteId,
  44. Page<Role> page, Model model) {
  45. page = roleService.getRolePage(page, siteId);
  46. model.addAttribute(AttributeKeys.PAGE_KEY_READABLE, page);
  47. return "system/role-list";
  48. }
  49. @RequestMapping("/form-view")
  50. public String doFormView(@RequestParam(required=false) Long roleId,
  51. @RequestParam(required=false) Long siteId,
  52. @ModelAttribute @Valid Role role, BindingResult result, Model model) {
  53. if(roleId!=null) {
  54. role = roleService.getRole(roleId);
  55. siteId = role.getCategory().getSite().getId();
  56. }
  57. List<ProjectCategory> categories = categoryService.getProjectCategoryList(siteId);
  58. model.addAttribute("categoryOptions", generateCategoryOptions(categories));
  59. model.addAttribute(AttributeKeys.ROLE_KEY_READABLE, role);
  60. model.addAttribute("categories", categories);
  61. return "system/role-form";
  62. }
  63. @RequestMapping(value="/form-action", method=RequestMethod.POST)
  64. public String doFormAction(@Valid Role role, BindingResult result) {
  65. if(result.hasErrors()) {
  66. return "page:/system/role-form";
  67. }
  68. //
  69. if(role.getId()==null) {
  70. roleService.createRole(role);
  71. } else {
  72. roleService.updateRole(role);
  73. }
  74. return String.format("redirect:/system/role/list?siteId=%s", role.getCategory().getSiteId());
  75. }
  76. private Map<String, String> generateCategoryOptions(List<ProjectCategory> categories) {
  77. Map<String, String> categoryOptions = new TreeMap<String, String>();
  78. for(ProjectCategory category : categories) {
  79. categoryOptions.put(category.getId().toString(), category.getLabel());
  80. }
  81. return categoryOptions;
  82. }
  83. }