INFRA-132 - Batch #8
[civicrm-core.git] / CRM / Mailing / Form / ForwardMailing.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
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
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35class CRM_Mailing_Form_ForwardMailing extends CRM_Core_Form {
00be9182 36 public function preProcess() {
6a488035
TO
37 $job_id = CRM_Utils_Request::retrieve('jid', 'Positive',
38 $this, NULL
39 );
40 $queue_id = CRM_Utils_Request::retrieve('qid', 'Positive',
41 $this, NULL
42 );
43 $hash = CRM_Utils_Request::retrieve('h', 'String',
44 $this, NULL
45 );
46
47 $q = CRM_Mailing_Event_BAO_Queue::verify($job_id, $queue_id, $hash);
48
49 if ($q == NULL) {
50
51 /** ERROR **/
52 CRM_Core_Error::fatal(ts('Invalid form parameters.'));
53 CRM_Core_Error::statusBounce(ts('Invalid form parameters.'));
54 }
55 $mailing = &$q->getMailing();
56
57 if ($hash) {
58 $emailId = CRM_Core_DAO::getfieldValue('CRM_Mailing_Event_DAO_Queue', $hash, 'email_id', 'hash');
59 $this->_fromEmail = $fromEmail = CRM_Core_DAO::getfieldValue('CRM_Core_DAO_Email', $emailId, 'email');
60 $this->assign('fromEmail', $fromEmail);
61 }
62
63 /* Show the subject instead of the name here, since it's being
64 * displayed to external contacts/users */
65
66 CRM_Utils_System::setTitle(ts('Forward Mailing: %1', array(1 => $mailing->subject)));
67
68 $this->set('queue_id', $queue_id);
69 $this->set('job_id', $job_id);
70 $this->set('hash', $hash);
71 }
72
73 /**
c490a46a 74 * Build the form object
6a488035 75 *
355ba699 76 * @return void
6a488035
TO
77 */
78 public function buildQuickForm() {
79 for ($i = 0; $i < 5; $i++) {
80 $this->add('text', "email_$i", ts('Email %1', array(1 => $i + 1)));
81 $this->addRule("email_$i", ts('Email is not valid.'), 'email');
82 }
83
84 //insert message Text by selecting "Select Template option"
85 $this->add('textarea', 'forward_comment', ts('Comment'), array('cols' => '80', 'rows' => '8'));
86 $this->addWysiwyg('html_comment',
87 ts('HTML Message'),
88 array('cols' => '80', 'rows' => '8')
89 );
90
91 $this->addButtons(array(
353ffa53
TO
92 array(
93 'type' => 'next',
94 'name' => ts('Forward'),
95 'isDefault' => TRUE,
96 ),
97 array(
98 'type' => 'cancel',
99 'name' => ts('Cancel'),
100 ),
101 ));
6a488035
TO
102 }
103
104 /**
105 * Form submission of new/edit contact is processed.
106 *
6a488035 107 *
355ba699 108 * @return void
6a488035
TO
109 */
110 public function postProcess() {
353ffa53
TO
111 $queue_id = $this->get('queue_id');
112 $job_id = $this->get('job_id');
113 $hash = $this->get('hash');
6a488035
TO
114 $timeStamp = date('YmdHis');
115
353ffa53
TO
116 $formValues = $this->controller->exportValues($this->_name);
117 $params = array();
6a488035 118 $params['body_text'] = $formValues['forward_comment'];
353ffa53 119 $html_comment = $formValues['html_comment'];
6a488035
TO
120 $params['body_html'] = str_replace('%7B', '{', str_replace('%7D', '}', $html_comment));
121
122 $emails = array();
123 for ($i = 0; $i < 5; $i++) {
124 $email = $this->controller->exportValue($this->_name, "email_$i");
125 if (!empty($email)) {
126 $emails[] = $email;
127 }
128 }
129
130 $forwarded = NULL;
131 foreach ($emails as $email) {
132 $params = array(
133 'version' => 3,
134 'job_id' => $job_id,
135 'event_queue_id' => $queue_id,
136 'hash' => $hash,
137 'email' => $email,
138 'time_stamp' => $timeStamp,
139 'fromEmail' => $this->_fromEmail,
140 'params' => $params,
141 );
142 $result = civicrm_api('Mailing', 'event_forward', $params);
143 if (!civicrm_error($result)) {
144 $forwarded++;
145 }
146 }
147
353ffa53
TO
148 $status = ts('Mailing is not forwarded to the given email address.', array(
149 'count' => count($emails),
3bdca100 150 'plural' => 'Mailing is not forwarded to the given email addresses.',
353ffa53 151 ));
6a488035 152 if ($forwarded) {
353ffa53
TO
153 $status = ts('Mailing is forwarded successfully to %count email address.', array(
154 'count' => $forwarded,
3bdca100 155 'plural' => 'Mailing is forwarded successfully to %count email addresses.',
353ffa53 156 ));
6a488035
TO
157 }
158
159 CRM_Utils_System::setUFMessage($status);
160
161 // always redirect to front page of url
162 $session = CRM_Core_Session::singleton();
163 $config = CRM_Core_Config::singleton();
164 $session->pushUserContext($config->userFrameworkBaseURL);
165 }
166}