Merge pull request #4977 from colemanw/CRM-15812
[civicrm-core.git] / CRM / Mailing / Page / Common.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2014
32 * $Id$
33 *
34 */
35 class CRM_Mailing_Page_Common extends CRM_Core_Page {
36 protected $_type = NULL;
37
38 /**
39 * @return string
40 * @throws Exception
41 */
42 public function run() {
43 $job_id = CRM_Utils_Request::retrieve('jid', 'Integer', CRM_Core_DAO::$_nullObject);
44 $queue_id = CRM_Utils_Request::retrieve('qid', 'Integer', CRM_Core_DAO::$_nullObject);
45 $hash = CRM_Utils_Request::retrieve('h', 'String', CRM_Core_DAO::$_nullObject);
46
47 if (!$job_id ||
48 !$queue_id ||
49 !$hash
50 ) {
51 CRM_Core_Error::fatal(ts("Missing input parameters"));
52 }
53
54 // verify that the three numbers above match
55 $q = CRM_Mailing_Event_BAO_Queue::verify($job_id, $queue_id, $hash);
56 if (!$q) {
57 CRM_Core_Error::fatal(ts("There was an error in your request"));
58 }
59
60 $cancel = CRM_Utils_Request::retrieve("_qf_{$this->_type}_cancel", 'String', CRM_Core_DAO::$_nullObject,
61 FALSE, NULL, $_REQUEST
62 );
63 if ($cancel) {
64 $config = CRM_Core_Config::singleton();
65 CRM_Utils_System::redirect($config->userFrameworkBaseURL);
66 }
67
68 $confirm = CRM_Utils_Request::retrieve('confirm', 'Boolean', CRM_Core_DAO::$_nullObject,
69 FALSE, NULL, $_REQUEST
70 );
71
72 list($displayName, $email) = CRM_Mailing_Event_BAO_Queue::getContactInfo($queue_id);
73 $this->assign('display_name', $displayName);
74 $this->assign('email', $email);
75 $this->assign('confirm', $confirm);
76
77 $groups = CRM_Mailing_Event_BAO_Unsubscribe::unsub_from_mailing($job_id, $queue_id, $hash, TRUE);
78 $this->assign('groups', $groups);
79 $groupExist = NULL;
80 foreach ($groups as $key => $value) {
81 if ($value) {
82 $groupExist = TRUE;
83 }
84 }
85 $this->assign('groupExist', $groupExist);
86
87 if ($confirm) {
88 if ($this->_type == 'unsubscribe') {
89 $groups = CRM_Mailing_Event_BAO_Unsubscribe::unsub_from_mailing($job_id, $queue_id, $hash);
90 if (count($groups)) {
91 CRM_Mailing_Event_BAO_Unsubscribe::send_unsub_response($queue_id, $groups, FALSE, $job_id);
92 }
93 else {
94 // should we indicate an error, or just ignore?
95 }
96 }
97 elseif ($this->_type == 'resubscribe') {
98 $groups = CRM_Mailing_Event_BAO_Resubscribe::resub_to_mailing($job_id, $queue_id, $hash);
99 if (count($groups)) {
100 CRM_Mailing_Event_BAO_Resubscribe::send_resub_response($queue_id, $groups, FALSE, $job_id);
101 }
102 else {
103 // should we indicate an error, or just ignore?
104 }
105 }
106 else {
107 if (CRM_Mailing_Event_BAO_Unsubscribe::unsub_from_domain($job_id, $queue_id, $hash)) {
108 CRM_Mailing_Event_BAO_Unsubscribe::send_unsub_response($queue_id, NULL, TRUE, $job_id);
109 }
110 else {
111 // should we indicate an error, or just ignore?
112 }
113 }
114 }
115 else {
116 $confirmURL = CRM_Utils_System::url("civicrm/mailing/{$this->_type}",
117 "reset=1&jid={$job_id}&qid={$queue_id}&h={$hash}&confirm=1"
118 );
119 $this->assign('confirmURL', $confirmURL);
120 //push context for further process CRM-4431
121 $session = CRM_Core_Session::singleton();
122 $session->pushUserContext($confirmURL);
123 }
124
125 return parent::run();
126 }
127 }