/etrader_common/src/il/co/etrader/issueActions/ActionThirdPartyHandler.java

https://bitbucket.org/invest/anyoption · Java · 159 lines · 125 code · 24 blank · 10 comment · 32 complexity · 4bce3db0b372ceb558a10a6f034afa76 MD5 · raw file

  1. package il.co.etrader.issueActions;
  2. import il.co.etrader.bl_managers.ApplicationDataBase;
  3. import il.co.etrader.bl_managers.IssuesManagerBase;
  4. import il.co.etrader.bl_managers.PopulationsManagerBase;
  5. import il.co.etrader.bl_managers.UsersManagerBase;
  6. import il.co.etrader.bl_vos.Template;
  7. import il.co.etrader.bl_vos.UserBase;
  8. import il.co.etrader.bl_vos.Writer;
  9. import il.co.etrader.dao_managers.IssuesDAOBase;
  10. import il.co.etrader.dao_managers.PopulationsDAOBase;
  11. import il.co.etrader.dao_managers.TemplatesDAO;
  12. import il.co.etrader.dao_managers.UsersDAOBase;
  13. import il.co.etrader.util.CommonUtil;
  14. import il.co.etrader.util.ConstantsBase;
  15. import java.sql.Connection;
  16. import java.sql.SQLException;
  17. import java.util.Date;
  18. import javax.faces.context.FacesContext;
  19. import org.apache.log4j.Level;
  20. import org.apache.log4j.Logger;
  21. import com.anyoption.common.beans.Issue;
  22. import com.anyoption.common.beans.IssueAction;
  23. public class ActionThirdPartyHandler extends ActionHandlerBase{
  24. private static final Logger log = Logger.getLogger(ActionThirdPartyHandler.class);
  25. /**
  26. * validateAction event handler implementation
  27. */
  28. @Override
  29. public boolean beforeInsertAction(Connection conn,UserBase user, IssueAction action, FacesContext context, int screenId) throws ActionHandlersException{
  30. long userId = user.getId();
  31. int statusId = 0;
  32. if (null == popUserEntry){
  33. try{
  34. popUserEntry = com.anyoption.common.daos.PopulationsDAOBase.getPopulationUserByUserId(conn, userId);
  35. }catch (SQLException e) {
  36. log.error("Error in insertAction fo, user: " + user.getId() , e);
  37. return false;
  38. }
  39. }
  40. if (null != popUserEntry){
  41. long popUserId = popUserEntry.getPopulationUserId();
  42. if (screenId == ConstantsBase.SCREEN_SALEM || screenId == ConstantsBase.SCREEN_SALE) {
  43. if (action.isCallBack()) {
  44. //Unassigned CB that more than a week
  45. if(isCbMoreThanWeek(action, CommonUtil.getDateTimeFormaByTz(new Date(), action.getCallBackTimeOffset()), user)) {
  46. statusId = PopulationsManagerBase.POP_ENT_HIS_STATUS_CALLBACK_CANCEL_ASSIGN;
  47. } else {
  48. statusId = PopulationsManagerBase.POP_ENT_HIS_STATUS_CALLBACK;
  49. }
  50. } else if (popUserEntry.getEntryTypeId() == ConstantsBase.POP_ENTRY_TYPE_CALLBACK) {
  51. statusId = PopulationsManagerBase.POP_ENT_HIS_STATUS_CALLBACK_REMOVE_BY_CALL;
  52. }
  53. popHisStatus = ApplicationDataBase.getPopEntryHisStatusHash().get(statusId);
  54. updatePopUserByStatus(popUserEntry, popHisStatus, action, context);
  55. }
  56. if (popUserEntry.getDelayId() > 0) {
  57. try {
  58. delay = PopulationsDAOBase.getPopulationDelayForPopUser(conn,popUserEntry.getPopulationUserId());
  59. int delayType = delay.getDelayType();
  60. if (null != delay){
  61. if (PopulationsManagerBase.POP_DELAY_TYPE_NA == delayType){
  62. popUserEntry.setDelayId(0);
  63. }
  64. }
  65. } catch (SQLException e) {
  66. log.error("Problem in canceling delay for popUser" + popUserId);
  67. }
  68. }
  69. }
  70. return true;
  71. }
  72. /**
  73. * validateAction event handler implementation
  74. */
  75. @Override
  76. public void insertAction(Connection conn,UserBase user,Issue i,IssueAction action, FacesContext context) throws Exception{
  77. long contactId = 0;
  78. boolean res = false;
  79. long templateid = 0;
  80. // Insert Issue action
  81. IssuesDAOBase.insertAction(conn, action);
  82. if (null != popUserEntry){
  83. contactId = popUserEntry.getContactId();
  84. updateEntryType(conn, popUserEntry, popHisStatus, action);
  85. }
  86. if (log.isEnabledFor(Level.DEBUG)) {
  87. log.log(Level.DEBUG, "Send Not reached mail to user " + user.getId() + " or contact " + contactId);
  88. }
  89. if (user.getId() > 0){
  90. if (user.getContactByEmail()) {
  91. long issueActionTypeId = Long.parseLong(action.getActionTypeId());
  92. Template t = getTemlate(conn, issueActionTypeId, user);
  93. templateid = t.getId();
  94. res = UsersManagerBase.sendPopUserMailTemplateFile(conn, t, action.getWriterId(), user.getId(), 0);
  95. // if (!CommonUtil.isHebrewSkin(user.getSkinId())) {
  96. UsersManagerBase.SendToMailBox(user, t, action.getWriterId(), user.getLanguageId(), null, conn, 0);
  97. // }
  98. }
  99. } else {
  100. res = UsersManagerBase.sendPopUserMailTemplateFile(Template.WRONG_NUMBER_MAIL_CONTACT, action.getWriterId(), 0, contactId);
  101. }
  102. if (res && log.isEnabledFor(Level.DEBUG)) {
  103. log.log(Level.DEBUG, "Not reached call mail sent successfully! ");
  104. }
  105. if (res){
  106. IssueAction emailAction = new IssueAction();
  107. emailAction.setIssueId(action.getIssueId());
  108. emailAction.setWriterId(Writer.WRITER_ID_AUTO);
  109. emailAction.setSignificant(false);
  110. emailAction.setActionTypeId(String.valueOf(IssuesManagerBase.ISSUE_ACTION_EMAIL));
  111. emailAction.setComments("Sent Unreached call email.");
  112. emailAction.setChannelId(String.valueOf(IssuesManagerBase.ISSUE_CHANNEL_EMAIL));
  113. emailAction.setActionTime(new Date());
  114. emailAction.setActionTimeOffset(user.getUtcOffset());
  115. emailAction.setTemplateId(templateid);
  116. IssuesDAOBase.insertAction(conn, emailAction);
  117. }
  118. }
  119. private static Template getTemlate(Connection conn, long issueActionTypeId, UserBase user) throws Exception {
  120. long templateId = getTemplateId(conn, issueActionTypeId, user);
  121. return TemplatesDAO.get(conn, templateId);
  122. }
  123. private static long getTemplateId(Connection conn, long issueActionTypeId, UserBase user) throws Exception {
  124. boolean isHaveApprovedDeposits = UsersDAOBase.isHaveApprovedDeposits(conn, user.getId());
  125. if(user.getId() > 0) {
  126. if (isHaveApprovedDeposits) {
  127. return Template.NOT_REACHED_MADE_DEPOSIT;
  128. } else {
  129. return Template.NOT_REACHED_NEVER_DEPOSIT;
  130. }
  131. } else {
  132. return Template.NOT_REACHED_MAIL_ID;
  133. }
  134. }
  135. }