/connect-web/src/main/java/org/osforce/connect/web/module/blog/PostCategoryWidget.java

http://focus-sns.googlecode.com/ · Java · 91 lines · 72 code · 11 blank · 8 comment · 6 complexity · 77710638dae411685fb7ae318c81fd3f MD5 · raw file

  1. package org.osforce.connect.web.module.blog;
  2. import java.util.List;
  3. import javax.validation.Valid;
  4. import org.osforce.connect.entity.blog.PostCategory;
  5. import org.osforce.connect.entity.system.Project;
  6. import org.osforce.connect.entity.system.ProjectFeature;
  7. import org.osforce.connect.web.security.annotation.Permission;
  8. import org.osforce.connect.service.blog.PostCategoryService;
  9. import org.osforce.connect.web.AttributeKeys;
  10. import org.osforce.spring4me.web.bind.annotation.RequestAttr;
  11. import org.osforce.spring4me.web.stereotype.Widget;
  12. import org.springframework.beans.factory.annotation.Autowired;
  13. import org.springframework.ui.Model;
  14. import org.springframework.validation.BindingResult;
  15. import org.springframework.web.bind.annotation.ModelAttribute;
  16. import org.springframework.web.bind.annotation.RequestMapping;
  17. import org.springframework.web.bind.annotation.RequestMethod;
  18. import org.springframework.web.bind.annotation.RequestParam;
  19. /**
  20. *
  21. * @author <a href="mailto:haozhonghu@hotmail.com">gavin</a>
  22. * @since 0.1.0
  23. * @create May 22, 2011 - 6:56:12 PM
  24. * <a href="http://www.opensourceforce.org">????</a>
  25. */
  26. @Widget
  27. @RequestMapping("/blog/category")
  28. public class PostCategoryWidget {
  29. private PostCategoryService postCategoryService;
  30. public PostCategoryWidget() {
  31. }
  32. @Autowired
  33. public void setPostCategoryService(PostCategoryService postCategoryService) {
  34. this.postCategoryService = postCategoryService;
  35. }
  36. @RequestMapping("/list-view")
  37. @Permission({"post-category-detail-view"})
  38. public String doListView(@RequestAttr Project project, Model model) {
  39. List<PostCategory> categories = postCategoryService.getBlogCategoryList(project);
  40. if(categories.size()==0) {
  41. return "commons/blank";
  42. }
  43. model.addAttribute(AttributeKeys.BLOG_CATEGORY_LIST_KEY_READABLE, categories);
  44. return "blog/category-list";
  45. }
  46. @RequestMapping("/form-view")
  47. @Permission(value={"post-category-detail-add", "post-category-detail-edit"}, userRequired=true, projectRequired=true)
  48. public String doFormView(
  49. @RequestParam(required=false) Long categoryId,
  50. @RequestAttr Project project, Model model, Boolean showErrors,
  51. @ModelAttribute("category") @Valid PostCategory category, BindingResult result) {
  52. if(!showErrors) {
  53. category.setProjectId(project.getId());
  54. if(categoryId!=null) {
  55. category = postCategoryService.getBlogCategory(categoryId);
  56. }
  57. model.addAttribute(AttributeKeys.BLOG_CATEGORY_KEY_READABLE, category);
  58. }
  59. return "blog/category-form";
  60. }
  61. @RequestMapping(value="/form-action", method=RequestMethod.POST)
  62. @Permission(value={"post-category-detail-add", "post-category-detail-edit"}, userRequired=true, projectRequired=true)
  63. public String doFormAction(
  64. @ModelAttribute("category") @Valid PostCategory category,
  65. BindingResult result, @RequestAttr Project project, Model model) {
  66. if(result.hasErrors()) {
  67. model.addAttribute(AttributeKeys.SHOW_ERRORS_KEY_READABLE, true);
  68. model.addAttribute(AttributeKeys.FEATURE_CODE_KEY_READABLE, ProjectFeature.FEATURE_BLOG);
  69. return "page:/blog/category-form";
  70. }
  71. //
  72. if(category.getId()==null) {
  73. postCategoryService.createBlogCategory(category);
  74. } else {
  75. postCategoryService.updateBlogCategory(category);
  76. }
  77. return String.format("redirect:/%s/blog/category/form?categoryId=%s",
  78. category.getProject().getUniqueId(), category.getId());
  79. }
  80. }