fixes for CRM-14393
[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 (isset($pseudoconstants[$property])) {
659 $row[$property] = CRM_Utils_Array::value(
660 $result->{$pseudoconstants[$property]['dbName']},
661 $pseudoconstants[$property]['values']
662 );
663 }
664 elseif (strpos($property, '-url') !== FALSE) {
665 $websiteUrl = '';
666 $websiteKey = 'website-1';
667 $propertyArray = explode('-', $property);
668 $websiteFld = $websiteKey . '-' . array_pop($propertyArray);
669 if (!empty($result->$websiteFld)) {
670 $websiteTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Website', 'website_type_id');
671 $websiteType = $websiteTypes[$result->{"$websiteKey-website_type_id"}];
672 $websiteValue = $result->$websiteFld;
673 $websiteUrl = "<a href=\"{$websiteValue}\">{$websiteValue} ({$websiteType})</a>";
674 }
675 $row[$property] = $websiteUrl;
676 }
677 else {
678 $row[$property] = isset($result->$property) ? $result->$property : NULL;
679 }
680 }
681
682 if (!empty($result->postal_code_suffix)) {
683 $row['postal_code'] .= "-" . $result->postal_code_suffix;
684 }
685
686 if ($output != CRM_Core_Selector_Controller::EXPORT &&
687 $this->_searchContext == 'smog'
688 ) {
689 if (empty($result->status) &&
690 $groupID
691 ) {
692 $contactID = $result->contact_id;
693 if ($contactID) {
694 $gcParams = array(
695 'contact_id' => $contactID,
696 'group_id' => $groupID,
697 );
698
699 $gcDefaults = array();
700 CRM_Core_DAO::commonRetrieve('CRM_Contact_DAO_GroupContact', $gcParams, $gcDefaults);
701
702 if (empty($gcDefaults)) {
703 $row['status'] = ts('Smart');
704 }
705 else {
706 $row['status'] = $gc[$gcDefaults['status']];
707 }
708 }
709 else {
710 $row['status'] = NULL;
711 }
712 }
713 else {
714 $row['status'] = $gc[$result->status];
715 }
716 }
717
718 if ($output != CRM_Core_Selector_Controller::EXPORT) {
719 $row['checkbox'] = CRM_Core_Form::CB_PREFIX . $result->contact_id;
720
721 if (CRM_Utils_Array::value('deleted_contacts', $this->_formValues)
722 && CRM_Core_Permission::check('access deleted contacts')
723 ) {
724 $links = array(
725 array(
726 'name' => ts('View'),
727 'url' => 'civicrm/contact/view',
728 'qs' => 'reset=1&cid=%%id%%',
729 'title' => ts('View Contact Details'),
730 ),
731 array(
732 'name' => ts('Restore'),
733 'url' => 'civicrm/contact/view/delete',
734 'qs' => 'reset=1&cid=%%id%%&restore=1',
735 'title' => ts('Restore Contact'),
736 ),
737 );
738 if (CRM_Core_Permission::check('delete contacts')) {
739 $links[] = array(
740 'name' => ts('Delete Permanently'),
741 'url' => 'civicrm/contact/view/delete',
742 'qs' => 'reset=1&cid=%%id%%&skip_undelete=1',
743 'title' => ts('Permanently Delete Contact'),
744 );
745 }
746 $row['action'] = CRM_Core_Action::formLink($links, NULL, array('id' => $result->contact_id));
747 }
748 elseif ((is_numeric(CRM_Utils_Array::value('geo_code_1', $row))) ||
749 ($config->mapGeoCoding &&
750 CRM_Utils_Array::value('city', $row) &&
751 CRM_Utils_Array::value('state_province', $row)
752 )
753 ) {
754 $row['action'] = CRM_Core_Action::formLink($links, $mask, array('id' => $result->contact_id));
755 }
756 else {
757 $row['action'] = CRM_Core_Action::formLink($links, $mapMask, array('id' => $result->contact_id));
758 }
759
760 // allow components to add more actions
761 CRM_Core_Component::searchAction($row, $result->contact_id);
762
763 $row['contact_type'] = CRM_Contact_BAO_Contact_Utils::getImage($result->contact_sub_type ?
764 $result->contact_sub_type : $result->contact_type,
765 FALSE,
766 $result->contact_id
767 );
768
769 $row['contact_type_orig'] = $result->contact_sub_type ? $result->contact_sub_type : $result->contact_type;
770 $row['contact_sub_type'] = $result->contact_sub_type ?
771 CRM_Contact_BAO_ContactType::contactTypePairs(FALSE, $result->contact_sub_type, ', ') : $result->contact_sub_type;
772 $row['contact_id'] = $result->contact_id;
773 $row['sort_name'] = $result->sort_name;
774 if (array_key_exists('id', $row)) {
775 $row['id'] = $result->contact_id;
776 }
777 }
778
779 // Dedupe contacts
780 if (in_array($row['contact_id'], $seenIDs) === FALSE) {
781 $seenIDs[] = $row['contact_id'];
782 $rows[] = $row;
783 }
784 }
785
786 return $rows;
787 }
788
789 function buildPrevNextCache($sort) {
790 $cacheKey = 'civicrm search ' . $this->_key;
791
792 // Get current page requested
793 $pageNum = CRM_Utils_Request::retrieve('crmPID', 'Integer', CRM_Core_DAO::$_nullObject);
794 // When starting from scratch, clear any old cache
795 if (!$pageNum) {
796 CRM_Core_BAO_PrevNextCache::deleteItem(NULL, $cacheKey, 'civicrm_contact');
797 $pageNum = 1;
798 }
799
800 $pageSize = CRM_Utils_Request::retrieve('crmRowCount', 'Integer', CRM_Core_DAO::$_nullObject, FALSE, 50);
801 $firstRecord = ($pageNum - 1) * $pageSize;
802
803 //for alphabetic pagination selection save
804 $sortByCharacter = CRM_Utils_Request::retrieve('sortByCharacter', 'String', CRM_Core_DAO::$_nullObject);
805
806 //for text field pagination selection save
807 $countRow = CRM_Core_BAO_PrevNextCache::getCount($cacheKey, NULL, "entity_table = 'civicrm_contact'");
808
809 // $sortByCharacter triggers a refresh in the prevNext cache
810 if ($sortByCharacter && $sortByCharacter != 'all') {
811 $cacheKey .= "_alphabet";
812 $this->fillupPrevNextCache($sort, $cacheKey);
813 }
814 elseif ($firstRecord >= $countRow) {
815 $this->fillupPrevNextCache($sort, $cacheKey, $countRow, $firstRecord + 500);
816 }
817 return $cacheKey;
818 }
819
820 function addActions(&$rows) {
821 $config = CRM_Core_Config::singleton();
822
823 $permissions = array(CRM_Core_Permission::getPermission());
824 if (CRM_Core_Permission::check('delete contacts')) {
825 $permissions[] = CRM_Core_Permission::DELETE;
826 }
827 $mask = CRM_Core_Action::mask($permissions);
828 // mask value to hide map link if there are not lat/long
829 $mapMask = $mask & 4095;
830
831 // mask value to hide map link if there are not lat/long
832 $mapMask = $mask & 4095;
833
834 $links = self::links($this->_context, $this->_contextMenu, $this->_key);
835
836
837 foreach ($rows as $id => & $row) {
838 if (CRM_Utils_Array::value('deleted_contacts', $this->_formValues)
839 && CRM_Core_Permission::check('access deleted contacts')
840 ) {
841 $links = array(
842 array(
843 'name' => ts('View'),
844 'url' => 'civicrm/contact/view',
845 'qs' => 'reset=1&cid=%%id%%',
846 'title' => ts('View Contact Details'),
847 ),
848 array(
849 'name' => ts('Restore'),
850 'url' => 'civicrm/contact/view/delete',
851 'qs' => 'reset=1&cid=%%id%%&restore=1',
852 'title' => ts('Restore Contact'),
853 ),
854 );
855 if (CRM_Core_Permission::check('delete contacts')) {
856 $links[] = array(
857 'name' => ts('Delete Permanently'),
858 'url' => 'civicrm/contact/view/delete',
859 'qs' => 'reset=1&cid=%%id%%&skip_undelete=1',
860 'title' => ts('Permanently Delete Contact'),
861 );
862 }
863 $row['action'] = CRM_Core_Action::formLink($links, NULL, array('id' => $row['contact_id']));
864 }
865 elseif ((is_numeric(CRM_Utils_Array::value('geo_code_1', $row))) ||
866 ($config->mapGeoCoding &&
867 CRM_Utils_Array::value('city', $row) &&
868 CRM_Utils_Array::value('state_province', $row)
869 )
870 ) {
871 $row['action'] = CRM_Core_Action::formLink($links, $mask, array('id' => $row['contact_id']));
872 }
873 else {
874 $row['action'] = CRM_Core_Action::formLink($links, $mapMask, array('id' => $row['contact_id']));
875 }
876
877 // allow components to add more actions
878 CRM_Core_Component::searchAction($row, $row['contact_id']);
879
880 if (!empty($row['contact_type_orig'])) {
881 $row['contact_type'] = CRM_Contact_BAO_Contact_Utils::getImage($row['contact_type_orig'],
882 FALSE, $row['contact_id']);
883 }
884 }
885 }
886
887 function removeActions(&$rows) {
888 foreach ($rows as $rid => & $rValue) {
889 unset($rValue['contact_type']);
890 unset($rValue['action']);
891 }
892 }
893
894 /**
895 * @param object $sort
896 * @param string $cacheKey
897 * @param int $start
898 * @param int $end
899 */
900 function fillupPrevNextCache($sort, $cacheKey, $start = 0, $end = 500) {
901
902 // For custom searches, use the contactIDs method
903 if (is_a($this, 'CRM_Contact_Selector_Custom')) {
904 $sql = $this->_search->contactIDs($start, $end, $sort, TRUE);
905 $replaceSQL = "SELECT contact_a.id as contact_id";
906 }
907 // For core searches use the searchQuery method
908 else {
909 $sql = $this->_query->searchQuery(
910 $start, $end, $sort,
911 FALSE, FALSE,
912 FALSE, TRUE, TRUE, NULL
913 );
914 $replaceSQL = "SELECT contact_a.id as id";
915 }
916
917 // CRM-9096
918 // due to limitations in our search query writer, the above query does not work
919 // in cases where the query is being sorted on a non-contact table
920 // this results in a fatal error :(
921 // see below for the gross hack of trapping the error and not filling
922 // the prev next cache in this situation
923 // the other alternative of running the FULL query will just be incredibly inefficient
924 // and slow things down way too much on large data sets / complex queries
925
926 $insertSQL = "
927 INSERT INTO civicrm_prevnext_cache ( entity_table, entity_id1, entity_id2, cacheKey, data )
928 SELECT 'civicrm_contact', contact_a.id, contact_a.id, '$cacheKey', contact_a.display_name
929 ";
930
931 $sql = str_replace($replaceSQL, $insertSQL, $sql);
932
933 CRM_Core_Error::ignoreException();
934 $result = CRM_Core_DAO::executeQuery($sql);
935 CRM_Core_Error::setCallback();
936
937 if (is_a($result, 'DB_Error')) {
938 // oops the above query failed, so lets just ignore it
939 // and return
940 // we print a sorry cant figure it out on view page
941 return;
942 }
943
944 // also record an entry in the cache key table, so we can delete it periodically
945 CRM_Core_BAO_Cache::setItem($cacheKey, 'CiviCRM Search PrevNextCache', $cacheKey);
946 }
947
948 /**
949 * Given the current formValues, gets the query in local
950 * language
951 *
952 * @param array(
953 reference) $formValues submitted formValues
954 *
955 * @return array $qill which contains an array of strings
956 * @access public
957 */
958
959 // the current internationalisation is bad, but should more or less work
960 // for most of "European" languages
961 public function getQILL() {
962 return $this->_query->qill();
963 }
964
965 /**
966 * name of export file.
967 *
968 * @param string $output type of output
969 *
970 * @return string name of the file
971 */
972 function getExportFileName($output = 'csv') {
973 return ts('CiviCRM Contact Search');
974 }
975
976 /**
977 * get colunmn headers for search selector
978 *
979 *
980 * @return array $_columnHeaders
981 * @access private
982 */
983 private static function &_getColumnHeaders() {
984 if (!isset(self::$_columnHeaders)) {
985 $addressOptions = CRM_Core_BAO_Setting::valueOptions(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
986 'address_options', TRUE, NULL, TRUE
987 );
988
989 self::$_columnHeaders = array(
990 'contact_type' => array('desc' => ts('Contact Type')),
991 'sort_name' => array(
992 'name' => ts('Name'),
993 'sort' => 'sort_name',
994 'direction' => CRM_Utils_Sort::ASCENDING,
995 ),
996 );
997
998 $defaultAddress = array(
999 'street_address' => array('name' => ts('Address')),
1000 'city' => array(
1001 'name' => ts('City'),
1002 'sort' => 'city',
1003 'direction' => CRM_Utils_Sort::DONTCARE,
1004 ),
1005 'state_province' => array(
1006 'name' => ts('State'),
1007 'sort' => 'state_province',
1008 'direction' => CRM_Utils_Sort::DONTCARE,
1009 ),
1010 'postal_code' => array(
1011 'name' => ts('Postal'),
1012 'sort' => 'postal_code',
1013 'direction' => CRM_Utils_Sort::DONTCARE,
1014 ),
1015 'country' => array(
1016 'name' => ts('Country'),
1017 'sort' => 'country',
1018 'direction' => CRM_Utils_Sort::DONTCARE,
1019 ),
1020 );
1021
1022 foreach ($defaultAddress as $columnName => $column) {
1023 if (CRM_Utils_Array::value($columnName, $addressOptions)) {
1024 self::$_columnHeaders[$columnName] = $column;
1025 }
1026 }
1027
1028 self::$_columnHeaders['email'] = array(
1029 'name' => ts('Email'),
1030 'sort' => 'email',
1031 'direction' => CRM_Utils_Sort::DONTCARE,
1032 );
1033
1034 self::$_columnHeaders['phone'] = array('name' => ts('Phone'));
1035 }
1036 return self::$_columnHeaders;
1037 }
1038
1039 function &getQuery() {
1040 return $this->_query;
1041 }
1042
1043 function alphabetQuery() {
1044 return $this->_query->searchQuery(NULL, NULL, NULL, FALSE, FALSE, TRUE);
1045 }
1046
1047 function contactIDQuery($params, $action, $sortID, $displayRelationshipType = NULL, $queryOperator = 'AND') {
1048 $sortOrder = &$this->getSortOrder($this->_action);
1049 $sort = new CRM_Utils_Sort($sortOrder, $sortID);
1050
1051 // rectify params to what proximity search expects if there is a value for prox_distance
1052 // CRM-7021 CRM-7905
1053 if (!empty($params)) {
1054 CRM_Contact_BAO_ProximityQuery::fixInputParams($params);
1055 }
1056
1057 if (!$displayRelationshipType) {
1058 $query = new CRM_Contact_BAO_Query($params,
1059 $this->_returnProperties,
1060 NULL, FALSE, FALSE, 1,
1061 FALSE, TRUE, TRUE, NULL,
1062 $queryOperator
1063 );
1064 }
1065 else {
1066 $query = new CRM_Contact_BAO_Query($params, $this->_returnProperties,
1067 NULL, FALSE, FALSE, 1,
1068 FALSE, TRUE, TRUE, $displayRelationshipType,
1069 $queryOperator
1070 );
1071 }
1072 $value = $query->searchQuery(0, 0, $sort,
1073 FALSE, FALSE, FALSE,
1074 FALSE, FALSE
1075 );
1076 return $value;
1077 }
1078
1079 function &makeProperties(&$returnProperties) {
1080 $properties = array();
1081 foreach ($returnProperties as $name => $value) {
1082 if ($name != 'location') {
1083 // special handling for group and tag
1084 if (in_array($name, array('group', 'tag'))) {
1085 $name = "{$name}s";
1086 }
1087
1088 // special handling for notes
1089 if (in_array($name, array('note', 'note_subject', 'note_body'))) {
1090 $name = "notes";
1091 }
1092
1093 $properties[] = $name;
1094 }
1095 else {
1096 // extract all the location stuff
1097 foreach ($value as $n => $v) {
1098 foreach ($v as $n1 => $v1) {
1099 if (!strpos('_id', $n1) && $n1 != 'location_type') {
1100 $properties[] = "{$n}-{$n1}";
1101 }
1102 }
1103 }
1104 }
1105 }
1106 return $properties;
1107 }
1108 }
1109 //end of class
1110