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