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

http://focus-sns.googlecode.com/ · Java · 143 lines · 117 code · 16 blank · 10 comment · 4 complexity · 96c630f1722475fbe70260f24c75c6f8 MD5 · raw file

  1. package org.osforce.connect.web.module.system;
  2. import java.util.List;
  3. import javax.validation.Valid;
  4. import org.osforce.connect.entity.commons.Template;
  5. import org.osforce.connect.entity.profile.Profile;
  6. import org.osforce.connect.entity.system.Project;
  7. import org.osforce.connect.entity.system.ProjectCategory;
  8. import org.osforce.connect.entity.system.ProjectFeature;
  9. import org.osforce.connect.entity.system.Role;
  10. import org.osforce.connect.entity.system.Site;
  11. import org.osforce.connect.entity.system.User;
  12. import org.osforce.connect.service.commons.TemplateService;
  13. import org.osforce.connect.service.profile.ProfileService;
  14. import org.osforce.connect.service.system.ProjectCategoryService;
  15. import org.osforce.connect.service.system.ProjectFeatureService;
  16. import org.osforce.connect.service.system.ProjectService;
  17. import org.osforce.connect.service.system.RoleService;
  18. import org.osforce.connect.web.AttributeKeys;
  19. import org.osforce.connect.web.module.util.ModuleUtil;
  20. import org.osforce.connect.web.security.annotation.Permission;
  21. import org.osforce.spring4me.web.bind.annotation.PrefParam;
  22. import org.osforce.spring4me.web.bind.annotation.RequestAttr;
  23. import org.osforce.spring4me.web.stereotype.Widget;
  24. import org.springframework.beans.factory.annotation.Autowired;
  25. import org.springframework.ui.Model;
  26. import org.springframework.validation.BindingResult;
  27. import org.springframework.web.bind.annotation.ModelAttribute;
  28. import org.springframework.web.bind.annotation.RequestMapping;
  29. import org.springframework.web.context.request.WebRequest;
  30. /**
  31. *
  32. * @author <a href="mailto:haozhonghu@hotmail.com">gavin</a>
  33. * @since 1.1.0
  34. * @create May 20, 2011 - 1:44:48 PM
  35. * <a href="http://www.opensourceforce.org">????</a>
  36. */
  37. @Widget
  38. @RequestMapping("/system/project")
  39. public class ProjectWidget {
  40. private RoleService roleService;
  41. private ProfileService profileService;
  42. private ProjectService projectService;
  43. private TemplateService templateService;
  44. private ProjectFeatureService featureService;
  45. private ProjectCategoryService categoryService;
  46. public ProjectWidget() {
  47. }
  48. @Autowired
  49. public void setRoleService(RoleService roleService) {
  50. this.roleService = roleService;
  51. }
  52. @Autowired
  53. public void setProfileService(ProfileService profileService) {
  54. this.profileService = profileService;
  55. }
  56. @Autowired
  57. public void setProjectService(ProjectService projectService) {
  58. this.projectService = projectService;
  59. }
  60. @Autowired
  61. public void setTemplateService(TemplateService templateService) {
  62. this.templateService = templateService;
  63. }
  64. @Autowired
  65. public void setFeatureService(ProjectFeatureService featureService) {
  66. this.featureService = featureService;
  67. }
  68. @Autowired
  69. public void setCategoryService(ProjectCategoryService categoryService) {
  70. this.categoryService = categoryService;
  71. }
  72. @RequestMapping("/title-view")
  73. @Permission(projectRequired=true)
  74. public String doTitleView(@RequestAttr Project project) {
  75. if(project==null) {
  76. return "commons/blank";
  77. }
  78. return "system/project-title";
  79. }
  80. @RequestMapping("/form-view")
  81. public String doProjectForm(@PrefParam String categoryCode,
  82. @PrefParam String templateCode, WebRequest request,
  83. @ModelAttribute @Valid Project project, BindingResult result,
  84. @RequestAttr Site site, @RequestAttr User user, Model model, Boolean showErrors) {
  85. if(!showErrors) {
  86. ProjectCategory category = categoryService.getProjectCategory(site, categoryCode);
  87. project.setCategory(category);
  88. project.setEnteredBy(user);
  89. project.setModifiedBy(user);
  90. //
  91. Template template = templateService.getTemplate(category.getId(), templateCode);
  92. List<ProjectFeature> modules = ModuleUtil.parseToModules(template.getContent());
  93. request.setAttribute(AttributeKeys.PROJECT_FEATURE_LIST_KEY_READABLE, modules, WebRequest.SCOPE_SESSION);
  94. model.addAttribute(AttributeKeys.PROJECT_KEY_READABLE, project);
  95. }
  96. return "system/project-form";
  97. }
  98. @SuppressWarnings("unchecked")
  99. @RequestMapping("/form-action")
  100. public String doProjectAction(WebRequest request,
  101. @ModelAttribute @Valid Project project, BindingResult result, Model model) {
  102. if(result.hasErrors()) {
  103. model.addAttribute(AttributeKeys.SHOW_ERRORS_KEY_READABLE, true);
  104. model.addAttribute(AttributeKeys.FEATURE_CODE_KEY_READABLE,ProjectFeature.FEATURE_ADMIN);
  105. return "page:project/form";
  106. }
  107. //
  108. List<ProjectFeature> features = (List<ProjectFeature>) request.getAttribute(
  109. AttributeKeys.PROJECT_FEATURE_LIST_KEY_READABLE, WebRequest.SCOPE_SESSION);
  110. projectService.createProject(project);
  111. for(ProjectFeature feature : features) {
  112. Role role = roleService.getRole(feature.getRoleCode(), project.getCategoryId());
  113. feature.setRole(role);
  114. feature.setProject(project);
  115. featureService.createProjectFeature(feature);
  116. }
  117. //
  118. Profile profile = new Profile();
  119. profile.setTitle(project.getTitle());
  120. profile.setProject(project);
  121. profile.setEnteredBy(project.getEnteredBy());
  122. profile.setModifiedBy(project.getModifiedBy());
  123. profile.setProject(project);
  124. profileService.createProfile(profile);
  125. return String.format("redirect:/%s/profile", project.getUniqueId());
  126. }
  127. }