/connect-web/src/main/java/org/osforce/connect/web/module/discussion/ReplyWidget.java

http://focus-sns.googlecode.com/ · Java · 104 lines · 85 code · 11 blank · 8 comment · 6 complexity · 4a1f061ac1a1ae8865637bbd5ba27aae MD5 · raw file

  1. package org.osforce.connect.web.module.discussion;
  2. import javax.validation.Valid;
  3. import org.osforce.connect.entity.discussion.Reply;
  4. import org.osforce.connect.entity.discussion.Topic;
  5. import org.osforce.connect.entity.system.Project;
  6. import org.osforce.connect.entity.system.ProjectFeature;
  7. import org.osforce.connect.entity.system.User;
  8. import org.osforce.connect.service.discussion.ReplyService;
  9. import org.osforce.connect.service.discussion.TopicService;
  10. import org.osforce.connect.web.AttributeKeys;
  11. import org.osforce.connect.web.security.annotation.Permission;
  12. import org.osforce.spring4me.dao.Page;
  13. import org.osforce.spring4me.web.bind.annotation.RequestAttr;
  14. import org.osforce.spring4me.web.stereotype.Widget;
  15. import org.springframework.beans.factory.annotation.Autowired;
  16. import org.springframework.ui.Model;
  17. import org.springframework.validation.BindingResult;
  18. import org.springframework.web.bind.annotation.ModelAttribute;
  19. import org.springframework.web.bind.annotation.RequestMapping;
  20. import org.springframework.web.bind.annotation.RequestMethod;
  21. import org.springframework.web.bind.annotation.RequestParam;
  22. /**
  23. *
  24. * @author <a href="mailto:haozhonghu@hotmail.com">gavin</a>
  25. * @since 0.1.0
  26. * @create May 21, 2011 - 12:07:22 PM
  27. * <a href="http://www.opensourceforce.org">????</a>
  28. */
  29. @Widget
  30. @RequestMapping("/discussion/reply")
  31. public class ReplyWidget {
  32. private ReplyService replyService;
  33. private TopicService topicService;
  34. public ReplyWidget() {
  35. }
  36. @Autowired
  37. public void setReplyService(ReplyService replyService) {
  38. this.replyService = replyService;
  39. }
  40. @Autowired
  41. public void setTopicService(TopicService topicService) {
  42. this.topicService = topicService;
  43. }
  44. @RequestMapping("/list-view")
  45. @Permission({"reply-view"})
  46. public String doListView(@RequestParam Long topicId, Page<Reply> page, Model model) {
  47. Topic topic = topicService.viewTopic(topicId);
  48. page = replyService.getReplyPage(page, topicId);
  49. if(page.getResult().isEmpty()) {
  50. return "commons/blank";
  51. }
  52. model.addAttribute(AttributeKeys.TOPIC_KEY_READABLE, topic);
  53. model.addAttribute(AttributeKeys.PAGE_KEY_READABLE, page);
  54. return "discussion/reply-list";
  55. }
  56. @RequestMapping("/form-view")
  57. @Permission(value={"reply-add", "reply-edit"}, userRequired=true)
  58. public String doFormView(@RequestParam Long topicId,
  59. @RequestParam(required=false) Long replyId,
  60. @ModelAttribute @Valid Reply reply, BindingResult result,
  61. @RequestAttr User user, Model model, Boolean showErrors) {
  62. if(!showErrors) {
  63. reply.setEnteredBy(user);
  64. reply.setModifiedBy(user);
  65. reply.setTopicId(topicId);
  66. if(replyId!=null) {
  67. reply = replyService.getReply(replyId);
  68. }
  69. model.addAttribute(AttributeKeys.REPLY_KEY_READABLE, reply);
  70. }
  71. Topic topic = topicService.getTopic(topicId);
  72. model.addAttribute(AttributeKeys.TOPIC_KEY_READABLE, topic);
  73. return "discussion/reply-form";
  74. }
  75. @RequestMapping(value="/form-action", method=RequestMethod.POST)
  76. @Permission(value={"reply-add", "reply-edit"}, userRequired=true, projectRequired=true)
  77. public String doFormAction(@ModelAttribute @Valid Reply reply,
  78. BindingResult result, Model model, @RequestAttr Project project) {
  79. if(result.hasErrors()) {
  80. model.addAttribute(AttributeKeys.SHOW_ERRORS_KEY_READABLE, true);
  81. model.addAttribute(AttributeKeys.FEATURE_CODE_KEY_READABLE, ProjectFeature.FEATURE_DISCUSSION);
  82. return "page:/discussion/reply-list";
  83. }
  84. //
  85. if(reply.getId()==null) {
  86. replyService.createReply(reply);
  87. } else {
  88. replyService.updateReply(reply);
  89. }
  90. return String.format("redirect:/%s/discussion/reply/list?topicId=%s",
  91. project.getUniqueId(), reply.getTopicId());
  92. }
  93. }