CIVI-28 Added check for lineitems and delete operations from actions
[civicrm-core.git] / CRM / Contribute / Selector / Search.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
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 */
40class 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
6a488035
TO
46 */
47 static $_links = NULL;
48
49 /**
100fef9d 50 * We use desc to remind us what that column is, name is used in the tpl
6a488035
TO
51 *
52 * @var array
6a488035
TO
53 */
54 static $_columnHeaders;
55
56 /**
57 * Properties of contact we're interested in displaying
58 * @var array
6a488035
TO
59 */
60 static $_properties = array(
61 'contact_id',
62 'contribution_id',
63 'contact_type',
64 'sort_name',
65 'amount_level',
66 'total_amount',
e777c2b6 67 'financial_type',
6a488035
TO
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',
36bf52ef 81 'contribution_soft_credit_name',
d4e2b978 82 'contribution_soft_credit_contact_id',
36bf52ef
DS
83 'contribution_soft_credit_amount',
84 'contribution_soft_credit_type',
6a488035
TO
85 );
86
87 /**
100fef9d 88 * Are we restricting ourselves to a single contact
6a488035 89 *
6a488035
TO
90 * @var boolean
91 */
92 protected $_single = FALSE;
93
94 /**
100fef9d 95 * Are we restricting ourselves to a single contact
6a488035 96 *
6a488035
TO
97 * @var boolean
98 */
99 protected $_limit = NULL;
100
101 /**
100fef9d 102 * What context are we being invoked from
6a488035 103 *
6a488035
TO
104 * @var string
105 */
106 protected $_context = NULL;
107
108 /**
100fef9d 109 * What component context are we being invoked from
6a488035 110 *
6a488035
TO
111 * @var string
112 */
113 protected $_compContext = NULL;
114
115 /**
100fef9d 116 * QueryParams is the array returned by exportValues called on
6a488035
TO
117 * the HTML_QuickForm_Controller for that page.
118 *
119 * @var array
6a488035
TO
120 */
121 public $_queryParams;
122
123 /**
100fef9d 124 * Represent the type of selector
6a488035
TO
125 *
126 * @var int
6a488035
TO
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
36bf52ef
DS
144 protected $_includeSoftCredits = FALSE;
145
6a488035 146 /**
fe482240 147 * Class constructor.
6a488035 148 *
014c4014
TO
149 * @param array $queryParams
150 * Array of parameters for query.
da6b46f4 151 * @param \const|int $action - action of search basic or advanced.
014c4014
TO
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.
6a488035 158 *
da6b46f4
EM
159 * @param string $context
160 * @param null $compContext
161 *
162 * @return \CRM_Contribute_Selector_Search
6a488035 163 */
8d7a9d07 164 public function __construct(
a13f3d8c 165 &$queryParams,
874c9be7 166 $action = CRM_Core_Action::NONE,
6a488035 167 $contributionClause = NULL,
874c9be7
TO
168 $single = FALSE,
169 $limit = NULL,
170 $context = 'search',
171 $compContext = NULL
6a488035
TO
172 ) {
173
174 // submitted form values
175 $this->_queryParams = &$queryParams;
176
353ffa53
TO
177 $this->_single = $single;
178 $this->_limit = $limit;
179 $this->_context = $context;
6a488035
TO
180 $this->_compContext = $compContext;
181
182 $this->_contributionClause = $contributionClause;
183
184 // type of selector
185 $this->_action = $action;
186
d4e2b978 187 $this->_includeSoftCredits = CRM_Contribute_BAO_Query::isSoftCreditOptionEnabled($this->_queryParams);
36bf52ef
DS
188 $this->_query = new CRM_Contact_BAO_Query(
189 $this->_queryParams,
190 CRM_Contribute_BAO_Query::defaultReturnProperties(
191 CRM_Contact_BAO_Query::MODE_CONTRIBUTE,
f654cacf 192 FALSE
6a488035
TO
193 ),
194 NULL, FALSE, FALSE,
195 CRM_Contact_BAO_Query::MODE_CONTRIBUTE
196 );
3dbf477c
DS
197 if ($this->_includeSoftCredits) {
198 $this->_query->_rowCountClause = " count(civicrm_contribution.id)";
ed81a415 199 $this->_query->_groupByComponentClause = " GROUP BY contribution_search_scredit_combined.id, contribution_search_scredit_combined.contact_id, contribution_search_scredit_combined.scredit_id ";
0db6c3e1
TO
200 }
201 else {
3dbf477c
DS
202 $this->_query->_distinctComponentClause = " civicrm_contribution.id";
203 $this->_query->_groupByComponentClause = " GROUP BY civicrm_contribution.id ";
204 }
6a488035 205 }
6a488035
TO
206
207 /**
208 * This method returns the links that are given for each search row.
209 * currently the links added for each row are
210 *
211 * - View
212 * - Edit
213 *
100fef9d 214 * @param int $componentId
fd31fa4c
EM
215 * @param null $componentAction
216 * @param null $key
217 * @param null $compContext
218 *
6a488035 219 * @return array
6a488035 220 */
00be9182 221 public static function &links($componentId = NULL, $componentAction = NULL, $key = NULL, $compContext = NULL) {
6a488035
TO
222 $extraParams = NULL;
223 if ($componentId) {
224 $extraParams = "&compId={$componentId}&compAction={$componentAction}";
225 }
226 if ($compContext) {
227 $extraParams .= "&compContext={$compContext}";
228 }
229 if ($key) {
230 $extraParams .= "&key={$key}";
231 }
232
233 if (!(self::$_links)) {
234 self::$_links = array(
235 CRM_Core_Action::VIEW => array(
236 'name' => ts('View'),
237 'url' => 'civicrm/contact/view/contribution',
238 'qs' => "reset=1&id=%%id%%&cid=%%cid%%&action=view&context=%%cxt%%&selectedChild=contribute{$extraParams}",
239 'title' => ts('View Contribution'),
240 ),
241 CRM_Core_Action::UPDATE => array(
242 'name' => ts('Edit'),
243 'url' => 'civicrm/contact/view/contribution',
244 'qs' => "reset=1&action=update&id=%%id%%&cid=%%cid%%&context=%%cxt%%{$extraParams}",
245 'title' => ts('Edit Contribution'),
246 ),
247 CRM_Core_Action::DELETE => array(
248 'name' => ts('Delete'),
249 'url' => 'civicrm/contact/view/contribution',
250 'qs' => "reset=1&action=delete&id=%%id%%&cid=%%cid%%&context=%%cxt%%{$extraParams}",
251 'title' => ts('Delete Contribution'),
252 ),
253 );
254 }
255 return self::$_links;
256 }
6a488035
TO
257
258 /**
100fef9d 259 * Getter for array of the parameters required for creating pager.
6a488035 260 *
da6b46f4 261 * @param $action
c490a46a 262 * @param array $params
6a488035 263 */
00be9182 264 public function getPagerParams($action, &$params) {
6a488035
TO
265 $params['status'] = ts('Contribution') . ' %%StatusMessage%%';
266 $params['csvString'] = NULL;
267 if ($this->_limit) {
268 $params['rowCount'] = $this->_limit;
269 }
270 else {
271 $params['rowCount'] = CRM_Utils_Pager::ROWCOUNT;
272 }
273
274 $params['buttonTop'] = 'PagerTopButton';
275 $params['buttonBottom'] = 'PagerBottomButton';
276 }
6a488035
TO
277
278 /**
279 * Returns total number of rows for the query.
280 *
7fe37828 281 * @param string $action
6a488035 282 *
a6c01b45
CW
283 * @return int
284 * Total number of rows
6a488035 285 */
00be9182 286 public function getTotalCount($action) {
6a488035
TO
287 return $this->_query->searchQuery(0, 0, NULL,
288 TRUE, FALSE,
289 FALSE, FALSE,
290 FALSE,
291 $this->_contributionClause
292 );
293 }
294
295 /**
fe482240 296 * Returns all the rows in the given offset and rowCount.
6a488035 297 *
3f8d2862 298 * @param string $action
014c4014
TO
299 * The action being performed.
300 * @param int $offset
301 * The row number to start from.
302 * @param int $rowCount
303 * The number of rows to return.
304 * @param string $sort
305 * The sql string that describes the sort order.
3f8d2862 306 * @param string $output
014c4014 307 * What should the result set include (web/email/csv).
6a488035 308 *
a6c01b45
CW
309 * @return int
310 * the total number of rows for this action
6a488035 311 */
00be9182 312 public function &getRows($action, $offset, $rowCount, $sort, $output = NULL) {
4f3846df
DS
313 if ($this->_includeSoftCredits) {
314 // especial sort order when rows include soft credits
315 $sort = "civicrm_contribution.receive_date DESC, civicrm_contribution.id, civicrm_contribution_soft.id";
316 }
6a488035
TO
317 $result = $this->_query->searchQuery($offset, $rowCount, $sort,
318 FALSE, FALSE,
319 FALSE, FALSE,
320 FALSE,
321 $this->_contributionClause
322 );
323 // process the result of the query
324 $rows = array();
325
326 //CRM-4418 check for view/edit/delete
327 $permissions = array(CRM_Core_Permission::VIEW);
328 if (CRM_Core_Permission::check('edit contributions')) {
329 $permissions[] = CRM_Core_Permission::EDIT;
330 }
331 if (CRM_Core_Permission::check('delete in CiviContribute')) {
332 $permissions[] = CRM_Core_Permission::DELETE;
333 }
334 $mask = CRM_Core_Action::mask($permissions);
335
336 $qfKey = $this->_key;
337 $componentId = $componentContext = NULL;
338 if ($this->_context != 'contribute') {
353ffa53
TO
339 $qfKey = CRM_Utils_Request::retrieve('key', 'String', CRM_Core_DAO::$_nullObject);
340 $componentId = CRM_Utils_Request::retrieve('id', 'Positive', CRM_Core_DAO::$_nullObject);
341 $componentAction = CRM_Utils_Request::retrieve('action', 'String', CRM_Core_DAO::$_nullObject);
6a488035
TO
342 $componentContext = CRM_Utils_Request::retrieve('compContext', 'String', CRM_Core_DAO::$_nullObject);
343
344 if (!$componentContext &&
345 $this->_compContext
346 ) {
347 $componentContext = $this->_compContext;
348 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', CRM_Core_DAO::$_nullObject, NULL, FALSE, 'REQUEST');
349 }
350 }
351
352 // get all contribution status
353 $contributionStatuses = CRM_Core_OptionGroup::values('contribution_status',
354 FALSE, FALSE, FALSE, NULL, 'name', FALSE
355 );
356
357 //get all campaigns.
358 $allCampaigns = CRM_Campaign_BAO_Campaign::getCampaigns(NULL, NULL, FALSE, FALSE, FALSE, TRUE);
359
874c9be7 360 while ($result->fetch()) {
b501fa94
E
361 $links = self::links($componentId,
362 $componentAction,
363 $qfKey,
364 $componentContext
365 );
a964bc8e 366 $checkLineItem = FALSE;
6a488035 367 $row = array();
a964bc8e
E
368 // Now check for lineItems
369 $lineItems = CRM_Price_BAO_LineItem::getLineItemsByContributionID($result->id);
48da6700 370 foreach ($lineItems as $items) {
a964bc8e
E
371 if (!CRM_Core_Permission::check('view contributions of type ' . CRM_Contribute_PseudoConstant::financialType($items['financial_type_id']))) {
372 $checkLineItem = TRUE;
373 break;
374 }
48da6700 375 if (!CRM_Core_Permission::check('edit contributions of type ' . CRM_Contribute_PseudoConstant::financialType($items['financial_type_id']))) {
2d0b158e 376 unset($links[CRM_Core_Action::UPDATE]);
48da6700 377 }
b501fa94 378 if (!CRM_Core_Permission::check('delete contributions of type ' . CRM_Contribute_PseudoConstant::financialType($items['financial_type_id']))) {
2d0b158e 379 unset($links[CRM_Core_Action::DELETE]);
48da6700 380 }
a964bc8e
E
381 }
382 if ($checkLineItem) {
383 continue;
384 }
7cebf167 385 if (!CRM_Core_Permission::check('edit contributions of type ' . CRM_Contribute_PseudoConstant::financialType($result->financial_type_id))) {
ad268ba4 386 unset($links[CRM_Core_Action::UPDATE]);
7cebf167
E
387 }
388 if (!CRM_Core_Permission::check('delete contributions of type ' . CRM_Contribute_PseudoConstant::financialType($result->financial_type_id))) {
ad268ba4 389 unset($links[CRM_Core_Action::DELETE]);
7cebf167 390 }
6a488035
TO
391 // the columns we are interested in
392 foreach (self::$_properties as $property) {
393 if (property_exists($result, $property)) {
394 $row[$property] = $result->$property;
395 }
396 }
397
398 //carry campaign on selectors.
399 $row['campaign'] = CRM_Utils_Array::value($result->contribution_campaign_id, $allCampaigns);
400 $row['campaign_id'] = $result->contribution_campaign_id;
401
402 // add contribution status name
403 $row['contribution_status_name'] = CRM_Utils_Array::value($row['contribution_status_id'],
404 $contributionStatuses
405 );
406
407 if ($result->is_pay_later && CRM_Utils_Array::value('contribution_status_name', $row) == 'Pending') {
408 $row['contribution_status'] .= ' (' . ts('Pay Later') . ')';
409 }
410 elseif (CRM_Utils_Array::value('contribution_status_name', $row) == 'Pending') {
411 $row['contribution_status'] .= ' (' . ts('Incomplete Transaction') . ')';
412 }
413
414 if ($row['is_test']) {
e777c2b6 415 $row['financial_type'] = $row['financial_type'] . ' (' . ts('test') . ')';
6a488035
TO
416 }
417
418 $row['checkbox'] = CRM_Core_Form::CB_PREFIX . $result->contribution_id;
419
6a488035
TO
420 $actions = array(
421 'id' => $result->contribution_id,
422 'cid' => $result->contact_id,
423 'cxt' => $this->_context,
424 );
425
e777c2b6 426 $row['action'] = CRM_Core_Action::formLink(
b501fa94 427 $links,
87dab4a4
AH
428 $mask, $actions,
429 ts('more'),
430 FALSE,
431 'contribution.selector.row',
432 'Contribution',
433 $result->contribution_id
6a488035
TO
434 );
435
874c9be7 436 $row['contact_type'] = CRM_Contact_BAO_Contact_Utils::getImage($result->contact_sub_type ? $result->contact_sub_type : $result->contact_type, FALSE, $result->contact_id
6a488035
TO
437 );
438
a7488080 439 if (!empty($row['amount_level'])) {
6a488035
TO
440 CRM_Event_BAO_Participant::fixEventLevel($row['amount_level']);
441 }
442
443 $rows[] = $row;
444 }
445
446 return $rows;
447 }
448
449 /**
1054415f 450 * @inheritDoc
6a488035 451 */
6a488035
TO
452 public function getQILL() {
453 return $this->_query->qill();
454 }
455
456 /**
100fef9d 457 * Returns the column headers as an array of tuples:
6a488035
TO
458 * (name, sortName (key to the sort array))
459 *
014c4014
TO
460 * @param string $action
461 * The action being performed.
3f8d2862 462 * @param string $output
014c4014 463 * What should the result set include (web/email/csv).
6a488035 464 *
a6c01b45
CW
465 * @return array
466 * the column headers that need to be displayed
6a488035
TO
467 */
468 public function &getColumnHeaders($action = NULL, $output = NULL) {
36bf52ef
DS
469 self::$_columnHeaders = array(
470 array(
4f3846df 471 'name' => $this->_includeSoftCredits ? ts('Contribution Amount') : ts('Amount'),
36bf52ef
DS
472 'sort' => 'total_amount',
473 'direction' => CRM_Utils_Sort::DONTCARE,
474 ),
36bf52ef 475 );
4f3846df 476 if ($this->_includeSoftCredits) {
8d7a9d07
CB
477 self::$_columnHeaders
478 = array_merge(
fd31fa4c 479 self::$_columnHeaders,
4f3846df
DS
480 array(
481 array(
482 'name' => ts('Soft Credit Amount'),
483 'sort' => 'contribution_soft_credit_amount',
484 'direction' => CRM_Utils_Sort::DONTCARE,
21dfd5f5 485 ),
4f3846df
DS
486 )
487 );
488 }
8d7a9d07
CB
489 self::$_columnHeaders
490 = array_merge(
fd31fa4c 491 self::$_columnHeaders,
4f3846df
DS
492 array(
493 array(
494 'name' => ts('Type'),
353ffa53 495 'sort' => 'financial_type',
4f3846df
DS
496 'direction' => CRM_Utils_Sort::DONTCARE,
497 ),
498 array(
499 'name' => ts('Source'),
500 'sort' => 'contribution_source',
501 'direction' => CRM_Utils_Sort::DONTCARE,
502 ),
503 array(
504 'name' => ts('Received'),
505 'sort' => 'receive_date',
506 'direction' => CRM_Utils_Sort::DESCENDING,
507 ),
508 array(
509 'name' => ts('Thank-you Sent'),
510 'sort' => 'thankyou_date',
511 'direction' => CRM_Utils_Sort::DONTCARE,
512 ),
513 array(
514 'name' => ts('Status'),
33a5a53d 515 'sort' => 'contribution_status',
4f3846df
DS
516 'direction' => CRM_Utils_Sort::DONTCARE,
517 ),
518 array(
519 'name' => ts('Premium'),
520 'sort' => 'product_name',
521 'direction' => CRM_Utils_Sort::DONTCARE,
522 ),
523 )
524 );
36bf52ef
DS
525 if (!$this->_single) {
526 $pre = array(
527 array('desc' => ts('Contact Type')),
6a488035 528 array(
36bf52ef
DS
529 'name' => ts('Name'),
530 'sort' => 'sort_name',
6a488035
TO
531 'direction' => CRM_Utils_Sort::DONTCARE,
532 ),
6a488035 533 );
36bf52ef
DS
534 self::$_columnHeaders = array_merge($pre, self::$_columnHeaders);
535 }
536 if ($this->_includeSoftCredits) {
006389de 537 self::$_columnHeaders = array_merge(
8d7a9d07
CB
538 self::$_columnHeaders,
539 array(
6a488035 540 array(
8d7a9d07
CB
541 'name' => ts('Soft Credit For'),
542 'sort' => 'contribution_soft_credit_name',
543 'direction' => CRM_Utils_Sort::DONTCARE,
544 ),
545 array(
546 'name' => ts('Soft Credit Type'),
547 'sort' => 'contribution_soft_credit_type',
548 'direction' => CRM_Utils_Sort::ASCENDING,
549 ),
550 )
551 );
6a488035 552 }
8d7a9d07
CB
553 self::$_columnHeaders
554 = array_merge(
4f3846df 555 self::$_columnHeaders, array(
21dfd5f5 556 array('desc' => ts('Actions')),
4f3846df
DS
557 )
558 );
6a488035
TO
559 return self::$_columnHeaders;
560 }
561
186c9c17
EM
562 /**
563 * @return mixed
564 */
00be9182 565 public function alphabetQuery() {
6a488035
TO
566 return $this->_query->searchQuery(NULL, NULL, NULL, FALSE, FALSE, TRUE);
567 }
568
186c9c17
EM
569 /**
570 * @return string
571 */
00be9182 572 public function &getQuery() {
6a488035
TO
573 return $this->_query;
574 }
575
576 /**
100fef9d 577 * Name of export file.
6a488035 578 *
014c4014
TO
579 * @param string $output
580 * Type of output.
6a488035 581 *
a6c01b45
CW
582 * @return string
583 * name of the file
6a488035 584 */
00be9182 585 public function getExportFileName($output = 'csv') {
6a488035
TO
586 return ts('CiviCRM Contribution Search');
587 }
588
186c9c17
EM
589 /**
590 * @return mixed
591 */
00be9182 592 public function getSummary() {
6a488035
TO
593 return $this->_query->summaryContribution($this->_context);
594 }
96025800 595
6a488035 596}