/jcertif-web/src/main/java/com/jcertif/web/ihm/join/JoinBean.java

http://jcertif-web-app.googlecode.com/ · Java · 149 lines · 80 code · 26 blank · 43 comment · 8 complexity · f104d65466a2bed611a54db4c470a364 MD5 · raw file

  1. package com.jcertif.web.ihm.join;
  2. import java.io.IOException;
  3. import java.io.Serializable;
  4. import java.util.List;
  5. import javax.enterprise.context.SessionScoped;
  6. import javax.faces.application.FacesMessage;
  7. import javax.faces.context.FacesContext;
  8. import javax.faces.event.ActionEvent;
  9. import javax.inject.Inject;
  10. import javax.inject.Named;
  11. import javax.validation.ValidationException;
  12. import org.apache.commons.lang.StringUtils;
  13. import com.jcertif.web.model.RoleParticipant;
  14. import com.jcertif.web.model.TypeParticipant;
  15. import com.jcertif.web.model.User;
  16. import com.jcertif.web.service.ReferentielService;
  17. import com.jcertif.web.service.ResourceService;
  18. import com.jcertif.web.service.RestService;
  19. /**
  20. * Join Bean.
  21. *
  22. * @author rossi.oddet
  23. *
  24. */
  25. @Named
  26. @SessionScoped
  27. public class JoinBean implements Serializable {
  28. private static final long serialVersionUID = 3243371323747830221L;
  29. /** User **/
  30. private User user;
  31. /** REST Web Service **/
  32. @Inject
  33. private RestService restService;
  34. /** Resource Service **/
  35. @Inject
  36. private ResourceService resourceService;
  37. /** Referentiel Service **/
  38. @Inject
  39. private ReferentielService referentielService;
  40. /**
  41. * A default constructor.
  42. */
  43. public JoinBean() {
  44. super();
  45. this.user = new User();
  46. }
  47. /**
  48. * Save the user's data.
  49. *
  50. * @param actionEvent
  51. * a action event
  52. * @throws IOException
  53. * if redirect error
  54. */
  55. public void save(ActionEvent actionEvent) throws IOException {
  56. FacesContext context = FacesContext.getCurrentInstance();
  57. // Update Conference for user
  58. this.user.setIdConference(referentielService.getConference().getId());
  59. try {
  60. validateUser();
  61. restService.post(resourceService.getUserCreateContext(), user, User.class);
  62. context.getExternalContext().redirect(
  63. context.getExternalContext().getRequestContextPath()
  64. + "/faces/join/confirmationJoin.jsf");
  65. } catch (ValidationException e) {
  66. context.addMessage("join:confirm",
  67. new FacesMessage(FacesMessage.SEVERITY_ERROR, e.getMessage(), null));
  68. }
  69. }
  70. /**
  71. * Validate the user's data.
  72. */
  73. protected void validateUser() {
  74. // Email and Confirmation Email must be equals
  75. if (!user.getEmail().equals(user.getConfirmemail())) {
  76. throw new ValidationException(resourceService.getLib("join.confirmemail.invalidmsg"));
  77. }
  78. // Password and Confirmation Password must be equals
  79. if (!user.getPasswd().equals(user.getConfirmpasswd())) {
  80. throw new ValidationException(resourceService.getLib("join.confirmpassword.invalidmsg"));
  81. }
  82. // Role is required
  83. if (StringUtils.isBlank(user.getRole())) {
  84. throw new ValidationException(resourceService.getLib("join.role.reqmsg"));
  85. }
  86. // Type is required
  87. if (StringUtils.isBlank(user.getTypeUser())) {
  88. throw new ValidationException(resourceService.getLib("join.type.reqmsg"));
  89. }
  90. // email must be unique
  91. User existingUser = restService.getBuilder(
  92. resourceService.getUserContext() + "/" + user.getEmail() + "/"
  93. + referentielService.getConference().getId()).get(User.class);
  94. if (existingUser != null && existingUser.getId() != null) {
  95. throw new ValidationException(resourceService.getLib("join.existingemail.msg"));
  96. }
  97. }
  98. /**
  99. * @return the typesParticipant
  100. */
  101. public List<TypeParticipant> getTypesParticipant() {
  102. return referentielService.getTypesParticipantList();
  103. }
  104. /**
  105. * @return the rolesParticipant
  106. */
  107. public List<RoleParticipant> getRolesParticipant() {
  108. return referentielService.getRolesParticipantList();
  109. }
  110. /**
  111. * @return the user
  112. */
  113. public User getUser() {
  114. return user;
  115. }
  116. /**
  117. * @param user
  118. * the user to set
  119. */
  120. public void setUser(User user) {
  121. this.user = user;
  122. }
  123. }