Merge pull request #7244 from systopia/CRM-17589
[civicrm-core.git] / CRM / Contribute / Form / Search.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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-2015
32 */
33
34 /**
35 * Advanced search, extends basic search.
36 */
37 class CRM_Contribute_Form_Search extends CRM_Core_Form_Search {
38
39 /**
40 * The params that are sent to the query.
41 *
42 * @var array
43 */
44 protected $_queryParams;
45
46 /**
47 * Are we restricting ourselves to a single contact.
48 *
49 * @var boolean
50 */
51 protected $_single = FALSE;
52
53 /**
54 * Are we restricting ourselves to a single contact.
55 *
56 * @var boolean
57 */
58 protected $_limit = NULL;
59
60 /**
61 * Prefix for the controller.
62 */
63 protected $_prefix = "contribute_";
64
65 /**
66 * Processing needed for buildForm and later.
67 */
68 public function preProcess() {
69 $this->set('searchFormName', 'Search');
70
71 $this->_searchButtonName = $this->getButtonName('refresh');
72 $this->_actionButtonName = $this->getButtonName('next', 'action');
73
74 $this->_done = FALSE;
75 // @todo - is this an error - $this->_defaults is used.
76 $this->defaults = array();
77
78 /*
79 * we allow the controller to set force/reset externally, useful when we are being
80 * driven by the wizard framework
81 */
82
83 $this->_reset = CRM_Utils_Request::retrieve('reset', 'Boolean', CRM_Core_DAO::$_nullObject);
84 $this->_force = CRM_Utils_Request::retrieve('force', 'Boolean', $this, FALSE);
85 $this->_limit = CRM_Utils_Request::retrieve('limit', 'Positive', $this);
86 $this->_context = CRM_Utils_Request::retrieve('context', 'String', $this, FALSE, 'search');
87
88 $this->assign("context", $this->_context);
89
90 // get user submitted values
91 // get it from controller only if form has been submitted, else preProcess has set this
92 if (!empty($_POST)) {
93 $this->_formValues = $this->controller->exportValues($this->_name);
94 }
95 else {
96 $this->_formValues = $this->get('formValues');
97 }
98
99 //membership ID
100 $memberShipId = CRM_Utils_Request::retrieve('memberId', 'Positive', $this);
101 if (isset($memberShipId)) {
102 $this->_formValues['contribution_membership_id'] = $memberShipId;
103 }
104 $participantId = CRM_Utils_Request::retrieve('participantId', 'Positive', $this);
105 if (isset($participantId)) {
106 $this->_formValues['contribution_participant_id'] = $participantId;
107 }
108
109 if ($this->_force) {
110 $this->postProcess();
111 $this->set('force', 0);
112 }
113
114 $sortID = NULL;
115 if ($this->get(CRM_Utils_Sort::SORT_ID)) {
116 $sortID = CRM_Utils_Sort::sortIDValue($this->get(CRM_Utils_Sort::SORT_ID),
117 $this->get(CRM_Utils_Sort::SORT_DIRECTION)
118 );
119 }
120
121 $this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
122 $selector = new CRM_Contribute_Selector_Search($this->_queryParams,
123 $this->_action,
124 NULL,
125 $this->_single,
126 $this->_limit,
127 $this->_context
128 );
129 $prefix = NULL;
130 if ($this->_context == 'user') {
131 $prefix = $this->_prefix;
132 }
133
134 $this->assign("{$prefix}limit", $this->_limit);
135 $this->assign("{$prefix}single", $this->_single);
136
137 $controller = new CRM_Core_Selector_Controller($selector,
138 $this->get(CRM_Utils_Pager::PAGE_ID),
139 $sortID,
140 CRM_Core_Action::VIEW,
141 $this,
142 CRM_Core_Selector_Controller::TRANSFER,
143 $prefix
144 );
145
146 $controller->setEmbedded(TRUE);
147 $controller->moveFromSessionToTemplate();
148
149 $this->assign('contributionSummary', $this->get('summary'));
150 }
151
152 /**
153 * Set defaults.
154 *
155 * @return array
156 */
157 public function setDefaultValues() {
158 if (empty($this->_defaults['contribution_status'])) {
159 $this->_defaults['contribution_status'][1] = 1;
160 }
161 return $this->_defaults;
162 }
163
164 /**
165 * Build the form object.
166 */
167 public function buildQuickForm() {
168 parent::buildQuickForm();
169 $this->addSortNameField();
170
171 $this->_group = CRM_Core_PseudoConstant::nestedGroup();
172
173 // multiselect for groups
174 if ($this->_group) {
175 $this->add('select', 'group', ts('Groups'), $this->_group, FALSE,
176 array('id' => 'group', 'multiple' => 'multiple', 'class' => 'crm-select2')
177 );
178 }
179
180 // multiselect for tags
181 $contactTags = CRM_Core_BAO_Tag::getTags();
182
183 if ($contactTags) {
184 $this->add('select', 'contact_tags', ts('Tags'), $contactTags, FALSE,
185 array('id' => 'contact_tags', 'multiple' => 'multiple', 'class' => 'crm-select2')
186 );
187 }
188
189 CRM_Contribute_BAO_Query::buildSearchForm($this);
190
191 $rows = $this->get('rows');
192 if (is_array($rows)) {
193 if (!$this->_single) {
194 $this->addRowSelectors($rows);
195 }
196
197 $permission = CRM_Core_Permission::getPermission();
198
199 $queryParams = $this->get('queryParams');
200 $softCreditFiltering = FALSE;
201 if (!empty($queryParams)) {
202 $softCreditFiltering = CRM_Contribute_BAO_Query::isSoftCreditOptionEnabled($queryParams);
203 }
204 $tasks = CRM_Contribute_Task::permissionedTaskTitles($permission, $softCreditFiltering);
205 $this->addTaskMenu($tasks);
206 }
207
208 }
209
210 /**
211 * Get the label for the sortName field if email searching is on.
212 *
213 * (email searching is a setting under search preferences).
214 *
215 * @return string
216 */
217 protected function getSortNameLabelWithEmail() {
218 return ts('Contributor Name or Email');
219 }
220
221 /**
222 * Get the label for the sortName field if email searching is off.
223 *
224 * (email searching is a setting under search preferences).
225 *
226 * @return string
227 */
228 protected function getSortNameLabelWithOutEmail() {
229 return ts('Contributor Name');
230 }
231
232 /**
233 * The post processing of the form gets done here.
234 *
235 * Key things done during post processing are
236 * - check for reset or next request. if present, skip post processing.
237 * - now check if user requested running a saved search, if so, then
238 * the form values associated with the saved search are used for searching.
239 * - if user has done a submit with new values the regular post submission is
240 * done.
241 * The processing consists of using a Selector / Controller framework for getting the
242 * search results.
243 */
244 public function postProcess() {
245 if ($this->_done) {
246 return;
247 }
248
249 $this->_done = TRUE;
250
251 if (!empty($_POST)) {
252 $this->_formValues = $this->controller->exportValues($this->_name);
253 }
254
255 $this->fixFormValues();
256
257 // We don't show test records in summaries or dashboards
258 if (empty($this->_formValues['contribution_test']) && $this->_force && !empty($this->_context) && $this->_context == 'dashboard') {
259 $this->_formValues["contribution_test"] = 0;
260 }
261
262 foreach (array(
263 'contribution_amount_low',
264 'contribution_amount_high',
265 ) as $f) {
266 if (isset($this->_formValues[$f])) {
267 $this->_formValues[$f] = CRM_Utils_Rule::cleanMoney($this->_formValues[$f]);
268 }
269 }
270
271 $config = CRM_Core_Config::singleton();
272 if (!empty($_POST)) {
273 $specialParams = array(
274 'financial_type_id',
275 'contribution_soft_credit_type_id',
276 'contribution_status_id',
277 'contribution_source',
278 'contribution_trxn_id',
279 'contribution_page_id',
280 'contribution_product_id',
281 'invoice_id',
282 'payment_instrument_id',
283 );
284 CRM_Contact_BAO_Query::processSpecialFormValue($this->_formValues, $specialParams);
285
286 $tags = CRM_Utils_Array::value('contact_tags', $this->_formValues);
287 if ($tags && !is_array($tags)) {
288 unset($this->_formValues['contact_tags']);
289 $this->_formValues['contact_tags'][$tags] = 1;
290 }
291
292 if ($tags && is_array($tags)) {
293 unset($this->_formValues['contact_tags']);
294 foreach ($tags as $notImportant => $tagID) {
295 $this->_formValues['contact_tags'][$tagID] = 1;
296 }
297 }
298
299 if (!defined('CIVICRM_GROUPTREE')) {
300 $group = CRM_Utils_Array::value('group', $this->_formValues);
301 if ($group && !is_array($group)) {
302 unset($this->_formValues['group']);
303 $this->_formValues['group'][$group] = 1;
304 }
305
306 if ($group && is_array($group)) {
307 unset($this->_formValues['group']);
308 foreach ($group as $notImportant => $groupID) {
309 $this->_formValues['group'][$groupID] = 1;
310 }
311 }
312 }
313 }
314
315 CRM_Core_BAO_CustomValue::fixCustomFieldValue($this->_formValues);
316
317 $this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
318
319 $this->set('formValues', $this->_formValues);
320 $this->set('queryParams', $this->_queryParams);
321
322 $buttonName = $this->controller->getButtonName();
323 if ($buttonName == $this->_actionButtonName) {
324 // check actionName and if next, then do not repeat a search, since we are going to the next page
325
326 // hack, make sure we reset the task values
327 $stateMachine = $this->controller->getStateMachine();
328 $formName = $stateMachine->getTaskFormName();
329 $this->controller->resetPage($formName);
330 return;
331 }
332
333 $sortID = NULL;
334 if ($this->get(CRM_Utils_Sort::SORT_ID)) {
335 $sortID = CRM_Utils_Sort::sortIDValue($this->get(CRM_Utils_Sort::SORT_ID),
336 $this->get(CRM_Utils_Sort::SORT_DIRECTION)
337 );
338 }
339
340 $this->_queryParams = CRM_Contact_BAO_Query::convertFormValues($this->_formValues);
341 $selector = new CRM_Contribute_Selector_Search($this->_queryParams,
342 $this->_action,
343 NULL,
344 $this->_single,
345 $this->_limit,
346 $this->_context
347 );
348 $selector->setKey($this->controller->_key);
349
350 $prefix = NULL;
351 if ($this->_context == 'basic' || $this->_context == 'user') {
352 $prefix = $this->_prefix;
353 }
354
355 $controller = new CRM_Core_Selector_Controller($selector,
356 $this->get(CRM_Utils_Pager::PAGE_ID),
357 $sortID,
358 CRM_Core_Action::VIEW,
359 $this,
360 CRM_Core_Selector_Controller::SESSION,
361 $prefix
362 );
363 $controller->setEmbedded(TRUE);
364
365 $query = &$selector->getQuery();
366 if ($this->_context == 'user') {
367 $query->setSkipPermission(TRUE);
368 }
369 $summary = &$query->summaryContribution($this->_context);
370 $this->set('summary', $summary);
371 $this->assign('contributionSummary', $summary);
372 $controller->run();
373 }
374
375 /**
376 * Use values from $_GET if force is set to TRUE.
377 *
378 * Note that this means that GET over-rides POST. This was a historical decision & the reasoning is not explained.
379 */
380 public function fixFormValues() {
381 if (!$this->_force) {
382 return;
383 }
384
385 $status = CRM_Utils_Request::retrieve('status', 'String',
386 CRM_Core_DAO::$_nullObject
387 );
388 if ($status) {
389 $this->_formValues['contribution_status_id'] = array($status => 1);
390 $this->_defaults['contribution_status_id'] = array($status => 1);
391 }
392
393 $cid = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
394
395 if ($cid) {
396 $cid = CRM_Utils_Type::escape($cid, 'Integer');
397 if ($cid > 0) {
398 $this->_formValues['contact_id'] = $cid;
399 // @todo - why do we retrieve these when they are not used?
400 list($display, $image) = CRM_Contact_BAO_Contact::getDisplayAndImage($cid);
401 $this->_defaults['sort_name'] = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $cid,
402 'sort_name'
403 );
404 // also assign individual mode to the template
405 $this->_single = TRUE;
406 }
407 }
408
409 $lowDate = CRM_Utils_Request::retrieve('start', 'Timestamp',
410 CRM_Core_DAO::$_nullObject
411 );
412 if ($lowDate) {
413 $lowDate = CRM_Utils_Type::escape($lowDate, 'Timestamp');
414 $date = CRM_Utils_Date::setDateDefaults($lowDate);
415 $this->_formValues['contribution_date_low'] = $this->_defaults['contribution_date_low'] = $date[0];
416 }
417
418 $highDate = CRM_Utils_Request::retrieve('end', 'Timestamp',
419 CRM_Core_DAO::$_nullObject
420 );
421 if ($highDate) {
422 $highDate = CRM_Utils_Type::escape($highDate, 'Timestamp');
423 $date = CRM_Utils_Date::setDateDefaults($highDate);
424 $this->_formValues['contribution_date_high'] = $this->_defaults['contribution_date_high'] = $date[0];
425 }
426
427 if ($highDate || $lowDate) {
428 //set the Choose Date Range value
429 $this->_formValues['contribution_date_relative'] = 0;
430 }
431
432 $this->_limit = CRM_Utils_Request::retrieve('limit', 'Positive',
433 $this
434 );
435
436 $test = CRM_Utils_Request::retrieve('test', 'Boolean',
437 CRM_Core_DAO::$_nullObject
438 );
439 if (isset($test)) {
440 $test = CRM_Utils_Type::escape($test, 'Boolean');
441 $this->_formValues['contribution_test'] = $test;
442 }
443 //Recurring id
444 $recur = CRM_Utils_Request::retrieve('recur', 'Positive', $this, FALSE);
445 if ($recur) {
446 $this->_formValues['contribution_recur_id'] = $recur;
447 $this->_formValues['contribution_recurring'] = 1;
448 }
449
450 //check for contribution page id.
451 $contribPageId = CRM_Utils_Request::retrieve('pid', 'Positive', $this);
452 if ($contribPageId) {
453 $this->_formValues['contribution_page_id'] = $contribPageId;
454 }
455
456 //give values to default.
457 $this->_defaults = $this->_formValues;
458 }
459
460 /**
461 * Return a descriptive name for the page, used in wizard header.
462 *
463 * @return string
464 */
465 public function getTitle() {
466 return ts('Find Contributions');
467 }
468
469 }