Merge pull request #9860 from JMAConsulting/CRM-20058
[civicrm-core.git] / CRM / Contribute / Selector / Search.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2017 |
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-2017
32 */
33
34 /**
35 * This class is used to retrieve and display a range of
36 * contacts that match the given criteria (specifically for
37 * results of advanced search options.
38 *
39 */
40 class CRM_Contribute_Selector_Search extends CRM_Core_Selector_Base implements CRM_Core_Selector_API {
41
42 /**
43 * This defines two actions- View and Edit.
44 *
45 * @var array
46 */
47 static $_links = NULL;
48
49 /**
50 * We use desc to remind us what that column is, name is used in the tpl
51 *
52 * @var array
53 */
54 static $_columnHeaders;
55
56 /**
57 * Properties of contact we're interested in displaying
58 * @var array
59 */
60 static $_properties = array(
61 'contact_id',
62 'contribution_id',
63 'contact_type',
64 'sort_name',
65 'amount_level',
66 'total_amount',
67 'financial_type',
68 'contribution_source',
69 'receive_date',
70 'thankyou_date',
71 'contribution_status_id',
72 'contribution_status',
73 'cancel_date',
74 'product_name',
75 'is_test',
76 'contribution_recur_id',
77 'receipt_date',
78 'membership_id',
79 'currency',
80 'contribution_campaign_id',
81 'contribution_soft_credit_name',
82 'contribution_soft_credit_contact_id',
83 'contribution_soft_credit_amount',
84 'contribution_soft_credit_type',
85 );
86
87 /**
88 * Are we restricting ourselves to a single contact
89 *
90 * @var boolean
91 */
92 protected $_single = FALSE;
93
94 /**
95 * Are we restricting ourselves to a single contact
96 *
97 * @var boolean
98 */
99 protected $_limit = NULL;
100
101 /**
102 * What context are we being invoked from
103 *
104 * @var string
105 */
106 protected $_context = NULL;
107
108 /**
109 * What component context are we being invoked from
110 *
111 * @var string
112 */
113 protected $_compContext = NULL;
114
115 /**
116 * QueryParams is the array returned by exportValues called on
117 * the HTML_QuickForm_Controller for that page.
118 *
119 * @var array
120 */
121 public $_queryParams;
122
123 /**
124 * Represent the type of selector
125 *
126 * @var int
127 */
128 protected $_action;
129
130 /**
131 * The additional clause that we restrict the search with
132 *
133 * @var string
134 */
135 protected $_contributionClause = NULL;
136
137 /**
138 * The query object
139 *
140 * @var string
141 */
142 protected $_query;
143
144 protected $_includeSoftCredits = FALSE;
145
146 /**
147 * Class constructor.
148 *
149 * @param array $queryParams
150 * Array of parameters for query.
151 * @param \const|int $action - action of search basic or advanced.
152 * @param string $contributionClause
153 * If the caller wants to further restrict the search (used in contributions).
154 * @param bool $single
155 * Are we dealing only with one contact?.
156 * @param int $limit
157 * How many contributions do we want returned.
158 *
159 * @param string $context
160 * @param null $compContext
161 *
162 * @return \CRM_Contribute_Selector_Search
163 */
164 public function __construct(
165 &$queryParams,
166 $action = CRM_Core_Action::NONE,
167 $contributionClause = NULL,
168 $single = FALSE,
169 $limit = NULL,
170 $context = 'search',
171 $compContext = NULL
172 ) {
173
174 // submitted form values
175 $this->_queryParams = &$queryParams;
176
177 $this->_single = $single;
178 $this->_limit = $limit;
179 $this->_context = $context;
180 $this->_compContext = $compContext;
181
182 $this->_contributionClause = $contributionClause;
183
184 // type of selector
185 $this->_action = $action;
186 $returnProperties = CRM_Contribute_BAO_Query::selectorReturnProperties();
187 $this->_includeSoftCredits = CRM_Contribute_BAO_Query::isSoftCreditOptionEnabled($this->_queryParams);
188 $this->_query = new CRM_Contact_BAO_Query(
189 $this->_queryParams,
190 $returnProperties,
191 NULL, FALSE, FALSE,
192 CRM_Contact_BAO_Query::MODE_CONTRIBUTE
193 );
194 // @todo the function CRM_Contribute_BAO_Query::isSoftCreditOptionEnabled should handle this
195 // can we remove? if not why not?
196 if ($this->_includeSoftCredits) {
197 $this->_query->_rowCountClause = " count(civicrm_contribution.id)";
198 $this->_query->_groupByComponentClause = " GROUP BY contribution_search_scredit_combined.id, contribution_search_scredit_combined.contact_id, contribution_search_scredit_combined.scredit_id ";
199 }
200 else {
201 $this->_query->_distinctComponentClause = " civicrm_contribution.id";
202 $this->_query->_groupByComponentClause = " GROUP BY civicrm_contribution.id ";
203 }
204 }
205
206 /**
207 * This method returns the links that are given for each search row.
208 * currently the links added for each row are
209 *
210 * - View
211 * - Edit
212 *
213 * @param int $componentId
214 * @param null $componentAction
215 * @param null $key
216 * @param null $compContext
217 *
218 * @return array
219 */
220 public static function &links($componentId = NULL, $componentAction = NULL, $key = NULL, $compContext = NULL) {
221 $extraParams = NULL;
222 if ($componentId) {
223 $extraParams = "&compId={$componentId}&compAction={$componentAction}";
224 }
225 if ($compContext) {
226 $extraParams .= "&compContext={$compContext}";
227 }
228 if ($key) {
229 $extraParams .= "&key={$key}";
230 }
231
232 if (!(self::$_links)) {
233 self::$_links = array(
234 CRM_Core_Action::VIEW => array(
235 'name' => ts('View'),
236 'url' => 'civicrm/contact/view/contribution',
237 'qs' => "reset=1&id=%%id%%&cid=%%cid%%&action=view&context=%%cxt%%&selectedChild=contribute{$extraParams}",
238 'title' => ts('View Contribution'),
239 ),
240 CRM_Core_Action::UPDATE => array(
241 'name' => ts('Edit'),
242 'url' => 'civicrm/contact/view/contribution',
243 'qs' => "reset=1&action=update&id=%%id%%&cid=%%cid%%&context=%%cxt%%{$extraParams}",
244 'title' => ts('Edit Contribution'),
245 ),
246 CRM_Core_Action::DELETE => array(
247 'name' => ts('Delete'),
248 'url' => 'civicrm/contact/view/contribution',
249 'qs' => "reset=1&action=delete&id=%%id%%&cid=%%cid%%&context=%%cxt%%{$extraParams}",
250 'title' => ts('Delete Contribution'),
251 ),
252 );
253 }
254 return self::$_links;
255 }
256
257 /**
258 * Getter for array of the parameters required for creating pager.
259 *
260 * @param $action
261 * @param array $params
262 */
263 public function getPagerParams($action, &$params) {
264 $params['status'] = ts('Contribution') . ' %%StatusMessage%%';
265 $params['csvString'] = NULL;
266 if ($this->_limit) {
267 $params['rowCount'] = $this->_limit;
268 }
269 else {
270 $params['rowCount'] = CRM_Utils_Pager::ROWCOUNT;
271 }
272
273 $params['buttonTop'] = 'PagerTopButton';
274 $params['buttonBottom'] = 'PagerBottomButton';
275 }
276
277 /**
278 * Returns total number of rows for the query.
279 *
280 * @param string $action
281 *
282 * @return int
283 * Total number of rows
284 */
285 public function getTotalCount($action) {
286 return $this->_query->searchQuery(0, 0, NULL,
287 TRUE, FALSE,
288 FALSE, FALSE,
289 FALSE,
290 $this->_contributionClause
291 );
292 }
293
294 /**
295 * Returns all the rows in the given offset and rowCount.
296 *
297 * @param string $action
298 * The action being performed.
299 * @param int $offset
300 * The row number to start from.
301 * @param int $rowCount
302 * The number of rows to return.
303 * @param string $sort
304 * The sql string that describes the sort order.
305 * @param string $output
306 * What should the result set include (web/email/csv).
307 *
308 * @return int
309 * the total number of rows for this action
310 */
311 public function &getRows($action, $offset, $rowCount, $sort, $output = NULL) {
312 if ($this->_includeSoftCredits) {
313 // especial sort order when rows include soft credits
314 $sort = $sort->orderBy() . ", civicrm_contribution.id, civicrm_contribution_soft.id";
315 }
316 $result = $this->_query->searchQuery($offset, $rowCount, $sort,
317 FALSE, FALSE,
318 FALSE, FALSE,
319 FALSE,
320 $this->_contributionClause
321 );
322 // process the result of the query
323 $rows = array();
324
325 //CRM-4418 check for view/edit/delete
326 $permissions = array(CRM_Core_Permission::VIEW);
327 if (CRM_Core_Permission::check('edit contributions')) {
328 $permissions[] = CRM_Core_Permission::EDIT;
329 }
330 if (CRM_Core_Permission::check('delete in CiviContribute')) {
331 $permissions[] = CRM_Core_Permission::DELETE;
332 }
333 $mask = CRM_Core_Action::mask($permissions);
334
335 $qfKey = $this->_key;
336 $componentId = $componentContext = NULL;
337 if ($this->_context != 'contribute') {
338 // @todo explain the significance of context & why we do not get these i that context.
339 $qfKey = CRM_Utils_Request::retrieve('key', 'String');
340 $componentId = CRM_Utils_Request::retrieve('id', 'Positive');
341 $componentAction = CRM_Utils_Request::retrieve('action', 'String');
342 $componentContext = CRM_Utils_Request::retrieve('compContext', 'String');
343
344 if (!$componentContext &&
345 $this->_compContext
346 ) {
347 // @todo explain when this condition might occur.
348 $componentContext = $this->_compContext;
349 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', CRM_Core_DAO::$_nullObject, NULL, FALSE, 'REQUEST');
350 }
351 // CRM-17628 for some reason qfKey is not always set when searching from contribution search.
352 // as a result if the edit link is opened using right-click + open in new tab
353 // then the browser is not returned to the search results on save.
354 // This is an effort to getting the qfKey without, sadly, understanding the intent of those who came before me.
355 if (empty($qfKey)) {
356 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', CRM_Core_DAO::$_nullObject, NULL, FALSE, 'REQUEST');
357 }
358 }
359
360 // get all contribution status
361 $contributionStatuses = CRM_Core_OptionGroup::values('contribution_status',
362 FALSE, FALSE, FALSE, NULL, 'name', FALSE
363 );
364
365 //get all campaigns.
366 $allCampaigns = CRM_Campaign_BAO_Campaign::getCampaigns(NULL, NULL, FALSE, FALSE, FALSE, TRUE);
367
368 while ($result->fetch()) {
369 $this->_query->convertToPseudoNames($result);
370 $links = self::links($componentId,
371 $componentAction,
372 $qfKey,
373 $componentContext
374 );
375 $checkLineItem = FALSE;
376 $row = array();
377 // Now check for lineItems
378 if (CRM_Financial_BAO_FinancialType::isACLFinancialTypeStatus()) {
379 $lineItems = CRM_Price_BAO_LineItem::getLineItemsByContributionID($result->id);
380 foreach ($lineItems as $items) {
381 if (!CRM_Core_Permission::check('view contributions of type ' . CRM_Contribute_PseudoConstant::financialType($items['financial_type_id']))) {
382 $checkLineItem = TRUE;
383 break;
384 }
385 if (!CRM_Core_Permission::check('edit contributions of type ' . CRM_Contribute_PseudoConstant::financialType($items['financial_type_id']))) {
386 unset($links[CRM_Core_Action::UPDATE]);
387 }
388 if (!CRM_Core_Permission::check('delete contributions of type ' . CRM_Contribute_PseudoConstant::financialType($items['financial_type_id']))) {
389 unset($links[CRM_Core_Action::DELETE]);
390 }
391 }
392 if ($checkLineItem) {
393 continue;
394 }
395 if (!CRM_Core_Permission::check('edit contributions of type ' . CRM_Contribute_PseudoConstant::financialType($result->financial_type_id))) {
396 unset($links[CRM_Core_Action::UPDATE]);
397 }
398 if (!CRM_Core_Permission::check('delete contributions of type ' . CRM_Contribute_PseudoConstant::financialType($result->financial_type_id))) {
399 unset($links[CRM_Core_Action::DELETE]);
400 }
401 }
402 // the columns we are interested in
403 foreach (self::$_properties as $property) {
404 if (property_exists($result, $property)) {
405 $row[$property] = $result->$property;
406 }
407 }
408
409 //carry campaign on selectors.
410 // @todo - I can't find any evidence that 'carrying' the campaign on selectors actually
411 // results in it being displayed anywhere so why do we do this???
412 $row['campaign'] = CRM_Utils_Array::value($result->contribution_campaign_id, $allCampaigns);
413 $row['campaign_id'] = $result->contribution_campaign_id;
414
415 // add contribution status name
416 $row['contribution_status_name'] = CRM_Utils_Array::value($row['contribution_status_id'],
417 $contributionStatuses
418 );
419
420 $isPayLater = FALSE;
421 if ($result->is_pay_later && CRM_Utils_Array::value('contribution_status_name', $row) == 'Pending') {
422 $isPayLater = TRUE;
423 $row['contribution_status'] .= ' (' . ts('Pay Later') . ')';
424 $links[CRM_Core_Action::ADD] = array(
425 'name' => ts('Pay with Credit Card'),
426 'url' => 'civicrm/contact/view/contribution',
427 'qs' => 'reset=1&action=update&id=%%id%%&cid=%%cid%%&context=%%cxt%%&mode=live',
428 'title' => ts('Pay with Credit Card'),
429 );
430 }
431 elseif (CRM_Utils_Array::value('contribution_status_name', $row) == 'Pending') {
432 $row['contribution_status'] .= ' (' . ts('Incomplete Transaction') . ')';
433 }
434
435 if ($row['is_test']) {
436 $row['financial_type'] = $row['financial_type'] . ' (' . ts('test') . ')';
437 }
438
439 $row['checkbox'] = CRM_Core_Form::CB_PREFIX . $result->contribution_id;
440
441 $actions = array(
442 'id' => $result->contribution_id,
443 'cid' => $result->contact_id,
444 'cxt' => $this->_context,
445 );
446
447 if (in_array($row['contribution_status_name'], array('Partially paid', 'Pending refund')) || $isPayLater) {
448 $buttonName = ts('Record Payment');
449 if ($row['contribution_status_name'] == 'Pending refund') {
450 $buttonName = ts('Record Refund');
451 }
452 elseif (CRM_Core_Config::isEnabledBackOfficeCreditCardPayments()) {
453 $links[CRM_Core_Action::BASIC] = array(
454 'name' => ts('Submit Credit Card payment'),
455 'url' => 'civicrm/payment/add',
456 'qs' => 'reset=1&id=%%id%%&cid=%%cid%%&action=add&component=contribution&mode=live',
457 'title' => ts('Submit Credit Card payment'),
458 );
459 }
460 $links[CRM_Core_Action::ADD] = array(
461 'name' => $buttonName,
462 'url' => 'civicrm/payment',
463 'qs' => 'reset=1&id=%%id%%&cid=%%cid%%&action=add&component=contribution',
464 'title' => $buttonName,
465 );
466 }
467
468 $row['action'] = CRM_Core_Action::formLink(
469 $links,
470 $mask, $actions,
471 ts('more'),
472 FALSE,
473 'contribution.selector.row',
474 'Contribution',
475 $result->contribution_id
476 );
477
478 $row['contact_type'] = CRM_Contact_BAO_Contact_Utils::getImage($result->contact_sub_type ? $result->contact_sub_type : $result->contact_type, FALSE, $result->contact_id
479 );
480
481 if (!empty($row['amount_level'])) {
482 CRM_Event_BAO_Participant::fixEventLevel($row['amount_level']);
483 }
484
485 $rows[] = $row;
486 }
487
488 return $rows;
489 }
490
491 /**
492 * @inheritDoc
493 */
494 public function getQILL() {
495 return $this->_query->qill();
496 }
497
498 /**
499 * Returns the column headers as an array of tuples:
500 * (name, sortName (key to the sort array))
501 *
502 * @param string $action
503 * The action being performed.
504 * @param string $output
505 * What should the result set include (web/email/csv).
506 *
507 * @return array
508 * the column headers that need to be displayed
509 */
510 public function &getColumnHeaders($action = NULL, $output = NULL) {
511 $pre = array();
512 self::$_columnHeaders = array(
513 array(
514 'name' => $this->_includeSoftCredits ? ts('Contribution Amount') : ts('Amount'),
515 'sort' => 'total_amount',
516 'direction' => CRM_Utils_Sort::DONTCARE,
517 ),
518 );
519 if ($this->_includeSoftCredits) {
520 self::$_columnHeaders
521 = array_merge(
522 self::$_columnHeaders,
523 array(
524 array(
525 'name' => ts('Soft Credit Amount'),
526 'sort' => 'contribution_soft_credit_amount',
527 'direction' => CRM_Utils_Sort::DONTCARE,
528 ),
529 )
530 );
531 }
532 self::$_columnHeaders
533 = array_merge(
534 self::$_columnHeaders,
535 array(
536 array(
537 'name' => ts('Type'),
538 'sort' => 'financial_type',
539 'direction' => CRM_Utils_Sort::DONTCARE,
540 ),
541 array(
542 'name' => ts('Source'),
543 'sort' => 'contribution_source',
544 'direction' => CRM_Utils_Sort::DONTCARE,
545 ),
546 array(
547 'name' => ts('Received'),
548 'sort' => 'receive_date',
549 'direction' => CRM_Utils_Sort::DESCENDING,
550 ),
551 array(
552 'name' => ts('Thank-you Sent'),
553 'sort' => 'thankyou_date',
554 'direction' => CRM_Utils_Sort::DONTCARE,
555 ),
556 array(
557 'name' => ts('Status'),
558 'sort' => 'contribution_status',
559 'direction' => CRM_Utils_Sort::DONTCARE,
560 ),
561 array(
562 'name' => ts('Premium'),
563 'sort' => 'product_name',
564 'direction' => CRM_Utils_Sort::DONTCARE,
565 ),
566 )
567 );
568 if (!$this->_single) {
569 $pre = array(
570 array(
571 'name' => ts('Name'),
572 'sort' => 'sort_name',
573 'direction' => CRM_Utils_Sort::DONTCARE,
574 ),
575 );
576 }
577 self::$_columnHeaders = array_merge($pre, self::$_columnHeaders);
578 if ($this->_includeSoftCredits) {
579 self::$_columnHeaders = array_merge(
580 self::$_columnHeaders,
581 array(
582 array(
583 'name' => ts('Soft Credit For'),
584 'sort' => 'contribution_soft_credit_name',
585 'direction' => CRM_Utils_Sort::DONTCARE,
586 ),
587 array(
588 'name' => ts('Soft Credit Type'),
589 'sort' => 'contribution_soft_credit_type',
590 'direction' => CRM_Utils_Sort::ASCENDING,
591 ),
592 )
593 );
594 }
595 self::$_columnHeaders
596 = array_merge(
597 self::$_columnHeaders, array(
598 array('desc' => ts('Actions')),
599 )
600 );
601 CRM_Core_Smarty::singleton()->assign('softCreditColumns', $this->_includeSoftCredits);
602 return self::$_columnHeaders;
603 }
604
605 /**
606 * @return mixed
607 */
608 public function alphabetQuery() {
609 return $this->_query->searchQuery(NULL, NULL, NULL, FALSE, FALSE, TRUE);
610 }
611
612 /**
613 * @return string
614 */
615 public function &getQuery() {
616 return $this->_query;
617 }
618
619 /**
620 * Name of export file.
621 *
622 * @param string $output
623 * Type of output.
624 *
625 * @return string
626 * name of the file
627 */
628 public function getExportFileName($output = 'csv') {
629 return ts('CiviCRM Contribution Search');
630 }
631
632 /**
633 * @return mixed
634 */
635 public function getSummary() {
636 return $this->_query->summaryContribution($this->_context);
637 }
638
639 }