Merge pull request #1199 from totten/master-premature-commit
[civicrm-core.git] / CRM / Mailing / Page / Common.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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-2013
32 * $Id$
33 *
34 */
35 class CRM_Mailing_Page_Common extends CRM_Core_Page {
36 protected $_type = NULL;
37
38 function run() {
39 $job_id = CRM_Utils_Request::retrieve('jid', 'Integer', CRM_Core_DAO::$_nullObject);
40 $queue_id = CRM_Utils_Request::retrieve('qid', 'Integer', CRM_Core_DAO::$_nullObject);
41 $hash = CRM_Utils_Request::retrieve('h', 'String', CRM_Core_DAO::$_nullObject);
42
43 if (!$job_id ||
44 !$queue_id ||
45 !$hash
46 ) {
47 CRM_Core_Error::fatal(ts("Missing input parameters"));
48 }
49
50
51 // verify that the three numbers above match
52 $q = CRM_Mailing_Event_BAO_Queue::verify($job_id, $queue_id, $hash);
53 if (!$q) {
54 CRM_Core_Error::fatal(ts("There was an error in your request"));
55 }
56
57 $cancel = CRM_Utils_Request::retrieve("_qf_{$this->_type}_cancel", 'String', CRM_Core_DAO::$_nullObject,
58 FALSE, NULL, $_REQUEST
59 );
60 if ($cancel) {
61 $config = CRM_Core_Config::singleton();
62 CRM_Utils_System::redirect($config->userFrameworkBaseURL);
63 }
64
65 $confirm = CRM_Utils_Request::retrieve('confirm', 'Boolean', CRM_Core_DAO::$_nullObject,
66 FALSE, NULL, $_REQUEST
67 );
68
69 list($displayName, $email) = CRM_Mailing_Event_BAO_Queue::getContactInfo($queue_id);
70 $this->assign('display_name', $displayName);
71 $this->assign('email', $email);
72 $this->assign('confirm', $confirm);
73
74 $groups = CRM_Mailing_Event_BAO_Unsubscribe::unsub_from_mailing($job_id, $queue_id, $hash, TRUE);
75 $this->assign('groups', $groups);
76 $groupExist = NULL;
77 foreach ($groups as $key => $value) {
78 if ($value) {
79 $groupExist = TRUE;
80 }
81 }
82 $this->assign('groupExist', $groupExist);
83
84 if ($confirm) {
85 if ($this->_type == 'unsubscribe') {
86 $groups = CRM_Mailing_Event_BAO_Unsubscribe::unsub_from_mailing($job_id, $queue_id, $hash);
87 if (count($groups)) {
88 CRM_Mailing_Event_BAO_Unsubscribe::send_unsub_response($queue_id, $groups, FALSE, $job_id);
89 }
90 else {
91 // should we indicate an error, or just ignore?
92 }
93 }
94 elseif ($this->_type == 'resubscribe') {
95 $groups = CRM_Mailing_Event_BAO_Resubscribe::resub_to_mailing($job_id, $queue_id, $hash);
96 if (count($groups)) {
97 CRM_Mailing_Event_BAO_Resubscribe::send_resub_response($queue_id, $groups, FALSE, $job_id);
98 }
99 else {
100 // should we indicate an error, or just ignore?
101 }
102 }
103 else {
104 if (CRM_Mailing_Event_BAO_Unsubscribe::unsub_from_domain($job_id, $queue_id, $hash)) {
105 CRM_Mailing_Event_BAO_Unsubscribe::send_unsub_response($queue_id, NULL, TRUE, $job_id);
106 }
107 else {
108 // should we indicate an error, or just ignore?
109 }
110 }
111 }
112 else {
113 $confirmURL = CRM_Utils_System::url("civicrm/mailing/{$this->_type}",
114 "reset=1&jid={$job_id}&qid={$queue_id}&h={$hash}&confirm=1"
115 );
116 $this->assign('confirmURL', $confirmURL);
117 //push context for further process CRM-4431
118 $session = CRM_Core_Session::singleton();
119 $session->pushUserContext($confirmURL);
120 }
121
122 return parent::run();
123 }
124 }
125