/connect-web/src/main/java/org/osforce/connect/web/module/profile/ProfileWidget.java

http://focus-sns.googlecode.com/ · Java · 105 lines · 85 code · 12 blank · 8 comment · 6 complexity · 3b7f1f4a970e4b9c7cc7eb44d7e2a066 MD5 · raw file

  1. package org.osforce.connect.web.module.profile;
  2. import javax.validation.Valid;
  3. import org.apache.commons.lang.StringUtils;
  4. import org.osforce.connect.entity.profile.Profile;
  5. import org.osforce.connect.entity.system.Project;
  6. import org.osforce.connect.entity.system.ProjectCategory;
  7. import org.osforce.connect.entity.system.ProjectFeature;
  8. import org.osforce.connect.entity.system.Site;
  9. import org.osforce.connect.entity.system.User;
  10. import org.osforce.connect.service.profile.ProfileService;
  11. import org.osforce.connect.service.system.ProjectCategoryService;
  12. import org.osforce.connect.web.AttributeKeys;
  13. import org.osforce.connect.web.security.annotation.Permission;
  14. import org.osforce.spring4me.dao.Page;
  15. import org.osforce.spring4me.web.bind.annotation.PrefParam;
  16. import org.osforce.spring4me.web.bind.annotation.RequestAttr;
  17. import org.osforce.spring4me.web.stereotype.Widget;
  18. import org.springframework.beans.factory.annotation.Autowired;
  19. import org.springframework.ui.Model;
  20. import org.springframework.validation.BindingResult;
  21. import org.springframework.web.bind.annotation.ModelAttribute;
  22. import org.springframework.web.bind.annotation.RequestMapping;
  23. import org.springframework.web.bind.annotation.RequestParam;
  24. import org.springframework.web.context.request.WebRequest;
  25. /**
  26. *
  27. * @author <a href="mailto:haozhonghu@hotmail.com">gavin</a>
  28. * @since 1.1.0
  29. * @create May 19, 2011 - 10:01:32 PM
  30. * <a href="http://www.opensourceforce.org">????</a>
  31. */
  32. @Widget
  33. @RequestMapping("/profile/profile")
  34. public class ProfileWidget {
  35. private ProfileService profileService;
  36. private ProjectCategoryService categoryService;
  37. public ProfileWidget() {
  38. }
  39. @Autowired
  40. public void setProfileService(ProfileService profileService) {
  41. this.profileService = profileService;
  42. }
  43. @Autowired
  44. public void setCategoryService(ProjectCategoryService categoryService) {
  45. this.categoryService = categoryService;
  46. }
  47. @RequestMapping("/list-view")
  48. public String doListView(@PrefParam String categoryCode,
  49. @RequestAttr User user, @RequestAttr Site site,
  50. Page<Profile> page, Model model, WebRequest request) {
  51. String mode = (String) request.getAttribute("mode", WebRequest.SCOPE_REQUEST);
  52. ProjectCategory category = categoryService.getProjectCategory(site, categoryCode);
  53. if(StringUtils.isBlank(mode) && user!=null) {
  54. page = profileService.getProfilePage(page, user, category.getId());
  55. } else {
  56. page = profileService.getProfilePage(page, category.getId());
  57. }
  58. model.addAttribute(AttributeKeys.PAGE_KEY_READABLE, page);
  59. return "profile/profile-list";
  60. }
  61. @RequestMapping("/detail-view")
  62. @Permission({"profile-view"})
  63. public String doDetailView(@RequestAttr Project project, Model model) {
  64. Profile profile = project.getProfile();
  65. model.addAttribute(AttributeKeys.PROFILE_KEY_READABLE, profile);
  66. return "profile/profile-detail";
  67. }
  68. @RequestMapping("/form-view")
  69. @Permission({"profile-add", "profile-edit"})
  70. public String doFormView(@RequestParam(required=false) Long profileId,
  71. @ModelAttribute @Valid Profile profile, BindingResult result, Model model) {
  72. if(profileId==null) {
  73. model.addAttribute(AttributeKeys.PROFILE_KEY_READABLE, profile);
  74. } else {
  75. profile = profileService.getProfile(profileId);
  76. model.addAttribute(AttributeKeys.PROFILE_KEY_READABLE, profile);
  77. }
  78. return "profile/profile-form";
  79. }
  80. @RequestMapping("/form-action")
  81. @Permission({"profile-add", "profile-edit"})
  82. public String doFormAction(
  83. @ModelAttribute @Valid Profile profile, BindingResult result, Model model) {
  84. if(result.hasErrors()) {
  85. model.addAttribute(AttributeKeys.SHOW_ERRORS_KEY_READABLE, true);
  86. model.addAttribute(AttributeKeys.FEATURE_CODE_KEY_READABLE, ProjectFeature.FEATURE_PROFILE);
  87. return "page:/profile/profile-form";
  88. }
  89. //
  90. profileService.updateProfile(profile);
  91. return String.format("redirect:/%s/profile", profile.getProject().getUniqueId());
  92. }
  93. }