CCRM-15821 Provide option to notify PCP owner
[civicrm-core.git] / CRM / PCP / Form / Campaign.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
36 /**
37 * This class generates form components for processing a pcp page creati
38 *
39 */
40 class CRM_PCP_Form_Campaign extends CRM_Core_Form {
41 public $_context;
42 public $_component;
43
44 public function preProcess() {
45 // we do not want to display recently viewed items, so turn off
46 $this->assign('displayRecent', FALSE);
47
48 // component null in controller object - fix? dgg
49 // $this->_component = $this->controller->get('component');
50 $this->_component = CRM_Utils_Request::retrieve('component', 'String', $this);
51 $this->assign('component', $this->_component);
52
53 $this->_context = CRM_Utils_Request::retrieve('context', 'String', $this);
54 $this->assign('context', $this->_context);
55
56 $this->_pageId = CRM_Utils_Request::retrieve('id', 'Positive', $this, FALSE);
57 $title = ts('Setup a Personal Campaign Page - Step 2');
58
59 if ($this->_pageId) {
60 $title = ts('Edit Your Personal Campaign Page');
61 }
62
63 CRM_Utils_System::setTitle($title);
64 parent::preProcess();
65 }
66
67 public function setDefaultValues() {
68 $dafaults = array();
69 $dao = new CRM_PCP_DAO_PCP();
70
71 if ($this->_pageId) {
72 $dao->id = $this->_pageId;
73 if ($dao->find(TRUE)) {
74 CRM_Core_DAO::storeValues($dao, $defaults);
75 }
76 // fix the display of the monetary value, CRM-4038
77 if (isset($defaults['goal_amount'])) {
78 $defaults['goal_amount'] = CRM_Utils_Money::format($defaults['goal_amount'], NULL, '%a');
79 }
80
81 $defaults['pcp_title'] = CRM_Utils_Array::value('title', $defaults);
82 $defaults['pcp_intro_text'] = CRM_Utils_Array::value('intro_text', $defaults);
83 }
84
85 if ($this->get('action') & CRM_Core_Action::ADD) {
86 $defaults['is_active'] = 1;
87 $defaults['is_honor_roll'] = 1;
88 $defaults['is_thermometer'] = 1;
89 $defaults['is_notify'] = 1;
90 }
91
92 $this->_contactID = CRM_Utils_Array::value('contact_id', $defaults);
93 $this->_contriPageId = CRM_Utils_Array::value('page_id', $defaults);
94
95 return $defaults;
96 }
97
98 /**
99 * Build the form object
100 *
101 * @return void
102 */
103 public function buildQuickForm() {
104 $this->add('text', 'pcp_title', ts('Title'), NULL, TRUE);
105 $this->add('textarea', 'pcp_intro_text', ts('Welcome'), NULL, TRUE);
106 $this->add('text', 'goal_amount', ts('Your Goal'), NULL, TRUE);
107 $this->addRule('goal_amount', ts('Goal Amount should be a numeric value'), 'money');
108
109 $attributes = array();
110 if ($this->_component == 'event') {
111 if ($this->get('action') & CRM_Core_Action::ADD) {
112 $attributes = array('value' => ts('Join Us'), 'onClick' => 'select();');
113 }
114 $this->add('text', 'donate_link_text', ts('Sign up Button'), $attributes);
115 }
116 else {
117 if ($this->get('action') & CRM_Core_Action::ADD) {
118 $attributes = array('value' => ts('Donate Now'), 'onClick' => 'select();');
119 }
120 $this->add('text', 'donate_link_text', ts('Donation Button'), $attributes);
121 }
122
123 $attrib = array('rows' => 8, 'cols' => 60);
124 $this->add('textarea', 'page_text', ts('Your Message'), NULL, FALSE);
125
126 $maxAttachments = 1;
127 CRM_Core_BAO_File::buildAttachment($this, 'civicrm_pcp', $this->_pageId, $maxAttachments);
128
129 $this->addElement('checkbox', 'is_thermometer', ts('Progress Bar'));
130 $this->addElement('checkbox', 'is_honor_roll', ts('Honor Roll'), NULL);
131
132 $owner_notification_option = $this->_pageId ? CRM_PCP_BAO_PCP::getOwnerNotificationId($this->_pageId) : CRM_Core_DAO::getFieldValue('CRM_PCP_DAO_PCPBlock', $this->controller->get('component_page_id'), 'owner_notify_id');
133 if ($owner_notification_option == CRM_Core_OptionGroup::getValue('pcp_owner_notify', 'owner_chooses', 'name')) {
134 $this->assign('owner_notification_option', TRUE);
135 $this->addElement('checkbox', 'is_notify', ts('Notify me via email when someone donates to my page'), NULL);
136 }
137
138 $this->addElement('checkbox', 'is_active', ts('Active'));
139
140 $this->addButtons(
141 array(
142 array(
143 'type' => 'upload',
144 'name' => ts('Save'),
145 'isDefault' => TRUE,
146 ),
147 array(
148 'type' => 'cancel',
149 'name' => ts('Cancel'),
150 ),
151 )
152 );
153 $this->addFormRule(array('CRM_PCP_Form_Campaign', 'formRule'), $this);
154 }
155
156 /**
157 * Global form rule
158 *
159 * @param array $fields
160 * The input form values.
161 * @param array $files
162 * The uploaded files if any.
163 * @param $self
164 *
165 *
166 * @return bool|array
167 * true if no errors, else array of errors
168 */
169 public static function formRule($fields, $files, $self) {
170 $errors = array();
171 if ($fields['goal_amount'] <= 0) {
172 $errors['goal_amount'] = ts('Goal Amount should be a numeric value greater than zero.');
173 }
174 if (strlen($fields['donate_link_text']) >= 64) {
175 $errors['donate_link_text'] = ts('Button Text must be less than 64 characters.');
176 }
177 return $errors;
178 }
179
180 /**
181 * Process the form submission
182 *
183 *
184 * @return void
185 */
186 public function postProcess() {
187 $params = $this->controller->exportValues($this->_name);
188 $checkBoxes = array('is_thermometer', 'is_honor_roll', 'is_active');
189
190 foreach ($checkBoxes as $key) {
191 if (!isset($params[$key])) {
192 $params[$key] = 0;
193 }
194 }
195 $session = CRM_Core_Session::singleton();
196 $contactID = isset($this->_contactID) ? $this->_contactID : $session->get('userID');
197 if (!$contactID) {
198 $contactID = $this->get('contactID');
199 }
200 $params['title'] = $params['pcp_title'];
201 $params['intro_text'] = $params['pcp_intro_text'];
202 $params['contact_id'] = $contactID;
203 $params['page_id'] = $this->get('component_page_id') ? $this->get('component_page_id') : $this->_contriPageId;
204 $params['page_type'] = $this->_component;
205
206 // since we are allowing html input from the user
207 // we also need to purify it, so lets clean it up
208 $htmlFields = array('intro_text', 'page_text', 'title');
209 foreach ($htmlFields as $field) {
210 if (!empty($params[$field])) {
211 $params[$field] = CRM_Utils_String::purifyHTML($params[$field]);
212 }
213 }
214
215 $entity_table = CRM_PCP_BAO_PCP::getPcpEntityTable($params['page_type']);
216
217 $pcpBlock = new CRM_PCP_DAO_PCPBlock();
218 $pcpBlock->entity_table = $entity_table;
219 $pcpBlock->entity_id = $params['page_id'];
220 $pcpBlock->find(TRUE);
221
222 $params['pcp_block_id'] = $pcpBlock->id;
223
224 $params['goal_amount'] = CRM_Utils_Rule::cleanMoney($params['goal_amount']);
225
226 $approval_needed = $pcpBlock->is_approval_needed;
227 $approvalMessage = NULL;
228
229 if ($this->get('action') & CRM_Core_Action::ADD) {
230 $params['status_id'] = $approval_needed ? 1 : 2;
231 $approvalMessage = $approval_needed ? ts('but requires administrator review before you can begin promoting your campaign. You will receive an email confirmation shortly which includes a link to return to this page.') : ts('and is ready to use.');
232 }
233
234 $params['id'] = $this->_pageId;
235
236 $pcp = CRM_PCP_BAO_PCP::add($params, FALSE);
237
238 // add attachments as needed
239 CRM_Core_BAO_File::formatAttachment($params,
240 $params,
241 'civicrm_pcp',
242 $pcp->id
243 );
244
245 $pageStatus = isset($this->_pageId) ? ts('updated') : ts('created');
246 $statusId = CRM_Core_DAO::getFieldValue('CRM_PCP_DAO_PCP', $pcp->id, 'status_id');
247
248 //send notification of PCP create/update.
249 $pcpParams = array('entity_table' => $entity_table, 'entity_id' => $pcp->page_id);
250 $notifyParams = array();
251 $notifyStatus = "";
252 CRM_Core_DAO::commonRetrieve('CRM_PCP_DAO_PCPBlock', $pcpParams, $notifyParams, array('notify_email'));
253
254 if ($emails = $pcpBlock->notify_email) {
255 $this->assign('pcpTitle', $pcp->title);
256
257 if ($this->_pageId) {
258 $this->assign('mode', 'Update');
259 }
260 else {
261 $this->assign('mode', 'Add');
262 }
263 $pcpStatus = CRM_Core_OptionGroup::getLabel('pcp_status', $statusId);
264 $this->assign('pcpStatus', $pcpStatus);
265
266 $this->assign('pcpId', $pcp->id);
267
268 $supporterUrl = CRM_Utils_System::url('civicrm/contact/view',
269 "reset=1&cid={$pcp->contact_id}",
270 TRUE, NULL, FALSE,
271 FALSE
272 );
273 $this->assign('supporterUrl', $supporterUrl);
274 $supporterName = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $pcp->contact_id, 'display_name');
275 $this->assign('supporterName', $supporterName);
276
277 if ($this->_component == 'contribute') {
278 $pageUrl = CRM_Utils_System::url('civicrm/contribute/transact',
279 "reset=1&id={$pcpBlock->entity_id}",
280 TRUE, NULL, FALSE,
281 TRUE
282 );
283 $contribPageTitle = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_ContributionPage', $pcpBlock->entity_id, 'title');
284 }
285 elseif ($this->_component == 'event') {
286 $pageUrl = CRM_Utils_System::url('civicrm/event',
287 "reset=1&id={$pcpBlock->entity_id}",
288 TRUE, NULL, FALSE,
289 TRUE
290 );
291 $contribPageTitle = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $pcpBlock->entity_id, 'title');
292 }
293
294 $this->assign('contribPageUrl', $pageUrl);
295 $this->assign('contribPageTitle', $contribPageTitle);
296
297 $managePCPUrl = CRM_Utils_System::url('civicrm/admin/pcp',
298 "reset=1",
299 TRUE, NULL, FALSE,
300 FALSE
301 );
302 $this->assign('managePCPUrl', $managePCPUrl);
303
304 //get the default domain email address.
305 list($domainEmailName, $domainEmailAddress) = CRM_Core_BAO_Domain::getNameAndEmail();
306
307 if (!$domainEmailAddress || $domainEmailAddress == 'info@EXAMPLE.ORG') {
308 $fixUrl = CRM_Utils_System::url('civicrm/admin/domain', 'action=update&reset=1');
309 CRM_Core_Error::fatal(ts('The site administrator needs to enter a valid \'FROM Email Address\' in <a href="%1">Administer CiviCRM &raquo; Communications &raquo; FROM Email Addresses</a>. The email address used may need to be a valid mail account with your email service provider.', array(1 => $fixUrl)));
310 }
311
312 //if more than one email present for PCP notification ,
313 //first email take it as To and other as CC and First email
314 //address should be sent in users email receipt for
315 //support purpose.
316 $emailArray = explode(',', $emails);
317 $to = $emailArray[0];
318 unset($emailArray[0]);
319 $cc = implode(',', $emailArray);
320
321 list($sent, $subject, $message, $html) = CRM_Core_BAO_MessageTemplate::sendTemplate(
322 array(
323 'groupName' => 'msg_tpl_workflow_contribution',
324 'valueName' => 'pcp_notify',
325 'contactId' => $contactID,
326 'from' => "$domainEmailName <$domainEmailAddress>",
327 'toEmail' => $to,
328 'cc' => $cc,
329 )
330 );
331
332 if ($sent) {
333 $notifyStatus = ts('A notification email has been sent to the site administrator.');
334 }
335 }
336
337 CRM_Core_BAO_File::processAttachment($params, 'civicrm_pcp', $pcp->id);
338
339 // send email notification to supporter, if initial setup / add mode.
340 if (!$this->_pageId) {
341 CRM_PCP_BAO_PCP::sendStatusUpdate($pcp->id, $statusId, TRUE, $this->_component);
342 if ($approvalMessage && CRM_Utils_Array::value('status_id', $params) == 1) {
343 $notifyStatus .= ts(' You will receive a second email as soon as the review process is complete.');
344 }
345 }
346
347 //check if pcp created by anonymous user
348 $anonymousPCP = 0;
349 if (!$session->get('userID')) {
350 $anonymousPCP = 1;
351 }
352
353 CRM_Core_Session::setStatus(ts("Your Personal Campaign Page has been %1 %2 %3",
354 array(1 => $pageStatus, 2 => $approvalMessage, 3 => $notifyStatus)
355 ), '', 'info');
356 if (!$this->_pageId) {
357 $session->pushUserContext(CRM_Utils_System::url('civicrm/pcp/info', "reset=1&id={$pcp->id}&ap={$anonymousPCP}"));
358 }
359 elseif ($this->_context == 'dashboard') {
360 $session->pushUserContext(CRM_Utils_System::url('civicrm/admin/pcp', 'reset=1'));
361 }
362 }
363
364 }