/connect-web/src/main/java/org/osforce/connect/web/module/commons/VoteWidget.java

http://focus-sns.googlecode.com/ · Java · 54 lines · 40 code · 7 blank · 7 comment · 2 complexity · bab75ba392021ba97e42609ca1e4eb0e MD5 · raw file

  1. package org.osforce.connect.web.module.commons;
  2. import java.util.Collections;
  3. import org.osforce.connect.entity.commons.VoteRecord;
  4. import org.osforce.connect.entity.system.User;
  5. import org.osforce.connect.service.commons.VoteRecordService;
  6. import org.osforce.spring4me.web.bind.annotation.RequestAttr;
  7. import org.osforce.spring4me.web.stereotype.Widget;
  8. import org.springframework.beans.factory.annotation.Autowired;
  9. import org.springframework.web.bind.annotation.RequestMapping;
  10. import org.springframework.web.bind.annotation.RequestMethod;
  11. import org.springframework.web.bind.annotation.RequestParam;
  12. import org.springframework.web.bind.annotation.ResponseBody;
  13. /**
  14. *
  15. * @author <a href="mailto:haozhonghu@hotmail.com">gavin</a>
  16. * @since 1.1.1
  17. * @create Jun 3, 2011 - 6:06:26 PM
  18. * <a href="http://www.opensourceforce.org">????</a>
  19. */
  20. @Widget
  21. @RequestMapping("/commons/vote")
  22. public class VoteWidget {
  23. private VoteRecordService voteRecordService;
  24. public VoteWidget() {
  25. }
  26. @Autowired
  27. public void setVoteRecordService(VoteRecordService voteRecordService) {
  28. this.voteRecordService = voteRecordService;
  29. }
  30. @RequestMapping(value="/vote-action", method=RequestMethod.GET)
  31. public @ResponseBody Object doVoteAction(@RequestParam String code,
  32. @RequestParam Long linkedId,@RequestParam String entity, @RequestAttr User user) {
  33. VoteRecord voteRecord = voteRecordService.getVoteRecord(linkedId, entity, user);
  34. if(voteRecord==null) {
  35. voteRecord = new VoteRecord(code, linkedId, entity);
  36. voteRecord.setUser(user);
  37. voteRecordService.createVoteRecord(voteRecord);
  38. } else {
  39. voteRecord.setCode(code);
  40. voteRecord.setLinkedId(linkedId);
  41. voteRecord.setEntity(entity);
  42. voteRecord.setUser(user);
  43. voteRecordService.updateVoteRecord(voteRecord);
  44. }
  45. return Collections.singletonMap("id", voteRecord.getId());
  46. }
  47. }