preserve sorting for task actions, CRM-14082
[civicrm-core.git] / CRM / Contact / Selector.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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-2013
32 * $Id$
33 *
34 */
35
36 /**
37 * This class is used to retrieve and display a range of
38 * contacts that match the given criteria (specifically for
39 * results of advanced search options.
40 *
41 */
42 class CRM_Contact_Selector extends CRM_Core_Selector_Base implements CRM_Core_Selector_API {
43
44 /**
45 * This defines two actions- View and Edit.
46 *
47 * @var array
48 * @static
49 */
50 static $_links = NULL;
51
52 /**
53 * we use desc to remind us what that column is, name is used in the tpl
54 *
55 * @var array
56 * @static
57 */
58 static $_columnHeaders;
59
60 /**
61 * Properties of contact we're interested in displaying
62 * @var array
63 * @static
64 */
65 static $_properties = array(
66 'contact_id', 'contact_type', 'contact_sub_type',
67 'sort_name', 'street_address',
68 'city', 'state_province', 'postal_code', 'country',
69 'geo_code_1', 'geo_code_2', 'is_deceased',
70 'email', 'on_hold', 'phone', 'status',
71 'do_not_email', 'do_not_phone', 'do_not_mail',
72 );
73
74 /**
75 * formValues is the array returned by exportValues called on
76 * the HTML_QuickForm_Controller for that page.
77 *
78 * @var array
79 * @access protected
80 */
81 public $_formValues;
82
83 /**
84 * The contextMenu
85 *
86 * @var array
87 * @access protected
88 */
89 protected $_contextMenu;
90
91 /**
92 * params is the array in a value used by the search query creator
93 *
94 * @var array
95 * @access protected
96 */
97 public $_params;
98
99 /**
100 * The return properties used for search
101 *
102 * @var array
103 * @access protected
104 */
105 protected $_returnProperties;
106
107 /**
108 * represent the type of selector
109 *
110 * @var int
111 * @access protected
112 */
113 protected $_action;
114
115 protected $_searchContext;
116
117 protected $_query;
118
119 /**
120 * group id
121 *
122 * @var int
123 */
124 protected $_ufGroupID;
125
126 /**
127 * the public visible fields to be shown to the user
128 *
129 * @var array
130 * @access protected
131 */
132 protected $_fields;
133
134 /**
135 * Class constructor
136 *
137 * @param array $formValues array of form values imported
138 * @param array $params array of parameters for query
139 * @param int $action - action of search basic or advanced.
140 *
141 * @return CRM_Contact_Selector
142 * @access public
143 */
144 function __construct(
145 $customSearchClass,
146 $formValues = NULL,
147 $params = NULL,
148 $returnProperties = NULL,
149 $action = CRM_Core_Action::NONE,
150 $includeContactIds = FALSE,
151 $searchDescendentGroups = TRUE,
152 $searchContext = 'search',
153 $contextMenu = NULL
154 ) {
155 //don't build query constructor, if form is not submitted
156 $force = CRM_Utils_Request::retrieve('force', 'Boolean', CRM_Core_DAO::$_nullObject);
157 if (empty($formValues) && !$force) {
158 return;
159 }
160
161 // submitted form values
162 $this->_formValues = &$formValues;
163 $this->_params = &$params;
164 $this->_returnProperties = &$returnProperties;
165 $this->_contextMenu = &$contextMenu;
166 $this->_context = $searchContext;
167
168 // type of selector
169 $this->_action = $action;
170
171 $this->_searchContext = $searchContext;
172
173 $this->_ufGroupID = CRM_Utils_Array::value('uf_group_id', $this->_formValues);
174
175 if ($this->_ufGroupID) {
176 $this->_fields = CRM_Core_BAO_UFGroup::getListingFields(CRM_Core_Action::VIEW,
177 CRM_Core_BAO_UFGroup::PUBLIC_VISIBILITY |
178 CRM_Core_BAO_UFGroup::LISTINGS_VISIBILITY,
179 FALSE, $this->_ufGroupID
180 );
181 self::$_columnHeaders = NULL;
182
183 $this->_customFields = CRM_Core_BAO_CustomField::getFieldsForImport('Individual');
184
185 $this->_returnProperties = CRM_Contact_BAO_Contact::makeHierReturnProperties($this->_fields);
186 $this->_returnProperties['contact_type'] = 1;
187 $this->_returnProperties['contact_sub_type'] = 1;
188 $this->_returnProperties['sort_name'] = 1;
189 }
190
191 $displayRelationshipType = CRM_Utils_Array::value('display_relationship_type', $this->_formValues);
192 $operator = CRM_Utils_Array::value('operator', $this->_formValues, 'AND');
193
194 // rectify params to what proximity search expects if there is a value for prox_distance
195 // CRM-7021
196 if (!empty($this->_params)) {
197 CRM_Contact_BAO_ProximityQuery::fixInputParams($this->_params);
198 }
199
200 $this->_query = new CRM_Contact_BAO_Query(
201 $this->_params,
202 $this->_returnProperties,
203 NULL,
204 $includeContactIds,
205 FALSE,
206 CRM_Contact_BAO_Query::MODE_CONTACTS,
207 FALSE,
208 $searchDescendentGroups,
209 FALSE,
210 $displayRelationshipType,
211 $operator
212 );
213
214 $this->_options = &$this->_query->_options;
215 }
216 //end of constructor
217
218 /**
219 * This method returns the links that are given for each search row.
220 * currently the links added for each row are
221 *
222 * - View
223 * - Edit
224 *
225 * @return array
226 * @access public
227 *
228 */
229 static function &links() {
230 list($context, $contextMenu, $key) = func_get_args();
231 $extraParams = ($key) ? "&key={$key}" : NULL;
232 $searchContext = ($context) ? "&context=$context" : NULL;
233
234 if (!(self::$_links)) {
235 self::$_links = array(
236 CRM_Core_Action::VIEW => array(
237 'name' => ts('View'),
238 'url' => 'civicrm/contact/view',
239 'qs' => "reset=1&cid=%%id%%{$searchContext}{$extraParams}",
240 'title' => ts('View Contact Details'),
241 'ref' => 'view-contact',
242 ),
243 CRM_Core_Action::UPDATE => array(
244 'name' => ts('Edit'),
245 'url' => 'civicrm/contact/add',
246 'qs' => "reset=1&action=update&cid=%%id%%{$searchContext}{$extraParams}",
247 'title' => ts('Edit Contact Details'),
248 'ref' => 'edit-contact',
249 ),
250 );
251
252 $config = CRM_Core_Config::singleton();
253 if ($config->mapAPIKey && $config->mapProvider) {
254 self::$_links[CRM_Core_Action::MAP] = array(
255 'name' => ts('Map'),
256 'url' => 'civicrm/contact/map',
257 'qs' => "reset=1&cid=%%id%%{$searchContext}{$extraParams}",
258 'title' => ts('Map Contact'),
259 );
260 }
261
262 // Adding Context Menu Links in more action
263 if ($contextMenu) {
264 $counter = 7000;
265 foreach ($contextMenu as $key => $value) {
266 $contextVal = '&context=' . $value['key'];
267 if ($value['key'] == 'delete') {
268 $contextVal = $searchContext;
269 }
270
271 $url = "civicrm/contact/view/{$value['key']}";
272 $qs = "reset=1&action=add&cid=%%id%%{$contextVal}{$extraParams}";
273 if ($value['key'] == 'activity') {
274 $qs = "action=browse&selectedChild=activity&reset=1&cid=%%id%%{$extraParams}";
275 }
276 elseif ($value['key'] == 'email') {
277 $url = "civicrm/contact/view/activity";
278 $qs = "atype=3&action=add&reset=1&cid=%%id%%{$extraParams}";
279 }
280
281 self::$_links[$counter++] = array(
282 'name' => $value['title'],
283 'url' => $url,
284 'qs' => $qs,
285 'title' => $value['title'],
286 'ref' => $value['ref'],
287 );
288 }
289 }
290 }
291 return self::$_links;
292 }
293 //end of function
294
295 /**
296 * getter for array of the parameters required for creating pager.
297 *
298 * @param
299 * @access public
300 */
301 function getPagerParams($action, &$params) {
302 $params['status'] = ts('Contact %%StatusMessage%%');
303 $params['csvString'] = NULL;
304 $params['rowCount'] = CRM_Utils_Pager::ROWCOUNT;
305
306 $params['buttonTop'] = 'PagerTopButton';
307 $params['buttonBottom'] = 'PagerBottomButton';
308 }
309 //end of function
310
311 function &getColHeads($action = NULL, $output = NULL) {
312 $colHeads = self::_getColumnHeaders();
313 $colHeads[] = array('desc' => ts('Actions'), 'name' => ts('Action'));
314 return $colHeads;
315 }
316
317 /**
318 * returns the column headers as an array of tuples:
319 * (name, sortName (key to the sort array))
320 *
321 * @param string $action the action being performed
322 * @param enum $output what should the result set include (web/email/csv)
323 *
324 * @return array the column headers that need to be displayed
325 * @access public
326 */
327 function &getColumnHeaders($action = NULL, $output = NULL) {
328 $headers = NULL;
329
330 // unset return property elements that we don't care
331 if (!empty($this->_returnProperties)) {
332 $doNotCareElements = array(
333 'contact_type',
334 'contact_sub_type',
335 'sort_name',
336 );
337 foreach ( $doNotCareElements as $value) {
338 unset($this->_returnProperties[$value]);
339 }
340 }
341
342 if ($output == CRM_Core_Selector_Controller::EXPORT) {
343 $csvHeaders = array(ts('Contact Id'), ts('Contact Type'));
344 foreach ($this->getColHeads($action, $output) as $column) {
345 if (array_key_exists('name', $column)) {
346 $csvHeaders[] = $column['name'];
347 }
348 }
349 $headers = $csvHeaders;
350 }
351 elseif ($output == CRM_Core_Selector_Controller::SCREEN) {
352 $csvHeaders = array(ts('Name'));
353 foreach ($this->getColHeads($action, $output) as $key => $column) {
354 if (array_key_exists('name', $column) &&
355 $column['name'] &&
356 $column['name'] != ts('Name')
357 ) {
358 $csvHeaders[$key] = $column['name'];
359 }
360 }
361 $headers = $csvHeaders;
362 }
363 elseif ($this->_ufGroupID) {
364 // we dont use the cached value of column headers
365 // since it potentially changed because of the profile selected
366 static $skipFields = array('group', 'tag');
367 $direction = CRM_Utils_Sort::ASCENDING;
368 $empty = TRUE;
369 if (!self::$_columnHeaders) {
370 self::$_columnHeaders = array(array('name' => ''),
371 array(
372 'name' => ts('Name'),
373 'sort' => 'sort_name',
374 'direction' => CRM_Utils_Sort::ASCENDING,
375 ),
376 );
377
378 $locationTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Address', 'location_type_id');
379
380 foreach ($this->_fields as $name => $field) {
381 if (CRM_Utils_Array::value('in_selector', $field) &&
382 !in_array($name, $skipFields)
383 ) {
384 if (strpos($name, '-') !== FALSE) {
385 list($fieldName, $lType, $type) = CRM_Utils_System::explode('-', $name, 3);
386
387 if ($lType == 'Primary') {
388 $locationTypeName = 1;
389 }
390 else {
391 $locationTypeName = $locationTypes[$lType];
392 }
393
394 if (in_array($fieldName, array(
395 'phone', 'im', 'email'))) {
396 if ($type) {
397 $name = "`$locationTypeName-$fieldName-$type`";
398 }
399 else {
400 $name = "`$locationTypeName-$fieldName`";
401 }
402 }
403 else {
404 $name = "`$locationTypeName-$fieldName`";
405 }
406 }
407 //to handle sort key for Internal contactId.CRM-2289
408 if ($name == 'id') {
409 $name = 'contact_id';
410 }
411
412 self::$_columnHeaders[] = array(
413 'name' => $field['title'],
414 'sort' => $name,
415 'direction' => $direction,
416 );
417 $direction = CRM_Utils_Sort::DONTCARE;
418 $empty = FALSE;
419 }
420 }
421
422 // if we dont have any valid columns, dont add the implicit ones
423 // this allows the template to check on emptiness of column headers
424 if ($empty) {
425 self::$_columnHeaders = array();
426 }
427 else {
428 self::$_columnHeaders[] = array('desc' => ts('Actions'), 'name' => ts('Action'));
429 }
430 }
431 $headers = self::$_columnHeaders;
432 }
433 elseif (!empty($this->_returnProperties)) {
434 self::$_columnHeaders = array(array('name' => ''),
435 array(
436 'name' => ts('Name'),
437 'sort' => 'sort_name',
438 'direction' => CRM_Utils_Sort::ASCENDING,
439 ),
440 );
441 $properties = self::makeProperties($this->_returnProperties);
442
443 foreach ($properties as $prop) {
444 if (strpos($prop, '-')) {
445 list($loc, $fld, $phoneType) = CRM_Utils_System::explode('-', $prop, 3);
446 $title = $this->_query->_fields[$fld]['title'];
447 if (trim($phoneType) && !is_numeric($phoneType) && strtolower($phoneType) != $fld) {
448 $title .= "-{$phoneType}";
449 }
450 $title .= " ($loc)";
451 }
452 elseif (isset($this->_query->_fields[$prop]) && isset($this->_query->_fields[$prop]['title'])) {
453 $title = $this->_query->_fields[$prop]['title'];
454 }
455 else {
456 $title = '';
457 }
458
459 self::$_columnHeaders[] = array('name' => $title, 'sort' => $prop);
460 }
461 self::$_columnHeaders[] = array('name' => ts('Actions'));
462 $headers = self::$_columnHeaders;
463 }
464 else {
465 $headers = $this->getColHeads($action, $output);
466 }
467
468 return $headers;
469 }
470
471 /**
472 * Returns total number of rows for the query.
473 *
474 * @param
475 *
476 * @return int Total number of rows
477 * @access public
478 */
479 function getTotalCount($action) {
480 // Use count from cache during paging/sorting
481 if (!empty($_GET['crmPID']) || !empty($_GET['crmSID'])) {
482 $count = CRM_Core_BAO_Cache::getItem('Search Results Count', $this->_key);
483 }
484 if (empty($count)) {
485 $count = $this->_query->searchQuery(0, 0, NULL, TRUE);
486 CRM_Core_BAO_Cache::setItem($count, 'Search Results Count', $this->_key);
487 }
488 return $count;
489 }
490
491 /**
492 * returns all the rows in the given offset and rowCount
493 *
494 * @param enum $action the action being performed
495 * @param int $offset the row number to start from
496 * @param int $rowCount the number of rows to return
497 * @param string $sort the sql string that describes the sort order
498 * @param enum $output what should the result set include (web/email/csv)
499 *
500 * @return int the total number of rows for this action
501 */
502 function &getRows($action, $offset, $rowCount, $sort, $output = NULL) {
503 $config = CRM_Core_Config::singleton();
504
505 if (($output == CRM_Core_Selector_Controller::EXPORT ||
506 $output == CRM_Core_Selector_Controller::SCREEN
507 ) &&
508 $this->_formValues['radio_ts'] == 'ts_sel'
509 ) {
510 $includeContactIds = TRUE;
511 }
512 else {
513 $includeContactIds = FALSE;
514 }
515
516 // note the formvalues were given by CRM_Contact_Form_Search to us
517 // and contain the search criteria (parameters)
518 // note that the default action is basic
519 if ($rowCount) {
520 $cacheKey = $this->buildPrevNextCache($sort);
521 $result = $this->_query->getCachedContacts($cacheKey, $offset, $rowCount, $includeContactIds);
522
523 // CRM-13996: result is empty when selector columns are sorted. hence we need to run the query again
524 if ( $result->N == 0) {
525 $result = $this->_query->searchQuery($offset, $rowCount, $sort, FALSE, $includeContactIds);
526 }
527 }
528 else {
529 $result = $this->_query->searchQuery($offset, $rowCount, $sort, FALSE, $includeContactIds);
530 }
531
532 // process the result of the query
533 $rows = array();
534 $permissions = array(CRM_Core_Permission::getPermission());
535 if (CRM_Core_Permission::check('delete contacts')) {
536 $permissions[] = CRM_Core_Permission::DELETE;
537 }
538 $mask = CRM_Core_Action::mask($permissions);
539
540 // mask value to hide map link if there are not lat/long
541 $mapMask = $mask & 4095;
542
543 if ($this->_searchContext == 'smog') {
544 $gc = CRM_Core_SelectValues::groupContactStatus();
545 }
546
547 if ($this->_ufGroupID) {
548 $locationTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Address', 'location_type_id');
549
550 $names = array();
551 static $skipFields = array('group', 'tag');
552 foreach ($this->_fields as $key => $field) {
553 if (
554 CRM_Utils_Array::value('in_selector', $field) &&
555 !in_array($key, $skipFields)
556 ) {
557 if (strpos($key, '-') !== FALSE) {
558 list($fieldName, $id, $type) = CRM_Utils_System::explode('-', $key, 3);
559
560 if ($id == 'Primary') {
561 $locationTypeName = 1;
562 }
563 else {
564 $locationTypeName = CRM_Utils_Array::value($id, $locationTypes);
565 if (!$locationTypeName) {
566 continue;
567 }
568 }
569
570 $locationTypeName = str_replace(' ', '_', $locationTypeName);
571 if (in_array($fieldName, array(
572 'phone', 'im', 'email'))) {
573 if ($type) {
574 $names[] = "{$locationTypeName}-{$fieldName}-{$type}";
575 }
576 else {
577 $names[] = "{$locationTypeName}-{$fieldName}";
578 }
579 }
580 else {
581 $names[] = "{$locationTypeName}-{$fieldName}";
582 }
583 }
584 else {
585 $names[] = $field['name'];
586 }
587 }
588 }
589
590 $names[] = "status";
591 }
592 elseif (!empty($this->_returnProperties)) {
593 $names = self::makeProperties($this->_returnProperties);
594 }
595 else {
596 $names = self::$_properties;
597 }
598
599 $multipleSelectFields = array('preferred_communication_method' => 1);
600
601 $links = self::links($this->_context, $this->_contextMenu, $this->_key);
602
603 //check explicitly added contact to a Smart Group.
604 $groupID = CRM_Utils_Array::key('1', $this->_formValues['group']);
605
606 $pseudoconstants = array();
607 // for CRM-3157 purposes
608 if (in_array('world_region', $names)) {
609 $pseudoconstants['world_region'] = array(
610 'dbName' => 'world_region_id',
611 'values' => CRM_Core_PseudoConstant::worldRegion()
612 );
613 }
614
615 $seenIDs = array();
616 while ($result->fetch()) {
617 $row = array();
618 $this->_query->convertToPseudoNames($result);
619
620 // the columns we are interested in
621 foreach ($names as $property) {
622 if ($property == 'status') {
623 continue;
624 }
625 if ($cfID = CRM_Core_BAO_CustomField::getKeyID($property)) {
626 $row[$property] = CRM_Core_BAO_CustomField::getDisplayValue(
627 $result->$property,
628 $cfID,
629 $this->_options,
630 $result->contact_id
631 );
632 }
633 elseif (
634 $multipleSelectFields &&
635 array_key_exists($property, $multipleSelectFields)
636 ) {
637 $key = $property;
638 $paramsNew = array($key => $result->$property);
639 $name = array($key => array('newName' => $key, 'groupName' => $key));
640
641 CRM_Core_OptionGroup::lookupValues($paramsNew, $name, FALSE);
642 $row[$key] = $paramsNew[$key];
643 }
644 elseif (strpos($property, '-im')) {
645 $row[$property] = $result->$property;
646 if (!empty($result->$property)) {
647 $imProviders = CRM_Core_PseudoConstant::get('CRM_Core_DAO_IM', 'provider_id');
648 $providerId = $property . "-provider_id";
649 $providerName = $imProviders[$result->$providerId];
650 $row[$property] = $result->$property . " ({$providerName})";
651 }
652 }
653 elseif (in_array($property, array(
654 'addressee', 'email_greeting', 'postal_greeting'))) {
655 $greeting = $property . '_display';
656 $row[$property] = $result->$greeting;
657 }
658 elseif ($property == 'state_province') {
659 $row[$property] = $result->state_province_name;
660 }
661 elseif (isset($pseudoconstants[$property])) {
662 $row[$property] = CRM_Utils_Array::value(
663 $result->{$pseudoconstants[$property]['dbName']},
664 $pseudoconstants[$property]['values']
665 );
666 }
667 elseif (strpos($property, '-url') !== FALSE) {
668 $websiteUrl = '';
669 $websiteKey = 'website-1';
670 $propertyArray = explode('-', $property);
671 $websiteFld = $websiteKey . '-' . array_pop($propertyArray);
672 if (!empty($result->$websiteFld)) {
673 $websiteTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Website', 'website_type_id');
674 $websiteType = $websiteTypes[$result->{"$websiteKey-website_type_id"}];
675 $websiteValue = $result->$websiteFld;
676 $websiteUrl = "<a href=\"{$websiteValue}\">{$websiteValue} ({$websiteType})</a>";
677 }
678 $row[$property] = $websiteUrl;
679 }
680 else {
681 $row[$property] = isset($result->$property) ? $result->$property : NULL;
682 }
683 }
684
685 if (!empty($result->postal_code_suffix)) {
686 $row['postal_code'] .= "-" . $result->postal_code_suffix;
687 }
688
689 if ($output != CRM_Core_Selector_Controller::EXPORT &&
690 $this->_searchContext == 'smog'
691 ) {
692 if (empty($result->status) &&
693 $groupID
694 ) {
695 $contactID = $result->contact_id;
696 if ($contactID) {
697 $gcParams = array(
698 'contact_id' => $contactID,
699 'group_id' => $groupID,
700 );
701
702 $gcDefaults = array();
703 CRM_Core_DAO::commonRetrieve('CRM_Contact_DAO_GroupContact', $gcParams, $gcDefaults);
704
705 if (empty($gcDefaults)) {
706 $row['status'] = ts('Smart');
707 }
708 else {
709 $row['status'] = $gc[$gcDefaults['status']];
710 }
711 }
712 else {
713 $row['status'] = NULL;
714 }
715 }
716 else {
717 $row['status'] = $gc[$result->status];
718 }
719 }
720
721 if ($output != CRM_Core_Selector_Controller::EXPORT) {
722 $row['checkbox'] = CRM_Core_Form::CB_PREFIX . $result->contact_id;
723
724 if (CRM_Utils_Array::value('deleted_contacts', $this->_formValues)
725 && CRM_Core_Permission::check('access deleted contacts')
726 ) {
727 $links = array(
728 array(
729 'name' => ts('View'),
730 'url' => 'civicrm/contact/view',
731 'qs' => 'reset=1&cid=%%id%%',
732 'title' => ts('View Contact Details'),
733 ),
734 array(
735 'name' => ts('Restore'),
736 'url' => 'civicrm/contact/view/delete',
737 'qs' => 'reset=1&cid=%%id%%&restore=1',
738 'title' => ts('Restore Contact'),
739 ),
740 );
741 if (CRM_Core_Permission::check('delete contacts')) {
742 $links[] = array(
743 'name' => ts('Delete Permanently'),
744 'url' => 'civicrm/contact/view/delete',
745 'qs' => 'reset=1&cid=%%id%%&skip_undelete=1',
746 'title' => ts('Permanently Delete Contact'),
747 );
748 }
749 $row['action'] = CRM_Core_Action::formLink($links, NULL, array('id' => $result->contact_id));
750 }
751 elseif ((is_numeric(CRM_Utils_Array::value('geo_code_1', $row))) ||
752 ($config->mapGeoCoding &&
753 CRM_Utils_Array::value('city', $row) &&
754 CRM_Utils_Array::value('state_province', $row)
755 )
756 ) {
757 $row['action'] = CRM_Core_Action::formLink($links, $mask, array('id' => $result->contact_id));
758 }
759 else {
760 $row['action'] = CRM_Core_Action::formLink($links, $mapMask, array('id' => $result->contact_id));
761 }
762
763 // allow components to add more actions
764 CRM_Core_Component::searchAction($row, $result->contact_id);
765
766 $row['contact_type'] = CRM_Contact_BAO_Contact_Utils::getImage($result->contact_sub_type ?
767 $result->contact_sub_type : $result->contact_type,
768 FALSE,
769 $result->contact_id
770 );
771
772 $row['contact_type_orig'] = $result->contact_sub_type ? $result->contact_sub_type : $result->contact_type;
773 $row['contact_sub_type'] = $result->contact_sub_type ?
774 CRM_Contact_BAO_ContactType::contactTypePairs(FALSE, $result->contact_sub_type, ', ') : $result->contact_sub_type;
775 $row['contact_id'] = $result->contact_id;
776 $row['sort_name'] = $result->sort_name;
777 if (array_key_exists('id', $row)) {
778 $row['id'] = $result->contact_id;
779 }
780 }
781
782 // Dedupe contacts
783 if (in_array($row['contact_id'], $seenIDs) === FALSE) {
784 $seenIDs[] = $row['contact_id'];
785 $rows[] = $row;
786 }
787 }
788
789 return $rows;
790 }
791
792 function buildPrevNextCache($sort) {
793 $cacheKey = 'civicrm search ' . $this->_key;
794
795 // Get current page requested
796 $pageNum = CRM_Utils_Request::retrieve('crmPID', 'Integer', CRM_Core_DAO::$_nullObject);
797 // When starting from scratch, clear any old cache
798 if (!$pageNum) {
799 CRM_Core_BAO_PrevNextCache::deleteItem(NULL, $cacheKey, 'civicrm_contact');
800 $pageNum = 1;
801 }
802
803 $pageSize = CRM_Utils_Request::retrieve('crmRowCount', 'Integer', CRM_Core_DAO::$_nullObject, FALSE, 50);
804 $firstRecord = ($pageNum - 1) * $pageSize;
805
806 //for alphabetic pagination selection save
807 $sortByCharacter = CRM_Utils_Request::retrieve('sortByCharacter', 'String', CRM_Core_DAO::$_nullObject);
808
809 //for text field pagination selection save
810 $countRow = CRM_Core_BAO_PrevNextCache::getCount($cacheKey, NULL, "entity_table = 'civicrm_contact'");
811
812 // $sortByCharacter triggers a refresh in the prevNext cache
813 if ($sortByCharacter && $sortByCharacter != 'all') {
814 $cacheKey .= "_alphabet";
815 $this->fillupPrevNextCache($sort, $cacheKey);
816 }
817 elseif ($firstRecord >= $countRow) {
818 $this->fillupPrevNextCache($sort, $cacheKey, $countRow, $firstRecord + 500);
819 }
820 return $cacheKey;
821 }
822
823 function addActions(&$rows) {
824 $config = CRM_Core_Config::singleton();
825
826 $permissions = array(CRM_Core_Permission::getPermission());
827 if (CRM_Core_Permission::check('delete contacts')) {
828 $permissions[] = CRM_Core_Permission::DELETE;
829 }
830 $mask = CRM_Core_Action::mask($permissions);
831 // mask value to hide map link if there are not lat/long
832 $mapMask = $mask & 4095;
833
834 // mask value to hide map link if there are not lat/long
835 $mapMask = $mask & 4095;
836
837 $links = self::links($this->_context, $this->_contextMenu, $this->_key);
838
839
840 foreach ($rows as $id => & $row) {
841 if (CRM_Utils_Array::value('deleted_contacts', $this->_formValues)
842 && CRM_Core_Permission::check('access deleted contacts')
843 ) {
844 $links = array(
845 array(
846 'name' => ts('View'),
847 'url' => 'civicrm/contact/view',
848 'qs' => 'reset=1&cid=%%id%%',
849 'title' => ts('View Contact Details'),
850 ),
851 array(
852 'name' => ts('Restore'),
853 'url' => 'civicrm/contact/view/delete',
854 'qs' => 'reset=1&cid=%%id%%&restore=1',
855 'title' => ts('Restore Contact'),
856 ),
857 );
858 if (CRM_Core_Permission::check('delete contacts')) {
859 $links[] = array(
860 'name' => ts('Delete Permanently'),
861 'url' => 'civicrm/contact/view/delete',
862 'qs' => 'reset=1&cid=%%id%%&skip_undelete=1',
863 'title' => ts('Permanently Delete Contact'),
864 );
865 }
866 $row['action'] = CRM_Core_Action::formLink($links, NULL, array('id' => $row['contact_id']));
867 }
868 elseif ((is_numeric(CRM_Utils_Array::value('geo_code_1', $row))) ||
869 ($config->mapGeoCoding &&
870 CRM_Utils_Array::value('city', $row) &&
871 CRM_Utils_Array::value('state_province', $row)
872 )
873 ) {
874 $row['action'] = CRM_Core_Action::formLink($links, $mask, array('id' => $row['contact_id']));
875 }
876 else {
877 $row['action'] = CRM_Core_Action::formLink($links, $mapMask, array('id' => $row['contact_id']));
878 }
879
880 // allow components to add more actions
881 CRM_Core_Component::searchAction($row, $row['contact_id']);
882
883 if (!empty($row['contact_type_orig'])) {
884 $row['contact_type'] = CRM_Contact_BAO_Contact_Utils::getImage($row['contact_type_orig'],
885 FALSE, $row['contact_id']);
886 }
887 }
888 }
889
890 function removeActions(&$rows) {
891 foreach ($rows as $rid => & $rValue) {
892 unset($rValue['contact_type']);
893 unset($rValue['action']);
894 }
895 }
896
897 /**
898 * @param object $sort
899 * @param string $cacheKey
900 * @param int $start
901 * @param int $end
902 */
903 function fillupPrevNextCache($sort, $cacheKey, $start = 0, $end = 500) {
904
905 // For custom searches, use the contactIDs method
906 if (is_a($this, 'CRM_Contact_Selector_Custom')) {
907 $sql = $this->_search->contactIDs($start, $end, $sort, TRUE);
908 $replaceSQL = "SELECT contact_a.id as contact_id";
909 }
910 // For core searches use the searchQuery method
911 else {
912 $sql = $this->_query->searchQuery(
913 $start, $end, $sort,
914 FALSE, FALSE,
915 FALSE, TRUE, TRUE, NULL
916 );
917 $replaceSQL = "SELECT contact_a.id as id";
918 }
919
920 // CRM-9096
921 // due to limitations in our search query writer, the above query does not work
922 // in cases where the query is being sorted on a non-contact table
923 // this results in a fatal error :(
924 // see below for the gross hack of trapping the error and not filling
925 // the prev next cache in this situation
926 // the other alternative of running the FULL query will just be incredibly inefficient
927 // and slow things down way too much on large data sets / complex queries
928
929 $insertSQL = "
930 INSERT INTO civicrm_prevnext_cache ( entity_table, entity_id1, entity_id2, cacheKey, data )
931 SELECT 'civicrm_contact', contact_a.id, contact_a.id, '$cacheKey', contact_a.display_name
932 ";
933
934 $sql = str_replace($replaceSQL, $insertSQL, $sql);
935
936 CRM_Core_Error::ignoreException();
937 $result = CRM_Core_DAO::executeQuery($sql);
938 CRM_Core_Error::setCallback();
939
940 if (is_a($result, 'DB_Error')) {
941 // oops the above query failed, so lets just ignore it
942 // and return
943 // we print a sorry cant figure it out on view page
944 return;
945 }
946
947 // also record an entry in the cache key table, so we can delete it periodically
948 CRM_Core_BAO_Cache::setItem($cacheKey, 'CiviCRM Search PrevNextCache', $cacheKey);
949 }
950
951 /**
952 * Given the current formValues, gets the query in local
953 * language
954 *
955 * @param array(
956 reference) $formValues submitted formValues
957 *
958 * @return array $qill which contains an array of strings
959 * @access public
960 */
961
962 // the current internationalisation is bad, but should more or less work
963 // for most of "European" languages
964 public function getQILL() {
965 return $this->_query->qill();
966 }
967
968 /**
969 * name of export file.
970 *
971 * @param string $output type of output
972 *
973 * @return string name of the file
974 */
975 function getExportFileName($output = 'csv') {
976 return ts('CiviCRM Contact Search');
977 }
978
979 /**
980 * get colunmn headers for search selector
981 *
982 *
983 * @return array $_columnHeaders
984 * @access private
985 */
986 private static function &_getColumnHeaders() {
987 if (!isset(self::$_columnHeaders)) {
988 $addressOptions = CRM_Core_BAO_Setting::valueOptions(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
989 'address_options', TRUE, NULL, TRUE
990 );
991
992 self::$_columnHeaders = array(
993 'contact_type' => array('desc' => ts('Contact Type')),
994 'sort_name' => array(
995 'name' => ts('Name'),
996 'sort' => 'sort_name',
997 'direction' => CRM_Utils_Sort::ASCENDING,
998 ),
999 );
1000
1001 $defaultAddress = array(
1002 'street_address' => array('name' => ts('Address')),
1003 'city' => array(
1004 'name' => ts('City'),
1005 'sort' => 'city',
1006 'direction' => CRM_Utils_Sort::DONTCARE,
1007 ),
1008 'state_province' => array(
1009 'name' => ts('State'),
1010 'sort' => 'state_province',
1011 'direction' => CRM_Utils_Sort::DONTCARE,
1012 ),
1013 'postal_code' => array(
1014 'name' => ts('Postal'),
1015 'sort' => 'postal_code',
1016 'direction' => CRM_Utils_Sort::DONTCARE,
1017 ),
1018 'country' => array(
1019 'name' => ts('Country'),
1020 'sort' => 'country',
1021 'direction' => CRM_Utils_Sort::DONTCARE,
1022 ),
1023 );
1024
1025 foreach ($defaultAddress as $columnName => $column) {
1026 if (CRM_Utils_Array::value($columnName, $addressOptions)) {
1027 self::$_columnHeaders[$columnName] = $column;
1028 }
1029 }
1030
1031 self::$_columnHeaders['email'] = array(
1032 'name' => ts('Email'),
1033 'sort' => 'email',
1034 'direction' => CRM_Utils_Sort::DONTCARE,
1035 );
1036
1037 self::$_columnHeaders['phone'] = array('name' => ts('Phone'));
1038 }
1039 return self::$_columnHeaders;
1040 }
1041
1042 function &getQuery() {
1043 return $this->_query;
1044 }
1045
1046 function alphabetQuery() {
1047 return $this->_query->searchQuery(NULL, NULL, NULL, FALSE, FALSE, TRUE);
1048 }
1049
1050 function contactIDQuery($params, $action, $sortID, $displayRelationshipType = NULL, $queryOperator = 'AND') {
1051 $sortOrder = &$this->getSortOrder($this->_action);
1052 $sort = new CRM_Utils_Sort($sortOrder, $sortID);
1053
1054 // rectify params to what proximity search expects if there is a value for prox_distance
1055 // CRM-7021 CRM-7905
1056 if (!empty($params)) {
1057 CRM_Contact_BAO_ProximityQuery::fixInputParams($params);
1058 }
1059
1060 if (!$displayRelationshipType) {
1061 $query = new CRM_Contact_BAO_Query($params,
1062 $this->_returnProperties,
1063 NULL, FALSE, FALSE, 1,
1064 FALSE, TRUE, TRUE, NULL,
1065 $queryOperator
1066 );
1067 }
1068 else {
1069 $query = new CRM_Contact_BAO_Query($params, $this->_returnProperties,
1070 NULL, FALSE, FALSE, 1,
1071 FALSE, TRUE, TRUE, $displayRelationshipType,
1072 $queryOperator
1073 );
1074 }
1075 $value = $query->searchQuery(0, 0, $sort,
1076 FALSE, FALSE, FALSE,
1077 FALSE, FALSE
1078 );
1079 return $value;
1080 }
1081
1082 function &makeProperties(&$returnProperties) {
1083 $properties = array();
1084 foreach ($returnProperties as $name => $value) {
1085 if ($name != 'location') {
1086 // special handling for group and tag
1087 if (in_array($name, array('group', 'tag'))) {
1088 $name = "{$name}s";
1089 }
1090
1091 // special handling for notes
1092 if (in_array($name, array('note', 'note_subject', 'note_body'))) {
1093 $name = "notes";
1094 }
1095
1096 $properties[] = $name;
1097 }
1098 else {
1099 // extract all the location stuff
1100 foreach ($value as $n => $v) {
1101 foreach ($v as $n1 => $v1) {
1102 if (!strpos('_id', $n1) && $n1 != 'location_type') {
1103 $properties[] = "{$n}-{$n1}";
1104 }
1105 }
1106 }
1107 }
1108 }
1109 return $properties;
1110 }
1111 }
1112 //end of class
1113