Merge pull request #22096 from yashodha/dev-2962
[civicrm-core.git] / CRM / Contact / BAO / Query.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
bc77d7c0
TO
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
6a488035 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035
TO
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
16 */
17
18/**
dc195289 19 * This is the heart of the search query building mechanism.
6a488035
TO
20 */
21class CRM_Contact_BAO_Query {
22
23 /**
fe482240 24 * The various search modes.
6a488035 25 *
746aa919
CB
26 * As of February 2017, entries not present for 4, 32, 64, 1024.
27 *
28 * MODE_ALL seems to be out of sync with the available constants;
29 * if this is intentionally excluding MODE_MAILING then that may
30 * bear documenting?
31 *
32 * Likewise if there's reason for the missing modes (4, 32, 64 etc).
33 *
6a488035
TO
34 * @var int
35 */
7da04cde 36 const
33092c89 37 NO_RETURN_PROPERTIES = 'CRM_Contact_BAO_Query::NO_RETURN_PROPERTIES',
6a488035
TO
38 MODE_CONTACTS = 1,
39 MODE_CONTRIBUTE = 2,
746aa919 40 // There is no 4,
6a488035
TO
41 MODE_MEMBER = 8,
42 MODE_EVENT = 16,
eda34f9b
MW
43 MODE_CONTACTSRELATED = 32,
44 // no 64.
6a488035
TO
45 MODE_GRANT = 128,
46 MODE_PLEDGEBANK = 256,
47 MODE_PLEDGE = 512,
746aa919 48 // There is no 1024,
6a488035 49 MODE_CASE = 2048,
6a488035
TO
50 MODE_ACTIVITY = 4096,
51 MODE_CAMPAIGN = 8192,
746aa919
CB
52 MODE_MAILING = 16384,
53 MODE_ALL = 17407;
6a488035 54
eda34f9b
MW
55 /**
56 * Constants for search operators
57 */
58 const
59 SEARCH_OPERATOR_AND = 'AND',
60 SEARCH_OPERATOR_OR = 'OR';
61
6a488035 62 /**
fe482240 63 * The default set of return properties.
6a488035
TO
64 *
65 * @var array
6a488035 66 */
b832662c 67 public static $_defaultReturnProperties;
6a488035
TO
68
69 /**
fe482240 70 * The default set of hier return properties.
6a488035
TO
71 *
72 * @var array
6a488035 73 */
69078420 74 public static $_defaultHierReturnProperties;
6a488035
TO
75
76 /**
fe482240 77 * The set of input params.
6a488035
TO
78 *
79 * @var array
80 */
81 public $_params;
82
83 public $_cfIDs;
84
85 public $_paramLookup;
86
ac4985d5 87 public $_sort;
746aa919 88
6a488035 89 /**
100fef9d 90 * The set of output params
6a488035
TO
91 *
92 * @var array
93 */
94 public $_returnProperties;
95
96 /**
100fef9d 97 * The select clause
6a488035
TO
98 *
99 * @var array
100 */
101 public $_select;
102
103 /**
100fef9d 104 * The name of the elements that are in the select clause
746aa919 105 * used to extract the values.
6a488035
TO
106 *
107 * @var array
108 */
109 public $_element;
110
111 /**
746aa919 112 * The tables involved in the query.
6a488035
TO
113 *
114 * @var array
115 */
116 public $_tables;
117
118 /**
746aa919 119 * The table involved in the where clause.
6a488035
TO
120 *
121 * @var array
122 */
123 public $_whereTables;
124
125 /**
746aa919 126 * Array of WHERE clause components.
6a488035
TO
127 *
128 * @var array
129 */
130 public $_where;
131
132 /**
746aa919 133 * The WHERE clause as a string.
6a488035
TO
134 *
135 * @var string
6a488035
TO
136 */
137 public $_whereClause;
138
139 /**
746aa919 140 * Additional WHERE clause for permissions.
6a488035
TO
141 *
142 * @var string
6a488035
TO
143 */
144 public $_permissionWhereClause;
a30e57e0 145
6a488035 146 /**
100fef9d 147 * The from string
6a488035
TO
148 *
149 * @var string
6a488035
TO
150 */
151 public $_fromClause;
152
153 /**
100fef9d 154 * Additional permission from clause
6a488035
TO
155 *
156 * @var string
6a488035
TO
157 */
158 public $_permissionFromClause;
159
160 /**
100fef9d 161 * The from clause for the simple select and alphabetical
6a488035
TO
162 * select
163 *
164 * @var string
165 */
166 public $_simpleFromClause;
167
168 /**
100fef9d 169 * The having values
6a488035 170 *
b832662c 171 * @var array
6a488035
TO
172 */
173 public $_having;
174
175 /**
176 * The english language version of the query
177 *
178 * @var array
179 */
180 public $_qill;
181
182 /**
183 * All the fields that could potentially be involved in
184 * this query
185 *
186 * @var array
187 */
188 public $_fields;
189
714ab070 190 /**
191 * Fields hacked for legacy reasons.
192 *
193 * Generally where a field has a option group defining it's options we add them to
194 * the fields array as pseudofields - eg for gender we would add the key 'gender' to fields
195 * using CRM_Core_DAO::appendPseudoConstantsToFields($fields);
196 *
197 * The rendered results would hold an id in the gender_id field and the label in the pseudo 'Gender'
198 * field. The heading for the pseudofield would come form the the option group name & for the id field
199 * from the xml.
200 *
201 * These fields are handled in a more legacy way - ie overwriting 'gender_id' with the label on output
202 * via the convertToPseudoNames function. Ideally we would convert them but they would then need to be fixed
203 * in some other places & there are also some issues around the name (ie. Gender currently has the label in the
204 * schema 'Gender' so adding a second 'Gender' field to search builder & export would be confusing and the standard is
205 * not fully agreed here.
206 *
207 * @var array
208 */
209 protected $legacyHackedFields = [
210 'gender_id' => 'gender',
211 'prefix_id' => 'individual_prefix',
212 'suffix_id' => 'individual_suffix',
213 'communication_style_id' => 'communication_style',
214 ];
215
6a488035 216 /**
fe482240 217 * Are we in search mode.
6a488035 218 *
b67daa72 219 * @var bool
6a488035
TO
220 */
221 public $_search = TRUE;
222
223 /**
fe482240 224 * Should we skip permission checking.
6a488035 225 *
b67daa72 226 * @var bool
6a488035
TO
227 */
228 public $_skipPermission = FALSE;
229
230 /**
fe482240 231 * Should we skip adding of delete clause.
6a488035 232 *
b67daa72 233 * @var bool
6a488035
TO
234 */
235 public $_skipDeleteClause = FALSE;
236
237 /**
100fef9d 238 * Are we in strict mode (use equality over LIKE)
6a488035 239 *
b67daa72 240 * @var bool
6a488035
TO
241 */
242 public $_strict = FALSE;
243
244 /**
fe482240 245 * What operator to use to group the clauses.
6a488035
TO
246 *
247 * @var string
248 */
249 public $_operator = 'AND';
250
251 public $_mode = 1;
252
253 /**
fe482240 254 * Should we only search on primary location.
6a488035 255 *
b67daa72 256 * @var bool
6a488035
TO
257 */
258 public $_primaryLocation = TRUE;
259
260 /**
fe482240 261 * Are contact ids part of the query.
6a488035 262 *
b67daa72 263 * @var bool
6a488035
TO
264 */
265 public $_includeContactIds = FALSE;
266
267 /**
fe482240 268 * Should we use the smart group cache.
6a488035 269 *
b67daa72 270 * @var bool
6a488035
TO
271 */
272 public $_smartGroupCache = TRUE;
273
274 /**
fe482240 275 * Should we display contacts with a specific relationship type.
6a488035
TO
276 *
277 * @var string
278 */
b832662c 279 public $_displayRelationshipType;
6a488035
TO
280
281 /**
fe482240 282 * Reference to the query object for custom values.
6a488035
TO
283 *
284 * @var Object
285 */
286 public $_customQuery;
287
288 /**
100fef9d 289 * Should we enable the distinct clause, used if we are including
6a488035
TO
290 * more than one group
291 *
b67daa72 292 * @var bool
6a488035
TO
293 */
294 public $_useDistinct = FALSE;
295
296 /**
297 * Should we just display one contact record
69078420 298 * @var bool
6a488035
TO
299 */
300 public $_useGroupBy = FALSE;
301
302 /**
100fef9d 303 * The relationship type direction
6a488035
TO
304 *
305 * @var array
6a488035 306 */
69078420 307 public static $_relType;
6a488035
TO
308
309 /**
100fef9d 310 * The activity role
6a488035
TO
311 *
312 * @var array
6a488035 313 */
69078420 314 public static $_activityRole;
6a488035
TO
315
316 /**
317 * Consider the component activity type
318 * during activity search.
319 *
320 * @var array
6a488035 321 */
69078420 322 public static $_considerCompActivities;
6a488035
TO
323
324 /**
325 * Consider with contact activities only,
326 * during activity search.
327 *
328 * @var array
6a488035 329 */
69078420 330 public static $_withContactActivitiesOnly;
6a488035
TO
331
332 /**
100fef9d 333 * Use distinct component clause for component searches
6a488035
TO
334 *
335 * @var string
336 */
337 public $_distinctComponentClause;
338
3dbf477c
DS
339 public $_rowCountClause;
340
6a488035 341 /**
100fef9d 342 * Use groupBy component clause for component searches
6a488035
TO
343 *
344 * @var string
345 */
346 public $_groupByComponentClause;
347
348 /**
349 * Track open panes, useful in advance search
350 *
351 * @var array
6a488035 352 */
be2fb01f 353 public static $_openedPanes = [];
6a488035 354
442df34b
CW
355 /**
356 * For search builder - which custom fields are location-dependent
357 * @var array
358 */
be2fb01f 359 public $_locationSpecificCustomFields = [];
442df34b 360
6a488035
TO
361 /**
362 * The tables which have a dependency on location and/or address
363 *
364 * @var array
6a488035 365 */
69078420 366 public static $_dependencies = [
6a488035
TO
367 'civicrm_state_province' => 1,
368 'civicrm_country' => 1,
369 'civicrm_county' => 1,
370 'civicrm_address' => 1,
371 'civicrm_location_type' => 1,
be2fb01f 372 ];
6a488035
TO
373
374 /**
fe482240 375 * List of location specific fields.
69078420 376 * @var array
6a488035 377 */
69078420 378 public static $_locationSpecificFields = [
6a488035
TO
379 'street_address',
380 'street_number',
381 'street_name',
382 'street_unit',
383 'supplemental_address_1',
384 'supplemental_address_2',
207f62c6 385 'supplemental_address_3',
6a488035
TO
386 'city',
387 'postal_code',
388 'postal_code_suffix',
389 'geo_code_1',
390 'geo_code_2',
391 'state_province',
392 'country',
393 'county',
394 'phone',
395 'email',
396 'im',
397 'address_name',
994a070c 398 'master_id',
8a60e058 399 'location_type',
be2fb01f 400 ];
6a488035
TO
401
402 /**
4e6072d5 403 * Remember if we handle either end of a number or date range
6a488035 404 * so we can skip the other
69078420 405 * @var array
6a488035 406 */
be2fb01f 407 protected $_rangeCache = [];
d9ab802d 408 /**
b67daa72 409 * Set to true when $this->relationship is run to avoid adding twice.
410 *
411 * @var bool
d9ab802d 412 */
ad682134 413 protected $_relationshipValuesAdded = FALSE;
d9ab802d 414
7c96365b 415 /**
9f266042 416 * Set to the name of the temp table if one has been created.
417 *
418 * @var string
7c96365b 419 */
b832662c 420 public static $_relationshipTempTable;
d9ab802d 421
be2fb01f 422 public $_pseudoConstantsSelect = [];
9131c564 423
b832662c 424 public $_groupUniqueKey;
e24f9388 425 public $_groupKeys = [];
ed17b5e2 426
6a488035 427 /**
fe482240 428 * Class constructor which also does all the work.
6a488035 429 *
2a6da8d7
EM
430 * @param array $params
431 * @param array $returnProperties
432 * @param array $fields
77c5b619
TO
433 * @param bool $includeContactIds
434 * @param bool $strict
2a6da8d7 435 * @param bool|int $mode - mode the search is operating on
6a488035 436 *
2a6da8d7
EM
437 * @param bool $skipPermission
438 * @param bool $searchDescendentGroups
439 * @param bool $smartGroupCache
440 * @param null $displayRelationshipType
441 * @param string $operator
66670e4d 442 * @param string $apiEntity
041ecc95 443 * @param bool|null $primaryLocationOnly
e14c912f 444 *
445 * @throws \CRM_Core_Exception
6a488035 446 */
59f4c9ee 447 public function __construct(
6a488035
TO
448 $params = NULL, $returnProperties = NULL, $fields = NULL,
449 $includeContactIds = FALSE, $strict = FALSE, $mode = 1,
450 $skipPermission = FALSE, $searchDescendentGroups = TRUE,
451 $smartGroupCache = TRUE, $displayRelationshipType = NULL,
66670e4d 452 $operator = 'AND',
0606198b 453 $apiEntity = NULL,
454 $primaryLocationOnly = NULL
6a488035 455 ) {
0606198b 456 if ($primaryLocationOnly === NULL) {
457 $primaryLocationOnly = Civi::settings()->get('searchPrimaryDetailsOnly');
458 }
459 $this->_primaryLocation = $primaryLocationOnly;
6a488035
TO
460 $this->_params = &$params;
461 if ($this->_params == NULL) {
be2fb01f 462 $this->_params = [];
6a488035
TO
463 }
464
33092c89 465 if ($returnProperties === self::NO_RETURN_PROPERTIES) {
be2fb01f 466 $this->_returnProperties = [];
33092c89
SB
467 }
468 elseif (empty($returnProperties)) {
6a488035
TO
469 $this->_returnProperties = self::defaultReturnProperties($mode);
470 }
471 else {
472 $this->_returnProperties = &$returnProperties;
473 }
474
475 $this->_includeContactIds = $includeContactIds;
476 $this->_strict = $strict;
477 $this->_mode = $mode;
478 $this->_skipPermission = $skipPermission;
479 $this->_smartGroupCache = $smartGroupCache;
480 $this->_displayRelationshipType = $displayRelationshipType;
481 $this->setOperator($operator);
482
483 if ($fields) {
484 $this->_fields = &$fields;
485 $this->_search = FALSE;
486 $this->_skipPermission = TRUE;
487 }
488 else {
5837835b 489 $this->_fields = CRM_Contact_BAO_Contact::exportableFields('All', FALSE, TRUE, TRUE, FALSE, !$skipPermission);
714ab070 490 // The legacy hacked fields will output as a string rather than their underlying type.
491 foreach (array_keys($this->legacyHackedFields) as $fieldName) {
492 $this->_fields[$fieldName]['type'] = CRM_Utils_Type::T_STRING;
493 }
41b8dd1d 494 $relationMetadata = CRM_Contact_BAO_Relationship::fields();
495 $relationFields = array_intersect_key($relationMetadata, array_fill_keys(['relationship_start_date', 'relationship_end_date'], 1));
7d8f464a 496 // No good option other than hard-coding metadata for this 'special' field in.
497 $relationFields['relation_active_period_date'] = [
498 'name' => 'relation_active_period_date',
499 'type' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
500 'title' => ts('Active Period'),
501 'table_name' => 'civicrm_relationship',
502 'where' => 'civicrm_relationship.start_date',
503 'where_end' => 'civicrm_relationship.end_date',
504 'html' => ['type' => 'SelectDate', 'formatType' => 'activityDateTime'],
505 ];
41b8dd1d 506 $this->_fields = array_merge($relationFields, $this->_fields);
6a488035 507
5837835b 508 $fields = CRM_Core_Component::getQueryFields(!$this->_skipPermission);
6a488035
TO
509 unset($fields['note']);
510 $this->_fields = array_merge($this->_fields, $fields);
511
512 // add activity fields
fd11fc34 513 $this->_fields = array_merge($this->_fields, CRM_Activity_BAO_Activity::exportableFields());
cc81d063 514 $this->_fields = array_merge($this->_fields, CRM_Activity_BAO_Activity::exportableFields('Case'));
fd11fc34 515 // Add hack as no unique name is defined for the field but the search form is in denial.
516 $this->_fields['activity_priority_id'] = $this->_fields['priority_id'];
f2a9b25c 517
99e9587a
DS
518 // add any fields provided by hook implementers
519 $extFields = CRM_Contact_BAO_Query_Hook::singleton()->getFields();
f2a9b25c 520 $this->_fields = array_merge($this->_fields, $extFields);
6a488035
TO
521 }
522
523 // basically do all the work once, and then reuse it
66670e4d 524 $this->initialize($apiEntity);
6a488035
TO
525 }
526
527 /**
fe482240 528 * Function which actually does all the work for the constructor.
8f165fa5 529 *
530 * @param string $apiEntity
531 * The api entity being called.
532 * This sort-of duplicates $mode in a confusing way. Probably not by design.
e14c912f 533 *
534 * @throws \CRM_Core_Exception
6a488035 535 */
66670e4d 536 public function initialize($apiEntity = NULL) {
be2fb01f
CW
537 $this->_select = [];
538 $this->_element = [];
539 $this->_tables = [];
540 $this->_whereTables = [];
541 $this->_where = [];
542 $this->_qill = [];
be2fb01f
CW
543 $this->_cfIDs = [];
544 $this->_paramLookup = [];
545 $this->_having = [];
6a488035
TO
546
547 $this->_customQuery = NULL;
548
549 // reset cached static variables - CRM-5803
550 self::$_activityRole = NULL;
551 self::$_considerCompActivities = NULL;
552 self::$_withContactActivitiesOnly = NULL;
553
554 $this->_select['contact_id'] = 'contact_a.id as contact_id';
555 $this->_element['contact_id'] = 1;
556 $this->_tables['civicrm_contact'] = 1;
557
558 if (!empty($this->_params)) {
559 $this->buildParamsLookup();
560 }
561
562 $this->_whereTables = $this->_tables;
563
66670e4d 564 $this->selectClause($apiEntity);
a7d6a3b6 565 if (!empty($this->_cfIDs)) {
566 // @todo This function is the select function but instead of running 'select' it
567 // is running the whole query.
568 $this->_customQuery = new CRM_Core_BAO_CustomQuery($this->_cfIDs, TRUE, $this->_locationSpecificCustomFields);
569 $this->_customQuery->query();
570 $this->_select = array_merge($this->_select, $this->_customQuery->_select);
571 $this->_element = array_merge($this->_element, $this->_customQuery->_element);
572 $this->_tables = array_merge($this->_tables, $this->_customQuery->_tables);
a7d6a3b6 573 }
9178793e 574 $isForcePrimaryOnly = !empty($apiEntity);
575 $this->_whereClause = $this->whereClause($isForcePrimaryOnly);
be274d8a
E
576 if (array_key_exists('civicrm_contribution', $this->_whereTables)) {
577 $component = 'contribution';
578 }
579 if (array_key_exists('civicrm_membership', $this->_whereTables)) {
580 $component = 'membership';
581 }
40ae908c 582 if (isset($component) && !$this->_skipPermission) {
583 // Unit test coverage in api_v3_FinancialTypeACLTest::testGetACLContribution.
ecb39dfd
E
584 CRM_Financial_BAO_FinancialType::buildPermissionedClause($this->_whereClause, $component);
585 }
6a488035 586
b3e1c09d 587 $this->_fromClause = self::fromClause($this->_tables, NULL, NULL, $this->_primaryLocation, $this->_mode, $apiEntity);
6a488035
TO
588 $this->_simpleFromClause = self::fromClause($this->_whereTables, NULL, NULL, $this->_primaryLocation, $this->_mode);
589
590 $this->openedSearchPanes(TRUE);
591 }
592
67d19299 593 /**
bb05da0c 594 * Function for same purpose as convertFormValues.
595 *
596 * Like convert form values this function exists to pre-Process parameters from the form.
597 *
598 * It is unclear why they are different functions & likely relates to advances search
599 * versus search builder.
600 *
601 * The direction we are going is having the form convert values to a standardised format &
8f165fa5 602 * moving away from weird & wonderful where clause switches.
bb05da0c 603 *
67d19299 604 * Fix and handle contact deletion nicely.
605 *
606 * this code is primarily for search builder use case where different clauses can specify if they want deleted.
607 *
0e480632 608 * @see https://issues.civicrm.org/jira/browse/CRM-11971
67d19299 609 */
00be9182 610 public function buildParamsLookup() {
6a488035 611 $trashParamExists = FALSE;
be2fb01f 612 $paramByGroup = [];
5c7dad85
TO
613 foreach ($this->_params as $k => $param) {
614 if (!empty($param[0]) && $param[0] == 'contact_is_deleted') {
6a488035
TO
615 $trashParamExists = TRUE;
616 }
e6f3f602 617 if (!empty($param[3])) {
618 $paramByGroup[$param[3]][$k] = $param;
619 }
6a488035
TO
620 }
621
5c7dad85 622 if ($trashParamExists) {
6a488035
TO
623 $this->_skipDeleteClause = TRUE;
624
625 //cycle through group sets and explicitly add trash param if not set
5c7dad85 626 foreach ($paramByGroup as $setID => $set) {
6a488035 627 if (
be2fb01f
CW
628 !in_array(['contact_is_deleted', '=', '1', $setID, '0'], $this->_params) &&
629 !in_array(['contact_is_deleted', '=', '0', $setID, '0'], $this->_params)
5c7dad85 630 ) {
be2fb01f 631 $this->_params[] = [
6a488035
TO
632 'contact_is_deleted',
633 '=',
634 '0',
635 $setID,
636 '0',
be2fb01f 637 ];
6a488035
TO
638 }
639 }
640 }
641
642 foreach ($this->_params as $value) {
a7488080 643 if (empty($value[0])) {
6a488035
TO
644 continue;
645 }
d1eb5519 646 $cfID = CRM_Core_BAO_CustomField::getKeyID(str_replace(['_relative', '_low', '_high', '_to', '_high'], '', $value[0]));
6a488035
TO
647 if ($cfID) {
648 if (!array_key_exists($cfID, $this->_cfIDs)) {
be2fb01f 649 $this->_cfIDs[$cfID] = [];
6a488035 650 }
3130209f
CW
651 // Set wildcard value based on "and/or" selection
652 foreach ($this->_params as $key => $param) {
653 if ($param[0] == $value[0] . '_operator') {
654 $value[4] = $param[2] == 'or';
655 break;
656 }
657 }
6a488035
TO
658 $this->_cfIDs[$cfID][] = $value;
659 }
660
661 if (!array_key_exists($value[0], $this->_paramLookup)) {
be2fb01f 662 $this->_paramLookup[$value[0]] = [];
6a488035 663 }
485a3a1f 664 if ($value[0] !== 'group') {
8f165fa5 665 // Just trying to unravel how group interacts here! This whole function is weird.
485a3a1f 666 $this->_paramLookup[$value[0]][] = $value;
667 }
6a488035
TO
668 }
669 }
670
671 /**
67d19299 672 * Some composite fields do not appear in the fields array hack to make them part of the query.
8f165fa5 673 *
674 * @param $apiEntity
675 * The api entity being called.
676 * This sort-of duplicates $mode in a confusing way. Probably not by design.
6a488035 677 */
66670e4d 678 public function addSpecialFields($apiEntity) {
be2fb01f 679 static $special = ['contact_type', 'contact_sub_type', 'sort_name', 'display_name'];
66670e4d 680 // if get called via Contact.get API having address_id as return parameter
9de9a433 681 if ($apiEntity === 'Contact') {
66670e4d 682 $special[] = 'address_id';
683 }
6a488035 684 foreach ($special as $name) {
a7488080 685 if (!empty($this->_returnProperties[$name])) {
9de9a433 686 if ($name === 'address_id') {
66670e4d 687 $this->_tables['civicrm_address'] = 1;
688 $this->_select['address_id'] = 'civicrm_address.id as address_id';
689 $this->_element['address_id'] = 1;
690 }
691 else {
692 $this->_select[$name] = "contact_a.{$name} as $name";
693 $this->_element[$name] = 1;
694 }
6a488035
TO
695 }
696 }
697 }
698
699 /**
700 * Given a list of conditions in params and a list of desired
701 * return Properties generate the required select and from
702 * clauses. Note that since the where clause introduces new
703 * tables, the initial attempt also retrieves all variables used
704 * in the params list
8f165fa5 705 *
706 * @param string $apiEntity
707 * The api entity being called.
708 * This sort-of duplicates $mode in a confusing way. Probably not by design.
6a488035 709 */
66670e4d 710 public function selectClause($apiEntity = NULL) {
6a488035 711
3af96592 712 // @todo Tidy up this. This arises because 1) we are ignoring the $mode & adding a new
713 // param ($apiEntity) instead - presumably an oversight & 2 because
714 // contact is not implemented as a component.
66670e4d 715 $this->addSpecialFields($apiEntity);
6a488035
TO
716
717 foreach ($this->_fields as $name => $field) {
6a488035
TO
718 // skip component fields
719 // there are done by the alter query below
720 // and need not be done on every field
3af96592 721 // @todo remove these & handle using metadata - only obscure fields
722 // that are hack-added should need to be excluded from the main loop.
1071730c 723 if (
b832662c 724 (substr($name, 0, 12) === 'participant_') ||
725 (substr($name, 0, 7) === 'pledge_') ||
726 (substr($name, 0, 5) === 'case_')
6a488035
TO
727 ) {
728 continue;
729 }
730
731 // redirect to activity select clause
4c24c842 732 if (
b832662c 733 (substr($name, 0, 9) === 'activity_') ||
734 ($name === 'parent_id')
4c24c842 735 ) {
6a488035 736 CRM_Activity_BAO_Query::select($this);
6a488035
TO
737 }
738
739 // if this is a hierarchical name, we ignore it
740 $names = explode('-', $name);
0742f843 741 if (count($names) > 1 && isset($names[1]) && is_numeric($names[1])) {
6a488035
TO
742 continue;
743 }
744
c6ff5b0d 745 // make an exception for special cases, to add the field in select clause
fd18baa6 746 $makeException = FALSE;
c6ff5b0d
KJ
747
748 //special handling for groups/tags
be2fb01f 749 if (in_array($name, ['groups', 'tags', 'notes'])
fd18baa6
KJ
750 && isset($this->_returnProperties[substr($name, 0, -1)])
751 ) {
8f165fa5 752 // @todo instead of setting make exception to get us into
753 // an if clause that has handling for these fields buried with in it
754 // move the handling to here.
fd18baa6
KJ
755 $makeException = TRUE;
756 }
757
c6ff5b0d
KJ
758 // since note has 3 different options we need special handling
759 // note / note_subject / note_body
b832662c 760 if ($name === 'notes') {
be2fb01f 761 foreach (['note', 'note_subject', 'note_body'] as $noteField) {
c6ff5b0d
KJ
762 if (isset($this->_returnProperties[$noteField])) {
763 $makeException = TRUE;
764 break;
765 }
766 }
767 }
a87ba7c0 768
6a488035 769 $cfID = CRM_Core_BAO_CustomField::getKeyID($name);
86ab13b7 770 if (
771 !empty($this->_paramLookup[$name])
772 || !empty($this->_returnProperties[$name])
124f3c1b 773 || $this->pseudoConstantNameIsInReturnProperties($field, $name)
86ab13b7 774 || $makeException
6a488035 775 ) {
6a488035
TO
776 if ($cfID) {
777 // add to cfIDs array if not present
778 if (!array_key_exists($cfID, $this->_cfIDs)) {
be2fb01f 779 $this->_cfIDs[$cfID] = [];
6a488035
TO
780 }
781 }
782 elseif (isset($field['where'])) {
783 list($tableName, $fieldName) = explode('.', $field['where'], 2);
784 if (isset($tableName)) {
f3acfdd9 785 if (!empty(self::$_dependencies[$tableName])) {
6a488035
TO
786 $this->_tables['civicrm_address'] = 1;
787 $this->_select['address_id'] = 'civicrm_address.id as address_id';
788 $this->_element['address_id'] = 1;
789 }
790
b832662c 791 if ($tableName === 'im_provider' || $tableName === 'email_greeting' ||
792 $tableName === 'postal_greeting' || $tableName === 'addressee'
6a488035 793 ) {
b832662c 794 if ($tableName === 'im_provider') {
d9ab802d
PJ
795 CRM_Core_OptionValue::select($this);
796 }
797
798 if (in_array($tableName,
be2fb01f 799 ['email_greeting', 'postal_greeting', 'addressee'])) {
d9ab802d
PJ
800 $this->_element["{$name}_id"] = 1;
801 $this->_select["{$name}_id"] = "contact_a.{$name}_id as {$name}_id";
be2fb01f 802 $this->_pseudoConstantsSelect[$name] = ['pseudoField' => $tableName, 'idCol' => "{$name}_id"];
d9ab802d
PJ
803 $this->_pseudoConstantsSelect[$name]['select'] = "{$name}.{$fieldName} as $name";
804 $this->_pseudoConstantsSelect[$name]['element'] = $name;
805
b832662c 806 if ($tableName === 'email_greeting') {
3af96592 807 // @todo bad join.
59f4c9ee
TO
808 $this->_pseudoConstantsSelect[$name]['join']
809 = " LEFT JOIN civicrm_option_group option_group_email_greeting ON (option_group_email_greeting.name = 'email_greeting')";
d9ab802d
PJ
810 $this->_pseudoConstantsSelect[$name]['join'] .=
811 " LEFT JOIN civicrm_option_value email_greeting ON (contact_a.email_greeting_id = email_greeting.value AND option_group_email_greeting.id = email_greeting.option_group_id ) ";
812 }
b832662c 813 elseif ($tableName === 'postal_greeting') {
3af96592 814 // @todo bad join.
59f4c9ee
TO
815 $this->_pseudoConstantsSelect[$name]['join']
816 = " LEFT JOIN civicrm_option_group option_group_postal_greeting ON (option_group_postal_greeting.name = 'postal_greeting')";
d9ab802d
PJ
817 $this->_pseudoConstantsSelect[$name]['join'] .=
818 " LEFT JOIN civicrm_option_value postal_greeting ON (contact_a.postal_greeting_id = postal_greeting.value AND option_group_postal_greeting.id = postal_greeting.option_group_id ) ";
819 }
820 elseif ($tableName == 'addressee') {
3af96592 821 // @todo bad join.
59f4c9ee
TO
822 $this->_pseudoConstantsSelect[$name]['join']
823 = " LEFT JOIN civicrm_option_group option_group_addressee ON (option_group_addressee.name = 'addressee')";
d9ab802d
PJ
824 $this->_pseudoConstantsSelect[$name]['join'] .=
825 " LEFT JOIN civicrm_option_value addressee ON (contact_a.addressee_id = addressee.value AND option_group_addressee.id = addressee.option_group_id ) ";
826 }
827 $this->_pseudoConstantsSelect[$name]['table'] = $tableName;
828
6a488035
TO
829 //get display
830 $greetField = "{$name}_display";
831 $this->_select[$greetField] = "contact_a.{$greetField} as {$greetField}";
832 $this->_element[$greetField] = 1;
833 //get custom
834 $greetField = "{$name}_custom";
835 $this->_select[$greetField] = "contact_a.{$greetField} as {$greetField}";
836 $this->_element[$greetField] = 1;
837 }
838 }
839 else {
be2fb01f 840 if (!in_array($tableName, ['civicrm_state_province', 'civicrm_country', 'civicrm_county'])) {
d9ab802d
PJ
841 $this->_tables[$tableName] = 1;
842 }
6a488035
TO
843
844 // also get the id of the tableName
845 $tName = substr($tableName, 8);
be2fb01f 846 if (in_array($tName, ['country', 'state_province', 'county'])) {
d9ab802d 847 if ($tName == 'state_province') {
be2fb01f 848 $this->_pseudoConstantsSelect['state_province_name'] = [
59f4c9ee
TO
849 'pseudoField' => "{$tName}",
850 'idCol' => "{$tName}_id",
851 'bao' => 'CRM_Core_BAO_Address',
852 'table' => "civicrm_{$tName}",
853 'join' => " LEFT JOIN civicrm_{$tName} ON civicrm_address.{$tName}_id = civicrm_{$tName}.id ",
be2fb01f 854 ];
59f4c9ee 855
be2fb01f 856 $this->_pseudoConstantsSelect[$tName] = [
59f4c9ee
TO
857 'pseudoField' => 'state_province_abbreviation',
858 'idCol' => "{$tName}_id",
859 'table' => "civicrm_{$tName}",
860 'join' => " LEFT JOIN civicrm_{$tName} ON civicrm_address.{$tName}_id = civicrm_{$tName}.id ",
be2fb01f 861 ];
d9ab802d 862 }
7f84f734 863 else {
be2fb01f 864 $this->_pseudoConstantsSelect[$name] = [
59f4c9ee
TO
865 'pseudoField' => "{$tName}_id",
866 'idCol' => "{$tName}_id",
867 'bao' => 'CRM_Core_BAO_Address',
868 'table' => "civicrm_{$tName}",
869 'join' => " LEFT JOIN civicrm_{$tName} ON civicrm_address.{$tName}_id = civicrm_{$tName}.id ",
be2fb01f 870 ];
7f84f734 871 }
6a488035 872
d9ab802d
PJ
873 $this->_select["{$tName}_id"] = "civicrm_address.{$tName}_id as {$tName}_id";
874 $this->_element["{$tName}_id"] = 1;
875 }
876 elseif ($tName != 'contact') {
6a488035
TO
877 $this->_select["{$tName}_id"] = "{$tableName}.id as {$tName}_id";
878 $this->_element["{$tName}_id"] = 1;
879 }
880
881 //special case for phone
882 if ($name == 'phone') {
883 $this->_select['phone_type_id'] = "civicrm_phone.phone_type_id as phone_type_id";
884 $this->_element['phone_type_id'] = 1;
885 }
886
887 // if IM then select provider_id also
888 // to get "IM Service Provider" in a file to be exported, CRM-3140
889 if ($name == 'im') {
890 $this->_select['provider_id'] = "civicrm_im.provider_id as provider_id";
891 $this->_element['provider_id'] = 1;
892 }
893
86ab13b7 894 if ($tName == 'contact' && $fieldName == 'organization_name') {
6a488035 895 // special case, when current employer is set for Individual contact
86ab13b7 896 $this->_select[$name] = "IF ( contact_a.contact_type = 'Individual', NULL, contact_a.organization_name ) as organization_name";
897 }
898 elseif ($tName == 'contact' && $fieldName === 'id') {
899 // Handled elsewhere, explicitly ignore. Possibly for all tables...
6a488035 900 }
be2fb01f 901 elseif (in_array($tName, ['country', 'county'])) {
4e6490d4
E
902 $this->_pseudoConstantsSelect[$name]['select'] = "{$field['where']} as `$name`";
903 $this->_pseudoConstantsSelect[$name]['element'] = $name;
904 }
905 elseif ($tName == 'state_province') {
906 $this->_pseudoConstantsSelect[$tName]['select'] = "{$field['where']} as `$name`";
907 $this->_pseudoConstantsSelect[$tName]['element'] = $name;
d9ab802d 908 }
e4ce3252 909 elseif (strpos($name, 'contribution_soft_credit') !== FALSE) {
2d94ea54 910 if (CRM_Contribute_BAO_Query::isSoftCreditOptionEnabled($this->_params)) {
911 $this->_select[$name] = "{$field['where']} as `$name`";
912 }
913 }
124f3c1b 914 elseif ($this->pseudoConstantNameIsInReturnProperties($field, $name)) {
915 $this->addPseudoconstantFieldToSelect($name);
916 }
6a488035 917 else {
86ab13b7 918 $this->_select[$name] = str_replace('civicrm_contact.', 'contact_a.', "{$field['where']} as `$name`");
6a488035 919 }
be2fb01f 920 if (!in_array($tName, ['state_province', 'country', 'county'])) {
d9ab802d
PJ
921 $this->_element[$name] = 1;
922 }
6a488035
TO
923 }
924 }
925 }
926 elseif ($name === 'tags') {
8f165fa5 927 //@todo move this handling outside the big IF & ditch $makeException
6a488035
TO
928 $this->_useGroupBy = TRUE;
929 $this->_select[$name] = "GROUP_CONCAT(DISTINCT(civicrm_tag.name)) as tags";
930 $this->_element[$name] = 1;
931 $this->_tables['civicrm_tag'] = 1;
932 $this->_tables['civicrm_entity_tag'] = 1;
933 }
934 elseif ($name === 'groups') {
8f165fa5 935 //@todo move this handling outside the big IF & ditch $makeException
6a488035 936 $this->_useGroupBy = TRUE;
3875e6b6 937 // Duplicates will be created here but better to sort them out in php land.
938 $this->_select[$name] = "
939 CONCAT_WS(',',
940 GROUP_CONCAT(DISTINCT IF(civicrm_group_contact.status = 'Added', civicrm_group_contact.group_id, '')),
941 GROUP_CONCAT(DISTINCT civicrm_group_contact_cache.group_id)
942 )
d9d23a91 943 as `groups`";
6a488035 944 $this->_element[$name] = 1;
3875e6b6 945 $this->_tables['civicrm_group_contact'] = 1;
946 $this->_tables['civicrm_group_contact_cache'] = 1;
be2fb01f 947 $this->_pseudoConstantsSelect["{$name}"] = [
3875e6b6 948 'pseudoField' => "groups",
9de9a433 949 'idCol' => 'groups',
be2fb01f 950 ];
6a488035
TO
951 }
952 elseif ($name === 'notes') {
8f165fa5 953 //@todo move this handling outside the big IF & ditch $makeException
e3199114 954 // if note field is subject then return subject else body of the note
955 $noteColumn = 'note';
9de9a433 956 if (isset($noteField) && $noteField === 'note_subject') {
e3199114 957 $noteColumn = 'subject';
958 }
959
6a488035 960 $this->_useGroupBy = TRUE;
e3199114 961 $this->_select[$name] = "GROUP_CONCAT(DISTINCT(civicrm_note.$noteColumn)) as notes";
6a488035
TO
962 $this->_element[$name] = 1;
963 $this->_tables['civicrm_note'] = 1;
964 }
965 elseif ($name === 'current_employer') {
966 $this->_select[$name] = "IF ( contact_a.contact_type = 'Individual', contact_a.organization_name, NULL ) as current_employer";
967 $this->_element[$name] = 1;
968 }
969 }
970
8cc574cf 971 if ($cfID && !empty($field['is_search_range'])) {
6a488035 972 // this is a custom field with range search enabled, so we better check for two/from values
a7488080 973 if (!empty($this->_paramLookup[$name . '_from'])) {
6a488035 974 if (!array_key_exists($cfID, $this->_cfIDs)) {
be2fb01f 975 $this->_cfIDs[$cfID] = [];
6a488035
TO
976 }
977 foreach ($this->_paramLookup[$name . '_from'] as $pID => $p) {
978 // search in the cdID array for the same grouping
979 $fnd = FALSE;
980 foreach ($this->_cfIDs[$cfID] as $cID => $c) {
981 if ($c[3] == $p[3]) {
982 $this->_cfIDs[$cfID][$cID][2]['from'] = $p[2];
983 $fnd = TRUE;
984 }
985 }
986 if (!$fnd) {
be2fb01f 987 $p[2] = ['from' => $p[2]];
6a488035
TO
988 $this->_cfIDs[$cfID][] = $p;
989 }
990 }
991 }
a7488080 992 if (!empty($this->_paramLookup[$name . '_to'])) {
6a488035 993 if (!array_key_exists($cfID, $this->_cfIDs)) {
be2fb01f 994 $this->_cfIDs[$cfID] = [];
6a488035
TO
995 }
996 foreach ($this->_paramLookup[$name . '_to'] as $pID => $p) {
997 // search in the cdID array for the same grouping
998 $fnd = FALSE;
999 foreach ($this->_cfIDs[$cfID] as $cID => $c) {
1000 if ($c[4] == $p[4]) {
1001 $this->_cfIDs[$cfID][$cID][2]['to'] = $p[2];
1002 $fnd = TRUE;
1003 }
1004 }
1005 if (!$fnd) {
be2fb01f 1006 $p[2] = ['to' => $p[2]];
6a488035
TO
1007 $this->_cfIDs[$cfID][] = $p;
1008 }
1009 }
1010 }
1011 }
1012 }
1013
1014 // add location as hierarchical elements
1015 $this->addHierarchicalElements();
1016
1017 // add multiple field like website
1018 $this->addMultipleElements();
1019
1020 //fix for CRM-951
1021 CRM_Core_Component::alterQuery($this, 'select');
1022
99e9587a 1023 CRM_Contact_BAO_Query_Hook::singleton()->alterSearchQuery($this, 'select');
6a488035
TO
1024 }
1025
1026 /**
c037736a 1027 * If the return Properties are set in a hierarchy, traverse the hierarchy to get the return values.
6a488035 1028 */
00be9182 1029 public function addHierarchicalElements() {
a7488080 1030 if (empty($this->_returnProperties['location'])) {
6a488035
TO
1031 return;
1032 }
1033 if (!is_array($this->_returnProperties['location'])) {
1034 return;
1035 }
1036
f9ba4d01 1037 $locationTypes = CRM_Core_DAO_Address::buildOptions('location_type_id', 'validate');
be2fb01f 1038 $processed = [];
6a488035
TO
1039 $index = 0;
1040
1041 $addressCustomFields = CRM_Core_BAO_CustomField::getFieldsForImport('Address');
be2fb01f 1042 $addressCustomFieldIds = [];
6a488035
TO
1043
1044 foreach ($this->_returnProperties['location'] as $name => $elements) {
1045 $lCond = self::getPrimaryCondition($name);
708ce91f 1046 $locationTypeId = is_numeric($name) ? NULL : array_search($name, $locationTypes);
6a488035
TO
1047
1048 if (!$lCond) {
6a488035
TO
1049 if ($locationTypeId === FALSE) {
1050 continue;
1051 }
1052 $lCond = "location_type_id = $locationTypeId";
1053 $this->_useDistinct = TRUE;
1054
1055 //commented for CRM-3256
1056 $this->_useGroupBy = TRUE;
1057 }
1058
1059 $name = str_replace(' ', '_', $name);
6a488035
TO
1060 $tName = "$name-location_type";
1061 $ltName = "`$name-location_type`";
1062 $this->_select["{$tName}_id"] = "`$tName`.id as `{$tName}_id`";
1063 $this->_select["{$tName}"] = "`$tName`.name as `{$tName}`";
1064 $this->_element["{$tName}_id"] = 1;
1065 $this->_element["{$tName}"] = 1;
1066
1067 $locationTypeName = $tName;
be2fb01f 1068 $locationTypeJoin = [];
6a488035 1069
6a488035
TO
1070 $addWhereCount = 0;
1071 foreach ($elements as $elementFullName => $dontCare) {
1072 $index++;
1073 $elementName = $elementCmpName = $elementFullName;
1074
1075 if (substr($elementCmpName, 0, 5) == 'phone') {
1076 $elementCmpName = 'phone';
1077 }
1078
c3f7ab62 1079 if (array_key_exists($elementCmpName, $addressCustomFields)) {
6a488035
TO
1080 if ($cfID = CRM_Core_BAO_CustomField::getKeyID($elementCmpName)) {
1081 $addressCustomFieldIds[$cfID][$name] = 1;
1082 }
1083 }
708ce91f 1084 // add address table - doesn't matter if we do it mutliple times - it's the same data
1085 // @todo ditch the double processing of addressJoin
6a488035 1086 if ((in_array($elementCmpName, self::$_locationSpecificFields) || !empty($addressCustomFieldIds))
be2fb01f 1087 && !in_array($elementCmpName, ['email', 'phone', 'im', 'openid'])
6a488035 1088 ) {
708ce91f 1089 list($aName, $addressJoin) = $this->addAddressTable($name, $lCond);
6a488035
TO
1090 $locationTypeJoin[$tName] = " ( $aName.location_type_id = $ltName.id ) ";
1091 $processed[$aName] = 1;
6a488035
TO
1092 }
1093
1094 $cond = $elementType = '';
1095 if (strpos($elementName, '-') !== FALSE) {
1096 // this is either phone, email or IM
1097 list($elementName, $elementType) = explode('-', $elementName);
1098
6a488035
TO
1099 if (($elementName != 'phone') && ($elementName != 'im')) {
1100 $cond = self::getPrimaryCondition($elementType);
1101 }
6e7e6dc0
PJ
1102 // CRM-13011 : If location type is primary, do not restrict search to the phone
1103 // type id - we want the primary phone, regardless of what type it is.
1104 // Otherwise, restrict to the specified phone type for the given field.
9457ac35 1105 if ((!$cond) && ($elementName == 'phone')) {
6a488035
TO
1106 $cond = "phone_type_id = '$elementType'";
1107 }
1108 elseif ((!$cond) && ($elementName == 'im')) {
1109 // IM service provider id, CRM-3140
1110 $cond = "provider_id = '$elementType'";
1111 }
1112 $elementType = '-' . $elementType;
1113 }
1114
9c1bc317 1115 $field = $this->_fields[$elementName] ?? NULL;
5db2212e 1116 if (!empty($field)) {
1117 if (isset($this->_pseudoConstantsSelect[$field['name']])) {
1118 $this->_pseudoConstantsSelect[$name . '-' . $field['name']] = $this->_pseudoConstantsSelect[$field['name']];
1119 }
0b23ab2b 1120 }
6a488035
TO
1121
1122 // hack for profile, add location id
1123 if (!$field) {
1124 if ($elementType &&
1125 // fix for CRM-882( to handle phone types )
1126 !is_numeric($elementType)
1127 ) {
1128 if (is_numeric($name)) {
9c1bc317 1129 $field = $this->_fields[$elementName . "-Primary$elementType"] ?? NULL;
6a488035
TO
1130 }
1131 else {
9c1bc317 1132 $field = $this->_fields[$elementName . "-$locationTypeId$elementType"] ?? NULL;
6a488035
TO
1133 }
1134 }
1135 elseif (is_numeric($name)) {
1136 //this for phone type to work
be2fb01f 1137 if (in_array($elementName, ['phone', 'phone_ext'])) {
9c1bc317 1138 $field = $this->_fields[$elementName . "-Primary" . $elementType] ?? NULL;
6a488035
TO
1139 }
1140 else {
9c1bc317 1141 $field = $this->_fields[$elementName . "-Primary"] ?? NULL;
6a488035
TO
1142 }
1143 }
1144 else {
1145 //this is for phone type to work for profile edit
be2fb01f 1146 if (in_array($elementName, ['phone', 'phone_ext'])) {
9c1bc317 1147 $field = $this->_fields[$elementName . "-$locationTypeId$elementType"] ?? NULL;
6a488035
TO
1148 }
1149 else {
9c1bc317 1150 $field = $this->_fields[$elementName . "-$locationTypeId"] ?? NULL;
6a488035
TO
1151 }
1152 }
1153 }
1154
314dbef8 1155 // Check if there is a value, if so also add to where Clause
6a488035
TO
1156 $addWhere = FALSE;
1157 if ($this->_params) {
1158 $nm = $elementName;
1159 if (isset($locationTypeId)) {
1160 $nm .= "-$locationTypeId";
1161 }
1162 if (!is_numeric($elementType)) {
1163 $nm .= "$elementType";
1164 }
1165
1166 foreach ($this->_params as $id => $values) {
8af73472 1167 if ((is_array($values) && $values[0] == $nm) ||
be2fb01f 1168 (in_array($elementName, ['phone', 'im'])
6a488035
TO
1169 && (strpos($values[0], $nm) !== FALSE)
1170 )
1171 ) {
1172 $addWhere = TRUE;
1173 $addWhereCount++;
1174 break;
1175 }
1176 }
1177 }
1178
1179 if ($field && isset($field['where'])) {
1180 list($tableName, $fieldName) = explode('.', $field['where'], 2);
d9ab802d
PJ
1181 $pf = substr($tableName, 8);
1182 $tName = $name . '-' . $pf . $elementType;
6a488035 1183 if (isset($tableName)) {
d9ab802d
PJ
1184 if ($tableName == 'civicrm_state_province' || $tableName == 'civicrm_country' || $tableName == 'civicrm_county') {
1185 $this->_select["{$tName}_id"] = "{$aName}.{$pf}_id as `{$tName}_id`";
1186 }
1187 else {
1188 $this->_select["{$tName}_id"] = "`$tName`.id as `{$tName}_id`";
1189 }
1190
6a488035
TO
1191 $this->_element["{$tName}_id"] = 1;
1192 if (substr($tName, -15) == '-state_province') {
1193 // FIXME: hack to fix CRM-1900
aaffa79f 1194 $a = Civi::settings()->get('address_format');
6a488035
TO
1195
1196 if (substr_count($a, 'state_province_name') > 0) {
be2fb01f 1197 $this->_pseudoConstantsSelect["{$name}-{$elementFullName}"] = [
59f4c9ee
TO
1198 'pseudoField' => "{$pf}_id",
1199 'idCol' => "{$tName}_id",
1200 'bao' => 'CRM_Core_BAO_Address',
be2fb01f 1201 ];
d9ab802d 1202 $this->_pseudoConstantsSelect["{$name}-{$elementFullName}"]['select'] = "`$tName`.name as `{$name}-{$elementFullName}`";
6a488035
TO
1203 }
1204 else {
be2fb01f 1205 $this->_pseudoConstantsSelect["{$name}-{$elementFullName}"] = [
59f4c9ee
TO
1206 'pseudoField' => 'state_province_abbreviation',
1207 'idCol' => "{$tName}_id",
be2fb01f 1208 ];
d9ab802d 1209 $this->_pseudoConstantsSelect["{$name}-{$elementFullName}"]['select'] = "`$tName`.abbreviation as `{$name}-{$elementFullName}`";
6a488035
TO
1210 }
1211 }
1212 else {
1213 if (substr($elementFullName, 0, 2) == 'im') {
1214 $provider = "{$name}-{$elementFullName}-provider_id";
1215 $this->_select[$provider] = "`$tName`.provider_id as `{$name}-{$elementFullName}-provider_id`";
1216 $this->_element[$provider] = 1;
1217 }
d9ab802d 1218 if ($pf == 'country' || $pf == 'county') {
be2fb01f 1219 $this->_pseudoConstantsSelect["{$name}-{$elementFullName}"] = [
5c7dad85
TO
1220 'pseudoField' => "{$pf}_id",
1221 'idCol' => "{$tName}_id",
21dfd5f5 1222 'bao' => 'CRM_Core_BAO_Address',
be2fb01f 1223 ];
d9ab802d
PJ
1224 $this->_pseudoConstantsSelect["{$name}-{$elementFullName}"]['select'] = "`$tName`.$fieldName as `{$name}-{$elementFullName}`";
1225 }
1226 else {
1227 $this->_select["{$name}-{$elementFullName}"] = "`$tName`.$fieldName as `{$name}-{$elementFullName}`";
1228 }
1229 }
6a488035 1230
be2fb01f 1231 if (in_array($pf, ['state_province', 'country', 'county'])) {
d9ab802d
PJ
1232 $this->_pseudoConstantsSelect["{$name}-{$elementFullName}"]['element'] = "{$name}-{$elementFullName}";
1233 }
1234 else {
1235 $this->_element["{$name}-{$elementFullName}"] = 1;
6a488035
TO
1236 }
1237
a7488080 1238 if (empty($processed["`$tName`"])) {
6a488035
TO
1239 $processed["`$tName`"] = 1;
1240 $newName = $tableName . '_' . $index;
1241 switch ($tableName) {
1242 case 'civicrm_phone':
1243 case 'civicrm_email':
1244 case 'civicrm_im':
1245 case 'civicrm_openid':
1246
9457ac35 1247 $this->_tables[$tName] = "\nLEFT JOIN $tableName `$tName` ON contact_a.id = `$tName`.contact_id";
1248 if ($tableName != 'civicrm_phone') {
1249 $this->_tables[$tName] .= " AND `$tName`.$lCond";
1250 }
1251 elseif (is_numeric($name)) {
1252 $this->_select[$tName] = "IF (`$tName`.is_primary = $name, `$tName`.phone, NULL) as `$tName`";
1253 }
1254
6a488035
TO
1255 // this special case to add phone type
1256 if ($cond) {
1257 $phoneTypeCondition = " AND `$tName`.$cond ";
1258 //gross hack to pickup corrupted data also, CRM-7603
1259 if (strpos($cond, 'phone_type_id') !== FALSE) {
1260 $phoneTypeCondition = " AND ( `$tName`.$cond OR `$tName`.phone_type_id IS NULL ) ";
8b3d5966
J
1261 if (!empty($lCond)) {
1262 $phoneTypeCondition .= " AND ( `$tName`.$lCond ) ";
1263 }
6a488035
TO
1264 }
1265 $this->_tables[$tName] .= $phoneTypeCondition;
1266 }
1267
1268 //build locationType join
1269 $locationTypeJoin[$tName] = " ( `$tName`.location_type_id = $ltName.id )";
1270
1271 if ($addWhere) {
1272 $this->_whereTables[$tName] = $this->_tables[$tName];
1273 }
1274 break;
1275
1276 case 'civicrm_state_province':
d9ab802d 1277 $this->_pseudoConstantsSelect["{$name}-{$elementFullName}"]['table'] = $tName;
59f4c9ee
TO
1278 $this->_pseudoConstantsSelect["{$name}-{$elementFullName}"]['join']
1279 = "\nLEFT JOIN $tableName `$tName` ON `$tName`.id = $aName.state_province_id";
6a488035
TO
1280 if ($addWhere) {
1281 $this->_whereTables["{$name}-address"] = $addressJoin;
6a488035
TO
1282 }
1283 break;
1284
8a60e058
MD
1285 case 'civicrm_location_type':
1286 $this->_tables[$tName] = "\nLEFT JOIN $tableName `$tName` ON `$tName`.id = $aName.location_type_id";
1287
1288 if ($addWhere) {
1289 $this->_whereTables["{$name}-address"] = $addressJoin;
1290 }
1291 break;
1292
6a488035 1293 case 'civicrm_country':
d9ab802d 1294 $this->_pseudoConstantsSelect["{$name}-{$elementFullName}"]['table'] = $newName;
59f4c9ee
TO
1295 $this->_pseudoConstantsSelect["{$name}-{$elementFullName}"]['join']
1296 = "\nLEFT JOIN $tableName `$tName` ON `$tName`.id = $aName.country_id";
6a488035
TO
1297 if ($addWhere) {
1298 $this->_whereTables["{$name}-address"] = $addressJoin;
6a488035
TO
1299 }
1300 break;
1301
1302 case 'civicrm_county':
d9ab802d 1303 $this->_pseudoConstantsSelect["{$name}-{$elementFullName}"]['table'] = $newName;
59f4c9ee
TO
1304 $this->_pseudoConstantsSelect["{$name}-{$elementFullName}"]['join']
1305 = "\nLEFT JOIN $tableName `$tName` ON `$tName`.id = $aName.county_id";
6a488035
TO
1306 if ($addWhere) {
1307 $this->_whereTables["{$name}-address"] = $addressJoin;
6a488035
TO
1308 }
1309 break;
1310
1311 default:
4ad408ae
VP
1312 if (isset($addressCustomFields[$elementName]['custom_field_id']) && !empty($addressCustomFields[$elementName]['custom_field_id'])) {
1313 $this->_tables[$tName] = "\nLEFT JOIN $tableName `$tName` ON `$tName`.id = $aName.id";
1314 }
6a488035
TO
1315 if ($addWhere) {
1316 $this->_whereTables["{$name}-address"] = $addressJoin;
1317 }
1318 break;
1319 }
1320 }
1321 }
1322 }
1323 }
1324
1325 // add location type join
1326 $ltypeJoin = "\nLEFT JOIN civicrm_location_type $ltName ON ( " . implode('OR', $locationTypeJoin) . " )";
1327 $this->_tables[$locationTypeName] = $ltypeJoin;
1328
1329 // table should be present in $this->_whereTables,
1330 // to add its condition in location type join, CRM-3939.
1331 if ($addWhereCount) {
be2fb01f 1332 $locClause = [];
6a488035 1333 foreach ($this->_whereTables as $tableName => $clause) {
a7488080 1334 if (!empty($locationTypeJoin[$tableName])) {
6a488035
TO
1335 $locClause[] = $locationTypeJoin[$tableName];
1336 }
1337 }
1338
1339 if (!empty($locClause)) {
1340 $this->_whereTables[$locationTypeName] = "\nLEFT JOIN civicrm_location_type $ltName ON ( " . implode('OR', $locClause) . " )";
1341 }
1342 }
1343 }
1344
1345 if (!empty($addressCustomFieldIds)) {
442df34b 1346 $customQuery = new CRM_Core_BAO_CustomQuery($addressCustomFieldIds);
6a488035
TO
1347 foreach ($addressCustomFieldIds as $cfID => $locTypeName) {
1348 foreach ($locTypeName as $name => $dnc) {
be2fb01f 1349 $this->_locationSpecificCustomFields[$cfID] = [$name, array_search($name, $locationTypes)];
6a488035
TO
1350 $fieldName = "$name-custom_{$cfID}";
1351 $tName = "$name-address-custom-{$cfID}";
1352 $aName = "`$name-address-custom-{$cfID}`";
1353 $this->_select["{$tName}_id"] = "`$tName`.id as `{$tName}_id`";
1354 $this->_element["{$tName}_id"] = 1;
1355 $this->_select[$fieldName] = "`$tName`.{$customQuery->_fields[$cfID]['column_name']} as `{$fieldName}`";
1356 $this->_element[$fieldName] = 1;
1357 $this->_tables[$tName] = "\nLEFT JOIN {$customQuery->_fields[$cfID]['table_name']} $aName ON ($aName.entity_id = `$name-address`.id)";
1358 }
1359 }
1360 }
1361 }
1362
1363 /**
c037736a 1364 * If the return Properties are set in a hierarchy, traverse the hierarchy to get the return values.
6a488035 1365 */
00be9182 1366 public function addMultipleElements() {
a7488080 1367 if (empty($this->_returnProperties['website'])) {
6a488035
TO
1368 return;
1369 }
1370 if (!is_array($this->_returnProperties['website'])) {
1371 return;
1372 }
1373
1374 foreach ($this->_returnProperties['website'] as $key => $elements) {
1375 foreach ($elements as $elementFullName => $dontCare) {
1376 $tName = "website-{$key}-{$elementFullName}";
1377 $this->_select["{$tName}_id"] = "`$tName`.id as `{$tName}_id`";
1378 $this->_select["{$tName}"] = "`$tName`.url as `{$tName}`";
1379 $this->_element["{$tName}_id"] = 1;
1380 $this->_element["{$tName}"] = 1;
1381
1382 $type = "website-{$key}-website_type_id";
1383 $this->_select[$type] = "`$tName`.website_type_id as `{$type}`";
1384 $this->_element[$type] = 1;
887e764d 1385 $this->_tables[$tName] = "\nLEFT JOIN civicrm_website `$tName` ON (`$tName`.contact_id = contact_a.id AND `$tName`.website_type_id = $key )";
6a488035
TO
1386 }
1387 }
1388 }
1389
1390 /**
fe482240 1391 * Generate the query based on what type of query we need.
6a488035 1392 *
77c5b619
TO
1393 * @param bool $count
1394 * @param bool $sortByChar
1395 * @param bool $groupContacts
1396 * @param bool $onlyDeleted
6a488035 1397 *
a6c01b45
CW
1398 * @return array
1399 * sql query parts as an array
6a488035 1400 */
00be9182 1401 public function query($count = FALSE, $sortByChar = FALSE, $groupContacts = FALSE, $onlyDeleted = FALSE) {
2c3ad4b7 1402 // build permission clause
1403 $this->generatePermissionClause($onlyDeleted, $count);
1404
6a488035 1405 if ($count) {
3dbf477c
DS
1406 if (isset($this->_rowCountClause)) {
1407 $select = "SELECT {$this->_rowCountClause}";
5c7dad85 1408 }
4c9b6178 1409 elseif (isset($this->_distinctComponentClause)) {
6a488035
TO
1410 // we add distinct to get the right count for components
1411 // for the more complex result set, we use GROUP BY the same id
1412 // CRM-9630
9ae25b56 1413 $select = "SELECT count( DISTINCT {$this->_distinctComponentClause} ) as rowCount";
6a488035
TO
1414 }
1415 else {
1416 $select = 'SELECT count(DISTINCT contact_a.id) as rowCount';
1417 }
1418 $from = $this->_simpleFromClause;
1419 if ($this->_useDistinct) {
1420 $this->_useGroupBy = TRUE;
1421 }
1422 }
1423 elseif ($sortByChar) {
caefed7d
MWMC
1424 // @fixme add the deprecated warning back in (it breaks CRM_Contact_SelectorTest::testSelectorQuery)
1425 // CRM_Core_Error::deprecatedFunctionWarning('sort by char is deprecated - use alphabetQuery method');
52cda5dc 1426 $select = 'SELECT DISTINCT LEFT(contact_a.sort_name, 1) as sort_name';
6a488035
TO
1427 $from = $this->_simpleFromClause;
1428 }
1429 elseif ($groupContacts) {
1430 $select = 'SELECT contact_a.id as id';
1431 if ($this->_useDistinct) {
1432 $this->_useGroupBy = TRUE;
1433 }
1434 $from = $this->_simpleFromClause;
1435 }
1436 else {
a7488080 1437 if (!empty($this->_paramLookup['group'])) {
ca91bd7f 1438
1439 list($name, $op, $value, $grouping, $wildcard) = $this->_paramLookup['group'][0];
1440
1441 if (is_array($value) && in_array(key($value), CRM_Core_DAO::acceptedSQLOperators(), TRUE)) {
1442 $this->_paramLookup['group'][0][1] = key($value);
1443 }
1444
3875e6b6 1445 // Presumably the lines below come into manage groups screen.
6a488035
TO
1446 // make sure there is only one element
1447 // this is used when we are running under smog and need to know
1448 // how the contact was added (CRM-1203)
db135a44 1449 $groups = (array) CRM_Utils_Array::value($this->_paramLookup['group'][0][1], $this->_paramLookup['group'][0][2], $this->_paramLookup['group'][0][2]);
6a488035 1450 if ((count($this->_paramLookup['group']) == 1) &&
7cc09daf 1451 (count($groups) == 1)
6a488035 1452 ) {
6a488035
TO
1453 $groupId = $groups[0];
1454
1455 //check if group is saved search
1456 $group = new CRM_Contact_BAO_Group();
1457 $group->id = $groupId;
1458 $group->find(TRUE);
1459
1460 if (!isset($group->saved_search_id)) {
f30aa754 1461 $tbName = "civicrm_group_contact";
82ae55f4 1462 // CRM-17254 don't retrieve extra fields if contact_id is specifically requested
1463 // as this will add load to an intentionally light query.
1464 // ideally this code would be removed as it appears to be to support CRM-1203
1465 // and passing in the required returnProperties from the url would
1466 // make more sense that globally applying the requirements of one form.
be2fb01f 1467 if (($this->_returnProperties != ['contact_id'])) {
82ae55f4 1468 $this->_select['group_contact_id'] = "$tbName.id as group_contact_id";
1469 $this->_element['group_contact_id'] = 1;
1470 $this->_select['status'] = "$tbName.status as status";
1471 $this->_element['status'] = 1;
1472 }
6a488035
TO
1473 }
1474 }
1475 $this->_useGroupBy = TRUE;
1476 }
1477 if ($this->_useDistinct && !isset($this->_distinctComponentClause)) {
1478 if (!($this->_mode & CRM_Contact_BAO_Query::MODE_ACTIVITY)) {
1479 // CRM-5954
1480 $this->_select['contact_id'] = 'contact_a.id as contact_id';
1481 $this->_useDistinct = FALSE;
1482 $this->_useGroupBy = TRUE;
1483 }
1484 }
1485
f946d152 1486 $select = $this->getSelect();
6a488035
TO
1487 $from = $this->_fromClause;
1488 }
1489
1490 $where = '';
1491 if (!empty($this->_whereClause)) {
1492 $where = "WHERE {$this->_whereClause}";
1493 }
1494
0619ff2f 1495 if (!empty($this->_permissionWhereClause) && empty($this->_displayRelationshipType)) {
21c6be28
SL
1496 if (!empty($this->_permissionFromClause)) {
1497 $from .= " $this->_permissionFromClause";
1498 }
2c3ad4b7 1499 if (empty($where)) {
1500 $where = "WHERE $this->_permissionWhereClause";
1501 }
1502 else {
1503 $where = "$where AND $this->_permissionWhereClause";
1504 }
1505 }
1506
6a488035
TO
1507 $having = '';
1508 if (!empty($this->_having)) {
2ef90ca7
EM
1509 foreach ($this->_having as $havingSets) {
1510 foreach ($havingSets as $havingSet) {
1511 $havingValue[] = $havingSet;
6a488035
TO
1512 }
1513 }
2ef90ca7 1514 $having = ' HAVING ' . implode(' AND ', $havingValue);
6a488035
TO
1515 }
1516
1517 // if we are doing a transform, do it here
1518 // use the $from, $where and $having to get the contact ID
1519 if ($this->_displayRelationshipType) {
1520 $this->filterRelatedContacts($from, $where, $having);
1521 }
1522
be2fb01f 1523 return [$select, $from, $where, $having];
6a488035
TO
1524 }
1525
86538308 1526 /**
c037736a 1527 * Get where values from the parameters.
1528 *
100fef9d 1529 * @param string $name
c037736a 1530 * @param mixed $grouping
86538308 1531 *
c037736a 1532 * @return mixed
86538308 1533 */
c037736a 1534 public function getWhereValues($name, $grouping) {
6a488035 1535 $result = NULL;
f4bff68a 1536 foreach ($this->_params as $values) {
6a488035
TO
1537 if ($values[0] == $name && $values[3] == $grouping) {
1538 return $values;
1539 }
1540 }
1541
1542 return $result;
1543 }
1544
86538308 1545 /**
c037736a 1546 * Fix date values.
1547 *
1548 * @param bool $relative
1549 * @param string $from
1550 * @param string $to
86538308 1551 */
00be9182 1552 public static function fixDateValues($relative, &$from, &$to) {
6a488035
TO
1553 if ($relative) {
1554 list($from, $to) = CRM_Utils_Date::getFromTo($relative, $from, $to);
1555 }
1556 }
1557
86538308 1558 /**
bb05da0c 1559 * Convert values from form-appropriate to query-object appropriate.
1560 *
1561 * The query object is increasingly supporting the sql-filter syntax which is the most flexible syntax.
1562 * So, ideally we would convert all fields to look like
1563 * array(
1564 * 0 => $fieldName
1565 * // Set the operator for legacy reasons, but it is ignored
1566 * 1 => '='
1567 * // array in sql filter syntax
1568 * 2 => array('BETWEEN' => array(1,60),
1569 * 3 => null
1570 * 4 => null
1571 * );
1572 *
1573 * There are some examples of the syntax in
1574 * https://github.com/civicrm/civicrm-core/tree/master/api/v3/examples/Relationship
1575 *
1576 * More notes at CRM_Core_DAO::createSQLFilter
1577 *
1578 * and a list of supported operators in CRM_Core_DAO
c037736a 1579 *
1580 * @param array $formValues
86538308
EM
1581 * @param int $wildcard
1582 * @param bool $useEquals
1583 *
0e2e76cf
EM
1584 * @param string $apiEntity
1585 *
df60621b 1586 * @param array $entityReferenceFields
1587 * Field names of any entity reference fields (which will need reformatting to IN syntax).
1588 *
86538308
EM
1589 * @return array
1590 */
df60621b 1591 public static function convertFormValues(&$formValues, $wildcard = 0, $useEquals = FALSE, $apiEntity = NULL,
be2fb01f
CW
1592 $entityReferenceFields = []) {
1593 $params = [];
6a488035
TO
1594 if (empty($formValues)) {
1595 return $params;
1596 }
1597
20306bb8 1598 self::filterCountryFromValuesIfStateExists($formValues);
71dfa06c 1599 CRM_Core_BAO_CustomValue::fixCustomFieldValue($formValues);
e34642c9 1600
5840d253 1601 foreach ($formValues as $id => $values) {
df60621b 1602 if (self::isAlreadyProcessedForQueryFormat($values)) {
1603 $params[] = $values;
1604 continue;
1605 }
06d67d53 1606
1607 self::legacyConvertFormValues($id, $values);
1608
46b3417a 1609 // The form uses 1 field to represent two db fields
b832662c 1610 if ($id === 'contact_type' && $values && (!is_array($values) || !array_intersect(array_keys($values), CRM_Core_DAO::acceptedSQLOperators()))) {
be2fb01f
CW
1611 $contactType = [];
1612 $subType = [];
46b3417a 1613 foreach ((array) $values as $key => $type) {
f12a86ad 1614 $types = explode('__', is_numeric($type) ? $key : $type, 2);
46b3417a
CW
1615 $contactType[$types[0]] = $types[0];
1616 // Add sub-type if specified
1617 if (!empty($types[1])) {
1618 $subType[$types[1]] = $types[1];
1619 }
1620 }
be2fb01f 1621 $params[] = ['contact_type', 'IN', $contactType, 0, 0];
46b3417a 1622 if ($subType) {
be2fb01f 1623 $params[] = ['contact_sub_type', 'IN', $subType, 0, 0];
46b3417a
CW
1624 }
1625 }
b832662c 1626 elseif ($id === 'privacy') {
6a488035 1627 if (is_array($formValues['privacy'])) {
0d8afee2 1628 $op = !empty($formValues['privacy']['do_not_toggle']) ? '=' : '!=';
6a488035
TO
1629 foreach ($formValues['privacy'] as $key => $value) {
1630 if ($value) {
be2fb01f 1631 $params[] = [$key, $op, $value, 0, 0];
6a488035
TO
1632 }
1633 }
1634 }
1635 }
9de9a433 1636 elseif ($id === 'email_on_hold') {
38056b36 1637 if ($onHoldValue = CRM_Utils_Array::value('email_on_hold', $formValues)) {
1d94ee08 1638 // onHoldValue should be 0 or 1 or an array. Some legacy groups may hold ''
1639 // so in 5.11 we have an extra if that should become redundant over time.
1640 // https://lab.civicrm.org/dev/core/issues/745
1641 // @todo this renaming of email_on_hold to on_hold needs revisiting
b832662c 1642 // it precedes recent changes but causes the default not to reload.
828c2392 1643 $onHoldValue = array_filter((array) $onHoldValue, 'is_numeric');
1644 if (!empty($onHoldValue)) {
1d94ee08 1645 $params[] = ['on_hold', 'IN', $onHoldValue, 0, 0];
1646 }
6a488035
TO
1647 }
1648 }
9de9a433 1649 elseif (substr($id, 0, 7) === 'custom_'
4c2fe77b 1650 && (
9de9a433 1651 substr($id, -5, 5) === '_from'
1652 || substr($id, -3, 3) === '_to'
4c2fe77b 1653 )
bb05da0c 1654 ) {
4c2fe77b 1655 self::convertCustomRelativeFields($formValues, $params, $values, $id);
bb05da0c 1656 }
df60621b 1657 elseif (in_array($id, $entityReferenceFields) && !empty($values) && is_string($values) && (strpos($values, ',') !=
1658 FALSE)) {
be2fb01f 1659 $params[] = [$id, 'IN', explode(',', $values), 0, 0];
df60621b 1660 }
6a488035 1661 else {
3c151c70 1662 $values = CRM_Contact_BAO_Query::fixWhereValues($id, $values, $wildcard, $useEquals, $apiEntity);
6a488035
TO
1663
1664 if (!$values) {
1665 continue;
1666 }
1667 $params[] = $values;
1668 }
1669 }
1670 return $params;
1671 }
1672
e34642c9 1673 /**
1674 * Function to support legacy format for groups and tags.
1675 *
1676 * @param string $id
1677 * @param array|int $values
1678 *
1679 */
5450bf88 1680 public static function legacyConvertFormValues($id, &$values) {
be2fb01f 1681 $legacyElements = [
06d67d53 1682 'group',
1683 'tag',
1684 'contact_tags',
1685 'contact_type',
1686 'membership_type_id',
1687 'membership_status_id',
be2fb01f 1688 ];
06d67d53 1689 if (in_array($id, $legacyElements) && is_array($values)) {
5450bf88 1690 // prior to 4.7, formValues for some attributes (e.g. group, tag) are stored in array(id1 => 1, id2 => 1),
1691 // as per the recent Search fixes $values need to be in standard array(id1, id2) format
e5ad0335 1692 $values = CRM_Utils_Array::convertCheckboxFormatToArray($values);
5450bf88 1693 }
e34642c9 1694 }
1695
86538308 1696 /**
c037736a 1697 * Fix values from query from/to something no-one cared enough to document.
1698 *
100fef9d 1699 * @param int $id
c037736a 1700 * @param array $values
86538308
EM
1701 * @param int $wildcard
1702 * @param bool $useEquals
1703 *
0e2e76cf
EM
1704 * @param string $apiEntity
1705 *
86538308
EM
1706 * @return array|null
1707 */
c037736a 1708 public static function fixWhereValues($id, &$values, $wildcard = 0, $useEquals = FALSE, $apiEntity = NULL) {
6a488035
TO
1709 // skip a few search variables
1710 static $skipWhere = NULL;
6a488035
TO
1711 static $likeNames = NULL;
1712 $result = NULL;
57f8e7f0 1713
244bbdd8
CW
1714 // Change camelCase EntityName to lowercase with underscores
1715 $apiEntity = _civicrm_api_get_entity_name_from_camel($apiEntity);
6a488035 1716
57f8e7f0 1717 // check if $value is in OK (Operator as Key) format as used by Get API
6a488035
TO
1718 if (CRM_Utils_System::isNull($values)) {
1719 return $result;
1720 }
1721
1722 if (!$skipWhere) {
be2fb01f 1723 $skipWhere = [
5c7dad85
TO
1724 'task',
1725 'radio_ts',
1726 'uf_group_id',
1727 'component_mode',
1728 'qfKey',
1729 'operator',
6a488035 1730 'display_relationship_type',
be2fb01f 1731 ];
6a488035
TO
1732 }
1733
1734 if (in_array($id, $skipWhere) ||
1735 substr($id, 0, 4) == '_qf_' ||
1736 substr($id, 0, 7) == 'hidden_'
1737 ) {
1738 return $result;
1739 }
1740
afa0b07c 1741 if ($apiEntity &&
1742 (substr($id, 0, strlen($apiEntity)) != $apiEntity) &&
1a3e22cc
MM
1743 (substr($id, 0, 10) != 'financial_' && substr($id, 0, 8) != 'payment_') &&
1744 (substr($id, 0, 7) != 'custom_')
afa0b07c 1745 ) {
3c151c70 1746 $id = $apiEntity . '_' . $id;
1747 }
1748
6a488035 1749 if (!$likeNames) {
be2fb01f 1750 $likeNames = ['sort_name', 'email', 'note', 'display_name'];
6a488035
TO
1751 }
1752
1753 // email comes in via advanced search
1754 // so use wildcard always
1755 if ($id == 'email') {
1756 $wildcard = 1;
1757 }
1758
5c7dad85 1759 if (!$useEquals && in_array($id, $likeNames)) {
be2fb01f 1760 $result = [$id, 'LIKE', $values, 0, 1];
6a488035
TO
1761 }
1762 elseif (is_string($values) && strpos($values, '%') !== FALSE) {
be2fb01f 1763 $result = [$id, 'LIKE', $values, 0, 0];
6a488035 1764 }
a0cbe4fa 1765 elseif ($id == 'contact_type' ||
1766 (!empty($values) && is_array($values) && !in_array(key($values), CRM_Core_DAO::acceptedSQLOperators(), TRUE))
1767 ) {
be2fb01f 1768 $result = [$id, 'IN', $values, 0, $wildcard];
c33e01a5 1769 }
6a488035 1770 else {
be2fb01f 1771 $result = [$id, '=', $values, 0, $wildcard];
6a488035
TO
1772 }
1773
1774 return $result;
1775 }
1776
86538308 1777 /**
c037736a 1778 * Get the where clause for a single field.
1779 *
1780 * @param array $values
9178793e 1781 * @param bool $isForcePrimaryOnly
1782 *
1783 * @throws \CRM_Core_Exception
86538308 1784 */
9178793e 1785 public function whereClauseSingle(&$values, $isForcePrimaryOnly = FALSE) {
8fc9f99a 1786 if ($this->isARelativeDateField($values[0])) {
1787 $this->buildRelativeDateQuery($values);
1788 return;
1789 }
33a17d7e 1790 // @todo also handle _low, _high generically here with if ($query->buildDateRangeQuery($values)) {return}
8fc9f99a 1791
6a488035
TO
1792 // do not process custom fields or prefixed contact ids or component params
1793 if (CRM_Core_BAO_CustomField::getKeyID($values[0]) ||
1794 (substr($values[0], 0, CRM_Core_Form::CB_PREFIX_LEN) == CRM_Core_Form::CB_PREFIX) ||
b832662c 1795 (substr($values[0], 0, 13) === 'contribution_') ||
1796 (substr($values[0], 0, 6) === 'event_') ||
1797 (substr($values[0], 0, 12) === 'participant_') ||
1798 (substr($values[0], 0, 7) === 'member_') ||
1799 (substr($values[0], 0, 6) === 'grant_') ||
1800 (substr($values[0], 0, 7) === 'pledge_') ||
1801 (substr($values[0], 0, 5) === 'case_') ||
1802 (substr($values[0], 0, 10) === 'financial_') ||
1803 (substr($values[0], 0, 8) === 'payment_') ||
1804 (substr($values[0], 0, 11) === 'membership_')
58bcc9ae 1805 // temporary fix for regression https://lab.civicrm.org/dev/core/issues/1551
1806 // ideally the metadata would allow this field to be parsed below & the special handling would not
1807 // be needed.
1808 || $values[0] === 'mailing_id'
6a488035
TO
1809 ) {
1810 return;
1811 }
1812
efa3a566
DS
1813 // skip for hook injected fields / params
1814 $extFields = CRM_Contact_BAO_Query_Hook::singleton()->getFields();
1815 if (array_key_exists($values[0], $extFields)) {
1816 return;
1817 }
1818
6a488035
TO
1819 switch ($values[0]) {
1820 case 'deleted_contacts':
1821 $this->deletedContacts($values);
1822 return;
1823
6a488035
TO
1824 case 'contact_sub_type':
1825 $this->contactSubType($values);
1826 return;
1827
1828 case 'group':
6a488035 1829 case 'group_type':
6a488035
TO
1830 $this->group($values);
1831 return;
6a488035 1832
c905b59f 1833 // case tag comes from find contacts
6a488035
TO
1834 case 'tag_search':
1835 $this->tagSearch($values);
1836 return;
1837
1838 case 'tag':
1839 case 'contact_tags':
1840 $this->tag($values);
1841 return;
1842
1843 case 'note':
1844 case 'note_body':
1845 case 'note_subject':
1846 $this->notes($values);
1847 return;
1848
1849 case 'uf_user':
1850 $this->ufUser($values);
1851 return;
1852
1853 case 'sort_name':
1854 case 'display_name':
1855 $this->sortName($values);
6a488035
TO
1856 return;
1857
02adf2f9
BS
1858 case 'addressee':
1859 case 'postal_greeting':
1860 case 'email_greeting':
1861 $this->greetings($values);
1862 return;
1863
6a488035 1864 case 'email':
57f8e7f0 1865 case 'email_id':
9178793e 1866 $this->email($values, $isForcePrimaryOnly);
6a488035
TO
1867 return;
1868
1869 case 'phone_numeric':
1870 $this->phone_numeric($values);
1871 return;
1872
1873 case 'phone_phone_type_id':
1874 case 'phone_location_type_id':
1875 $this->phone_option_group($values);
1876 return;
1877
1878 case 'street_address':
1879 $this->street_address($values);
1880 return;
1881
1882 case 'street_number':
1883 $this->street_number($values);
1884 return;
1885
1886 case 'sortByCharacter':
1887 $this->sortByCharacter($values);
1888 return;
1889
1890 case 'location_type':
1891 $this->locationType($values);
1892 return;
1893
1894 case 'county':
1895 $this->county($values);
1896 return;
1897
1898 case 'state_province':
3493947a 1899 case 'state_province_id':
1900 case 'state_province_name':
6a488035
TO
1901 $this->stateProvince($values);
1902 return;
1903
1904 case 'country':
3493947a 1905 case 'country_id':
6a488035
TO
1906 $this->country($values, FALSE);
1907 return;
1908
1909 case 'postal_code':
1910 case 'postal_code_low':
1911 case 'postal_code_high':
1912 $this->postalCode($values);
1913 return;
1914
1915 case 'activity_date':
1916 case 'activity_date_low':
1917 case 'activity_date_high':
27cedb98 1918 case 'activity_date_time_low':
1919 case 'activity_date_time_high':
6a488035 1920 case 'activity_role':
9ab34172 1921 case 'activity_status_id':
6a488035 1922 case 'activity_status':
da236f9a 1923 case 'activity_priority':
1924 case 'activity_priority_id':
4c24c842
PN
1925 case 'followup_parent_id':
1926 case 'parent_id':
9ab34172 1927 case 'source_contact_id':
92e9c781 1928 case 'activity_text':
c9c5c58d 1929 case 'activity_option':
6a488035
TO
1930 case 'test_activities':
1931 case 'activity_type_id':
3e4a4597 1932 case 'activity_type':
6a488035
TO
1933 case 'activity_survey_id':
1934 case 'activity_tags':
1935 case 'activity_taglist':
1936 case 'activity_test':
6a488035
TO
1937 case 'activity_campaign_id':
1938 case 'activity_engagement_level':
1939 case 'activity_id':
4041c9b6 1940 case 'activity_result':
6a488035
TO
1941 case 'source_contact':
1942 CRM_Activity_BAO_Query::whereClauseSingle($values, $this);
1943 return;
1944
c4a7c967 1945 case 'age_low':
1946 case 'age_high':
6a488035
TO
1947 case 'birth_date_low':
1948 case 'birth_date_high':
1949 case 'deceased_date_low':
1950 case 'deceased_date_high':
1951 $this->demographics($values);
1952 return;
1953
c4a7c967 1954 case 'age_asof_date':
1955 // handled by demographics
1956 return;
1957
6a488035
TO
1958 case 'log_date_low':
1959 case 'log_date_high':
1960 $this->modifiedDates($values);
1961 return;
1962
1963 case 'changed_by':
1964 $this->changeLog($values);
1965 return;
1966
1967 case 'do_not_phone':
1968 case 'do_not_email':
1969 case 'do_not_mail':
1970 case 'do_not_sms':
1971 case 'do_not_trade':
1972 case 'is_opt_out':
1973 $this->privacy($values);
1974 return;
1975
1976 case 'privacy_options':
1977 $this->privacyOptions($values);
1978 return;
1979
1980 case 'privacy_operator':
1981 case 'privacy_toggle':
1982 // these are handled by privacy options
1983 return;
1984
1985 case 'preferred_communication_method':
1986 $this->preferredCommunication($values);
1987 return;
1988
1989 case 'relation_type_id':
41b8dd1d 1990 case 'relationship_start_date_high':
1991 case 'relationship_start_date_low':
1992 case 'relationship_end_date_high':
1993 case 'relationship_end_date_low':
eea5db81 1994 case 'relation_active_period_date_high':
1995 case 'relation_active_period_date_low':
6a488035
TO
1996 case 'relation_target_name':
1997 case 'relation_status':
6e83b317 1998 case 'relation_description':
6a488035
TO
1999 case 'relation_date_low':
2000 case 'relation_date_high':
7c96365b 2001 $this->relationship($values);
2002 $this->_relationshipValuesAdded = TRUE;
6a488035
TO
2003 return;
2004
2005 case 'task_status_id':
2006 $this->task($values);
2007 return;
2008
2009 case 'task_id':
2010 // since this case is handled with the above
2011 return;
2012
2013 case 'prox_distance':
2014 CRM_Contact_BAO_ProximityQuery::process($this, $values);
2015 return;
2016
2017 case 'prox_street_address':
2018 case 'prox_city':
2019 case 'prox_postal_code':
2020 case 'prox_state_province_id':
2021 case 'prox_country_id':
4b2d36d7 2022 case 'prox_geo_code_1':
2023 case 'prox_geo_code_2':
6a488035
TO
2024 // handled by the proximity_distance clause
2025 return;
2026
2027 default:
2028 $this->restWhere($values);
2029 return;
2030 }
2031 }
2032
2033 /**
c037736a 2034 * Given a list of conditions in params generate the required where clause.
6a488035 2035 *
9178793e 2036 * @param bool $isForcePrimaryEmailOnly
57f8e7f0 2037 *
fffe9ee1 2038 * @return string
9178793e 2039 * @throws \CRM_Core_Exception
6a488035 2040 */
9178793e 2041 public function whereClause($isForcePrimaryEmailOnly = NULL) {
be2fb01f
CW
2042 $this->_where[0] = [];
2043 $this->_qill[0] = [];
6a488035 2044
b832662c 2045 $this->includeContactIDs();
6a488035 2046 if (!empty($this->_params)) {
6a488035 2047 foreach (array_keys($this->_params) as $id) {
a7488080 2048 if (empty($this->_params[$id][0])) {
6a488035
TO
2049 continue;
2050 }
2051 // check for both id and contact_id
2052 if ($this->_params[$id][0] == 'id' || $this->_params[$id][0] == 'contact_id') {
f819588f 2053 $this->_where[0][] = self::buildClause("contact_a.id", $this->_params[$id][1], $this->_params[$id][2]);
9c1bc317 2054 $field = $this->_fields['id'] ?? NULL;
9ea799a3
PN
2055 list($qillop, $qillVal) = CRM_Contact_BAO_Query::buildQillForFieldValue(
2056 'CRM_Contact_BAO_Contact',
2057 "contact_a.id",
2058 $this->_params[$id][2],
2059 $this->_params[$id][1]
2060 );
2061 $this->_qill[0][] = ts("%1 %2 %3", [
33974098 2062 1 => $field['title'] ?? '',
9ea799a3 2063 2 => $qillop,
69078420 2064 3 => $qillVal,
9ea799a3 2065 ]);
6a488035
TO
2066 }
2067 else {
9178793e 2068 $this->whereClauseSingle($this->_params[$id], $isForcePrimaryEmailOnly);
6a488035
TO
2069 }
2070 }
2071
2072 CRM_Core_Component::alterQuery($this, 'where');
f2a9b25c 2073
99e9587a 2074 CRM_Contact_BAO_Query_Hook::singleton()->alterSearchQuery($this, 'where');
6a488035
TO
2075 }
2076
2077 if ($this->_customQuery) {
2206409b 2078 $this->_whereTables = array_merge($this->_whereTables, $this->_customQuery->_whereTables);
c037736a 2079 // Added following if condition to avoid the wrong value display for 'my account' / any UF info.
6a488035
TO
2080 // Hope it wont affect the other part of civicrm.. if it does please remove it.
2081 if (!empty($this->_customQuery->_where)) {
2082 $this->_where = CRM_Utils_Array::crmArrayMerge($this->_where, $this->_customQuery->_where);
2083 }
6a488035
TO
2084 $this->_qill = CRM_Utils_Array::crmArrayMerge($this->_qill, $this->_customQuery->_qill);
2085 }
2086
be2fb01f
CW
2087 $clauses = [];
2088 $andClauses = [];
6a488035
TO
2089
2090 $validClauses = 0;
2091 if (!empty($this->_where)) {
2092 foreach ($this->_where as $grouping => $values) {
2093 if ($grouping > 0 && !empty($values)) {
2094 $clauses[$grouping] = ' ( ' . implode(" {$this->_operator} ", $values) . ' ) ';
2095 $validClauses++;
2096 }
2097 }
2098
2099 if (!empty($this->_where[0])) {
2100 $andClauses[] = ' ( ' . implode(" {$this->_operator} ", $this->_where[0]) . ' ) ';
2101 }
2102 if (!empty($clauses)) {
2103 $andClauses[] = ' ( ' . implode(' OR ', $clauses) . ' ) ';
2104 }
2105
2106 if ($validClauses > 1) {
2107 $this->_useDistinct = TRUE;
2108 }
2109 }
2110
2111 return implode(' AND ', $andClauses);
2112 }
2113
86538308 2114 /**
c037736a 2115 * Generate where clause for any parameters not already handled.
2116 *
2117 * @param array $values
86538308
EM
2118 *
2119 * @throws Exception
2120 */
00be9182 2121 public function restWhere(&$values) {
9c1bc317
CW
2122 $name = $values[0] ?? NULL;
2123 $op = $values[1] ?? NULL;
2124 $value = $values[2] ?? NULL;
2125 $grouping = $values[3] ?? NULL;
2126 $wildcard = $values[4] ?? NULL;
6a488035 2127
8cc574cf 2128 if (isset($grouping) && empty($this->_where[$grouping])) {
be2fb01f 2129 $this->_where[$grouping] = [];
6a488035
TO
2130 }
2131
be2fb01f 2132 $multipleFields = ['url'];
6a488035 2133
3493947a 2134 //check if the location type exists for fields
6a488035
TO
2135 $lType = '';
2136 $locType = explode('-', $name);
2137
2138 if (!in_array($locType[0], $multipleFields)) {
2139 //add phone type if exists
2140 if (isset($locType[2]) && $locType[2]) {
2141 $locType[2] = CRM_Core_DAO::escapeString($locType[2]);
2142 }
2143 }
2144
9c1bc317 2145 $field = $this->_fields[$name] ?? NULL;
6a488035
TO
2146
2147 if (!$field) {
9c1bc317 2148 $field = $this->_fields[$locType[0]] ?? NULL;
6a488035
TO
2149
2150 if (!$field) {
5b5ea9b6 2151 // Strip any trailing _high & _low that might be appended.
2152 $realFieldName = str_replace(['_high', '_low'], '', $name);
2153 if (isset($this->_fields[$realFieldName])) {
2154 $field = $this->_fields[str_replace(['_high', '_low'], '', $realFieldName)];
2206409b 2155 $columnName = $field['column_name'] ?? $field['name'];
2156 $this->dateQueryBuilder($values, $field['table_name'], $realFieldName, $columnName, $field['title']);
5b5ea9b6 2157 }
6a488035
TO
2158 return;
2159 }
2160 }
2161
2162 $setTables = TRUE;
2163
db1a73f5 2164 $locationType = CRM_Core_DAO_Address::buildOptions('location_type_id', 'validate');
fdfca3e9
VG
2165 if (isset($locType[1]) && is_numeric($locType[1])) {
2166 $lType = $locationType[$locType[1]];
2167 }
2168 if ($lType) {
2169 $field['title'] .= " ($lType)";
2170 }
6a488035
TO
2171
2172 if (substr($name, 0, 14) === 'state_province') {
2173 if (isset($locType[1]) && is_numeric($locType[1])) {
2e155dbd 2174 $setTables = FALSE;
fdfca3e9 2175 $aName = "{$lType}-address";
d9ab802d 2176 $where = "`$aName`.state_province_id";
6a488035
TO
2177 }
2178 else {
d9ab802d 2179 $where = "civicrm_address.state_province_id";
6a488035
TO
2180 }
2181
8ab09481 2182 $this->_where[$grouping][] = self::buildClause($where, $op, $value);
8f0fd14c 2183 $this->_tables[$aName] = $this->_whereTables[$aName] = 1;
7cc09daf 2184 list($qillop, $qillVal) = self::buildQillForFieldValue('CRM_Core_DAO_Address', "state_province_id", $value, $op);
be2fb01f 2185 $this->_qill[$grouping][] = ts("%1 %2 %3", [1 => $field['title'], 2 => $qillop, 3 => $qillVal]);
6a488035 2186 }
1c1a84a2 2187 elseif (!empty($field['pseudoconstant'])) {
9724097e 2188 // For the hacked fields we want to undo the hack to type to avoid missing the index by adding quotes.
2189 $dataType = !empty($this->legacyHackedFields[$name]) ? CRM_Utils_Type::T_INT : $field['type'];
1071730c
DL
2190 $this->optionValueQuery(
2191 $name, $op, $value, $grouping,
9b183452 2192 'CRM_Contact_DAO_Contact',
1071730c 2193 $field,
9ac33d0f 2194 $field['html']['label'] ?? $field['title'],
bf0f0d19 2195 CRM_Utils_Type::typeToString($dataType)
1071730c 2196 );
9724097e 2197 if ($name === 'gender_id') {
1071730c
DL
2198 self::$_openedPanes[ts('Demographics')] = TRUE;
2199 }
2200 }
9b183452 2201 elseif (substr($name, 0, 7) === 'country' || substr($name, 0, 6) === 'county') {
2202 $name = (substr($name, 0, 7) === 'country') ? "country_id" : "county_id";
6a488035 2203 if (isset($locType[1]) && is_numeric($locType[1])) {
2e155dbd 2204 $setTables = FALSE;
fdfca3e9 2205 $aName = "{$lType}-address";
9b183452 2206 $where = "`$aName`.$name";
6a488035
TO
2207 }
2208 else {
9b183452 2209 $where = "civicrm_address.$name";
6a488035 2210 }
d9ab802d 2211
9b183452 2212 $this->_where[$grouping][] = self::buildClause($where, $op, $value, 'Positive');
8f0fd14c 2213 $this->_tables[$aName] = $this->_whereTables[$aName] = 1;
6a488035 2214
9d9cfb9f 2215 list($qillop, $qillVal) = CRM_Contact_BAO_Query::buildQillForFieldValue(NULL, $name, $value, $op);
be2fb01f 2216 $this->_qill[$grouping][] = ts("%1 %2 %3", [1 => $field['title'], 2 => $qillop, 3 => $qillVal]);
6a488035
TO
2217 }
2218 elseif ($name === 'world_region') {
2219 $this->optionValueQuery(
2220 $name, $op, $value, $grouping,
728eefa0 2221 NULL,
6a488035 2222 $field,
8b695e91 2223 ts('World Region'),
bf0f0d19 2224 'Positive'
6a488035
TO
2225 );
2226 }
6a488035 2227 elseif ($name === 'is_deceased') {
962f4484 2228 $this->setQillAndWhere($name, $op, $value, $grouping, $field);
6a488035
TO
2229 self::$_openedPanes[ts('Demographics')] = TRUE;
2230 }
d820f4e8 2231 elseif ($name === 'created_date' || $name === 'modified_date' || $name === 'deceased_date' || $name === 'birth_date') {
ee657a1c 2232 $appendDateTime = TRUE;
d820f4e8 2233 if ($name === 'deceased_date' || $name === 'birth_date') {
ee657a1c 2234 $appendDateTime = FALSE;
d820f4e8 2235 self::$_openedPanes[ts('Demographics')] = TRUE;
2236 }
0b83b6c2 2237 $this->dateQueryBuilder($values, 'contact_a', $name, $name, $field['title'], $appendDateTime);
d820f4e8 2238 }
6a488035
TO
2239 elseif ($name === 'contact_id') {
2240 if (is_int($value)) {
2241 $this->_where[$grouping][] = self::buildClause($field['where'], $op, $value);
2242 $this->_qill[$grouping][] = "$field[title] $op $value";
2243 }
2244 }
2245 elseif ($name === 'name') {
2bde57c6 2246 $value = CRM_Core_DAO::escapeString($value);
6a488035 2247 if ($wildcard) {
6a488035 2248 $op = 'LIKE';
0b38e8f1 2249 $value = self::getWildCardedValue($wildcard, $op, $value);
6a488035 2250 }
2bde57c6 2251 CRM_Core_Error::deprecatedFunctionWarning('Untested code path');
2252 // @todo it's likely this code path is obsolete / never called. It is definitely not
2253 // passed through in our test suite.
2254 $this->_where[$grouping][] = self::buildClause($field['where'], $op, "'$value'");
6a488035
TO
2255 $this->_qill[$grouping][] = "$field[title] $op \"$value\"";
2256 }
2257 elseif ($name === 'current_employer') {
6a488035 2258 if ($wildcard) {
6a488035 2259 $op = 'LIKE';
0b38e8f1 2260 $value = self::getWildCardedValue($wildcard, $op, $value);
6a488035 2261 }
30415e03 2262 $ceWhereClause = self::buildClause("contact_a.organization_name", $op,
0d77b56a 2263 $value
6a488035 2264 );
0d77b56a
PJ
2265 $ceWhereClause .= " AND contact_a.contact_type = 'Individual'";
2266 $this->_where[$grouping][] = $ceWhereClause;
6a488035
TO
2267 $this->_qill[$grouping][] = "$field[title] $op \"$value\"";
2268 }
6a488035
TO
2269 elseif (substr($name, 0, 4) === 'url-') {
2270 $tName = 'civicrm_website';
2271 $this->_whereTables[$tName] = $this->_tables[$tName] = "\nLEFT JOIN civicrm_website ON ( civicrm_website.contact_id = contact_a.id )";
2fc64082 2272 $value = CRM_Core_DAO::escapeString($value);
6a488035 2273 if ($wildcard) {
6a488035 2274 $op = 'LIKE';
0b38e8f1 2275 $value = self::getWildCardedValue($wildcard, $op, $value);
6a488035
TO
2276 }
2277
962f4484 2278 $this->_where[$grouping][] = $d = self::buildClause('civicrm_website.url', $op, $value);
6a488035
TO
2279 $this->_qill[$grouping][] = "$field[title] $op \"$value\"";
2280 }
2281 elseif ($name === 'contact_is_deleted') {
962f4484 2282 $this->setQillAndWhere('is_deleted', $op, $value, $grouping, $field);
6a488035 2283 }
efb88612 2284 elseif (!empty($field['where'])) {
2285 $type = NULL;
2286 if (!empty($field['type'])) {
2287 $type = CRM_Utils_Type::typeToString($field['type']);
2288 }
2289
2290 list($tableName, $fieldName) = explode('.', $field['where'], 2);
2291
2292 if (isset($locType[1]) &&
2293 is_numeric($locType[1])
2294 ) {
2295 $setTables = FALSE;
2296
2297 //get the location name
2298 list($tName, $fldName) = self::getLocationTableName($field['where'], $locType);
54e02ce8 2299 $fieldName = "`$tName`.$fldName";
efb88612 2300
2301 // we set both _tables & whereTables because whereTables doesn't seem to do what the name implies it should
2302 $this->_tables[$tName] = $this->_whereTables[$tName] = 1;
2303
2304 }
2305 else {
2306 if ($tableName == 'civicrm_contact') {
1809f3cf 2307 $fieldName = "contact_a.{$fieldName}";
efb88612 2308 }
2309 else {
7fde0061 2310 $fieldName = $field['where'];
efb88612 2311 }
2312 }
2313
2314 list($qillop, $qillVal) = self::buildQillForFieldValue(NULL, $field['title'], $value, $op);
be2fb01f 2315 $this->_qill[$grouping][] = ts("%1 %2 %3", [
9b183452 2316 1 => $field['title'],
2317 2 => $qillop,
69078420
SL
2318 3 => (strpos($op, 'NULL') !== FALSE || strpos($op, 'EMPTY') !== FALSE) ? $qillVal : "'$qillVal'",
2319 ]);
efb88612 2320
6a488035 2321 if (is_array($value)) {
a75c13cc
EM
2322 // traditionally an array being passed has been a fatal error. We can take advantage of this to add support
2323 // for api style operators for functions that hit this point without worrying about regression
2324 // (the previous comments indicated the condition for hitting this point were unknown
2325 // per CRM-14743 we are adding modified_date & created_date operator support
2326 $operations = array_keys($value);
2327 foreach ($operations as $operator) {
11a5aa5d 2328 if (!in_array($operator, CRM_Core_DAO::acceptedSQLOperators())) {
efb88612 2329 //Via Contact get api value is not in array(operator => array(values)) format ONLY for IN/NOT IN operators
2330 //so this condition will satisfy the search for now
0a74debb 2331 if (strpos($op, 'IN') !== FALSE) {
be2fb01f 2332 $value = [$op => $value];
efb88612 2333 }
a75c13cc 2334 // we don't know when this might happen
efb88612 2335 else {
79e11805 2336 throw new CRM_Core_Exception(ts("%1 is not a valid operator", [1 => $operator]));
efb88612 2337 }
a75c13cc
EM
2338 }
2339 }
efb88612 2340 $this->_where[$grouping][] = CRM_Core_DAO::createSQLFilter($fieldName, $value, $type);
6a488035 2341 }
efb88612 2342 else {
6a488035 2343 if ($wildcard) {
6a488035 2344 $op = 'LIKE';
0b38e8f1 2345 $value = self::getWildCardedValue($wildcard, $op, $value);
6a488035
TO
2346 }
2347
efb88612 2348 $this->_where[$grouping][] = self::buildClause($fieldName, $op, $value, $type);
6a488035
TO
2349 }
2350 }
2351
2352 if ($setTables && isset($field['where'])) {
2353 list($tableName, $fieldName) = explode('.', $field['where'], 2);
2354 if (isset($tableName)) {
2355 $this->_tables[$tableName] = 1;
2356 $this->_whereTables[$tableName] = 1;
2357 }
2358 }
2359 }
2360
86538308
EM
2361 /**
2362 * @param $where
2363 * @param $locType
2364 *
2365 * @return array
2366 * @throws Exception
2367 */
00be9182 2368 public static function getLocationTableName(&$where, &$locType) {
6a488035
TO
2369 if (isset($locType[1]) && is_numeric($locType[1])) {
2370 list($tbName, $fldName) = explode(".", $where);
2371
2372 //get the location name
f9ba4d01 2373 $locationType = CRM_Core_DAO_Address::buildOptions('location_type_id', 'validate');
be2fb01f 2374 $specialFields = ['email', 'im', 'phone', 'openid', 'phone_ext'];
6a488035
TO
2375 if (in_array($locType[0], $specialFields)) {
2376 //hack to fix / special handing for phone_ext
2377 if ($locType[0] == 'phone_ext') {
2378 $locType[0] = 'phone';
2379 }
2380 if (isset($locType[2]) && $locType[2]) {
2381 $tName = "{$locationType[$locType[1]]}-{$locType[0]}-{$locType[2]}";
2382 }
2383 else {
2384 $tName = "{$locationType[$locType[1]]}-{$locType[0]}";
2385 }
2386 }
2387 elseif (in_array($locType[0],
be2fb01f 2388 [
5c7dad85
TO
2389 'address_name',
2390 'street_address',
7cc09daf 2391 'street_name',
2392 'street_number_suffix',
2393 'street_unit',
5c7dad85
TO
2394 'supplemental_address_1',
2395 'supplemental_address_2',
207f62c6 2396 'supplemental_address_3',
5c7dad85
TO
2397 'city',
2398 'postal_code',
2399 'postal_code_suffix',
2400 'geo_code_1',
2401 'geo_code_2',
7cc09daf 2402 'master_id',
be2fb01f 2403 ]
5c7dad85 2404 )) {
6a488035 2405 //fix for search by profile with address fields.
a822d3d8 2406 $tName = "{$locationType[$locType[1]]}-address";
6a488035 2407 }
7cc09daf 2408 elseif (in_array($locType[0],
be2fb01f 2409 [
7cc09daf 2410 'on_hold',
2411 'signature_html',
2412 'signature_text',
2413 'is_bulkmail',
be2fb01f 2414 ]
7cc09daf 2415 )) {
6a488035
TO
2416 $tName = "{$locationType[$locType[1]]}-email";
2417 }
7cc09daf 2418 elseif ($locType[0] == 'provider_id') {
2419 $tName = "{$locationType[$locType[1]]}-im";
2420 }
2421 elseif ($locType[0] == 'openid') {
2422 $tName = "{$locationType[$locType[1]]}-openid";
2423 }
6a488035
TO
2424 else {
2425 $tName = "{$locationType[$locType[1]]}-{$locType[0]}";
2426 }
2427 $tName = str_replace(' ', '_', $tName);
be2fb01f 2428 return [$tName, $fldName];
6a488035 2429 }
79e11805 2430 throw new CRM_Core_Exception('Cannot determine location table information');
6a488035
TO
2431 }
2432
2433 /**
2434 * Given a result dao, extract the values and return that array
2435 *
c490a46a 2436 * @param CRM_Core_DAO $dao
6a488035 2437 *
a6c01b45
CW
2438 * @return array
2439 * values for this query
6a488035 2440 */
00be9182 2441 public function store($dao) {
be2fb01f 2442 $value = [];
6a488035
TO
2443
2444 foreach ($this->_element as $key => $dontCare) {
2445 if (property_exists($dao, $key)) {
2446 if (strpos($key, '-') !== FALSE) {
2447 $values = explode('-', $key);
2448 $lastElement = array_pop($values);
2449 $current = &$value;
2450 $cnt = count($values);
2451 $count = 1;
2452 foreach ($values as $v) {
2453 if (!array_key_exists($v, $current)) {
be2fb01f 2454 $current[$v] = [];
6a488035
TO
2455 }
2456 //bad hack for im_provider
2457 if ($lastElement == 'provider_id') {
2458 if ($count < $cnt) {
2459 $current = &$current[$v];
2460 }
2461 else {
2462 $lastElement = "{$v}_{$lastElement}";
2463 }
2464 }
2465 else {
2466 $current = &$current[$v];
2467 }
2468 $count++;
2469 }
2470
2471 $current[$lastElement] = $dao->$key;
2472 }
2473 else {
2474 $value[$key] = $dao->$key;
2475 }
2476 }
2477 }
2478 return $value;
2479 }
2480
2481 /**
fe482240 2482 * Getter for tables array.
6a488035
TO
2483 *
2484 * @return array
6a488035 2485 */
00be9182 2486 public function tables() {
6a488035
TO
2487 return $this->_tables;
2488 }
2489
86538308 2490 /**
746aa919
CB
2491 * Sometimes used to create the from clause, but, not reliably, set
2492 * this AND set tables.
2493 *
2494 * It's unclear the intent - there is a 'simpleFrom' clause which
2495 * takes whereTables into account & a fromClause which doesn't.
2496 *
2497 * logic may have eroded?
2498 *
86538308
EM
2499 * @return array
2500 */
00be9182 2501 public function whereTables() {
6a488035
TO
2502 return $this->_whereTables;
2503 }
2504
2505 /**
100fef9d 2506 * Generate the where clause (used in match contacts and permissions)
6a488035
TO
2507 *
2508 * @param array $params
2509 * @param array $fields
2510 * @param array $tables
77b97be7 2511 * @param $whereTables
77c5b619 2512 * @param bool $strict
6a488035
TO
2513 *
2514 * @return string
b832662c 2515 * @throws \CRM_Core_Exception
6a488035 2516 */
00be9182 2517 public static function getWhereClause($params, $fields, &$tables, &$whereTables, $strict = FALSE) {
6a488035
TO
2518 $query = new CRM_Contact_BAO_Query($params, NULL, $fields,
2519 FALSE, $strict
2520 );
2521
2522 $tables = array_merge($query->tables(), $tables);
2523 $whereTables = array_merge($query->whereTables(), $whereTables);
2524
2525 return $query->_whereClause;
2526 }
2527
2528 /**
fe482240 2529 * Create the from clause.
6a488035 2530 *
77c5b619 2531 * @param array $tables
84193f76
CB
2532 * Tables that need to be included in this from clause. If null,
2533 * return mimimal from clause (i.e. civicrm_contact).
77c5b619
TO
2534 * @param array $inner
2535 * Tables that should be inner-joined.
2536 * @param array $right
2537 * Tables that should be right-joined.
77b97be7 2538 * @param bool $primaryLocation
84193f76 2539 * Search on primary location. See note below.
77b97be7 2540 * @param int $mode
84193f76 2541 * Determines search mode based on bitwise MODE_* constants.
b3e1c09d 2542 * @param string|NULL $apiEntity
84193f76
CB
2543 * Determines search mode based on entity by string.
2544 *
2545 * The $primaryLocation flag only seems to be used when
2546 * locationType() has been called. This may be a search option
2547 * exposed, or perhaps it's a "search all details" approach which
2548 * predates decoupling of location types and primary fields?
6a488035 2549 *
6c58f897
CB
2550 * @see https://issues.civicrm.org/jira/browse/CRM-19967
2551 *
a6c01b45
CW
2552 * @return string
2553 * the from clause
6a488035 2554 */
b3e1c09d 2555 public static function fromClause(&$tables, $inner = NULL, $right = NULL, $primaryLocation = TRUE, $mode = 1, $apiEntity = NULL) {
6a488035
TO
2556
2557 $from = ' FROM civicrm_contact contact_a';
2558 if (empty($tables)) {
2559 return $from;
2560 }
2561
a7488080 2562 if (!empty($tables['civicrm_worldregion'])) {
be2fb01f 2563 $tables = array_merge(['civicrm_country' => 1], $tables);
6a488035
TO
2564 }
2565
8cc574cf 2566 if ((!empty($tables['civicrm_state_province']) || !empty($tables['civicrm_country']) ||
b99f3e96 2567 !empty($tables['civicrm_county'])) && empty($tables['civicrm_address'])) {
be2fb01f 2568 $tables = array_merge(['civicrm_address' => 1],
6a488035
TO
2569 $tables
2570 );
2571 }
2572
6a488035 2573 // add group_contact and group table is subscription history is present
8cc574cf 2574 if (!empty($tables['civicrm_subscription_history']) && empty($tables['civicrm_group'])) {
be2fb01f 2575 $tables = array_merge([
69078420
SL
2576 'civicrm_group' => 1,
2577 'civicrm_group_contact' => 1,
2578 ],
6a488035
TO
2579 $tables
2580 );
2581 }
2582
2583 // to handle table dependencies of components
2584 CRM_Core_Component::tableNames($tables);
efa3a566
DS
2585 // to handle table dependencies of hook injected tables
2586 CRM_Contact_BAO_Query_Hook::singleton()->setTableDependency($tables);
6a488035
TO
2587
2588 //format the table list according to the weight
2589 $info = CRM_Core_TableHierarchy::info();
2590
2591 foreach ($tables as $key => $value) {
2592 $k = 99;
2593 if (strpos($key, '-') !== FALSE) {
2594 $keyArray = explode('-', $key);
2595 $k = CRM_Utils_Array::value('civicrm_' . $keyArray[1], $info, 99);
2596 }
2597 elseif (strpos($key, '_') !== FALSE) {
2598 $keyArray = explode('_', $key);
2599 if (is_numeric(array_pop($keyArray))) {
2600 $k = CRM_Utils_Array::value(implode('_', $keyArray), $info, 99);
2601 }
2602 else {
2603 $k = CRM_Utils_Array::value($key, $info, 99);
2604 }
2605 }
2606 else {
2607 $k = CRM_Utils_Array::value($key, $info, 99);
2608 }
2609 $tempTable[$k . ".$key"] = $key;
2610 }
2611 ksort($tempTable);
be2fb01f 2612 $newTables = [];
6a488035
TO
2613 foreach ($tempTable as $key) {
2614 $newTables[$key] = $tables[$key];
2615 }
2616
2617 $tables = $newTables;
2618
2619 foreach ($tables as $name => $value) {
2620 if (!$value) {
2621 continue;
2622 }
2623
a7488080 2624 if (!empty($inner[$name])) {
6a488035
TO
2625 $side = 'INNER';
2626 }
a7488080 2627 elseif (!empty($right[$name])) {
6a488035
TO
2628 $side = 'RIGHT';
2629 }
2630 else {
2631 $side = 'LEFT';
2632 }
2633
2634 if ($value != 1) {
2635 // if there is already a join statement in value, use value itself
2636 if (strpos($value, 'JOIN')) {
2637 $from .= " $value ";
2638 }
2639 else {
2640 $from .= " $side JOIN $name ON ( $value ) ";
2641 }
2642 continue;
2643 }
0606198b 2644
ccd8e56f 2645 $from .= ' ' . trim(self::getEntitySpecificJoins($name, $mode, $side, $primaryLocation)) . ' ';
af023bf8
EE
2646 }
2647 return $from;
2648 }
6a488035 2649
af023bf8
EE
2650 /**
2651 * Get join statements for the from clause depending on entity type
2652 *
2653 * @param string $name
2654 * @param int $mode
2655 * @param string $side
2656 * @param string $primaryLocation
2657 * @return string
2658 */
2659 protected static function getEntitySpecificJoins($name, $mode, $side, $primaryLocation) {
2660 $limitToPrimaryClause = $primaryLocation ? "AND {$name}.is_primary = 1" : '';
2661 switch ($name) {
2662 case 'civicrm_address':
2663 //CRM-14263 further handling of address joins further down...
2664 return " $side JOIN civicrm_address ON ( contact_a.id = civicrm_address.contact_id {$limitToPrimaryClause} )";
6a488035 2665
7f594311 2666 case 'civicrm_state_province':
2667 // This is encountered when doing an export after having applied a 'sort' - it pretty much implies primary
2668 // but that will have been implied-in by the calling function.
2669 // test cover in testContactIDQuery
2670 return " $side JOIN civicrm_state_province ON ( civicrm_address.state_province_id = civicrm_state_province.id )";
2671
2672 case 'civicrm_country':
2673 // This is encountered when doing an export after having applied a 'sort' - it pretty much implies primary
2674 // but that will have been implied-in by the calling function.
2675 // test cover in testContactIDQuery
2676 return " $side JOIN civicrm_country ON ( civicrm_address.country_id = civicrm_country.id )";
2677
af023bf8
EE
2678 case 'civicrm_phone':
2679 return " $side JOIN civicrm_phone ON (contact_a.id = civicrm_phone.contact_id {$limitToPrimaryClause}) ";
6a488035 2680
af023bf8
EE
2681 case 'civicrm_email':
2682 return " $side JOIN civicrm_email ON (contact_a.id = civicrm_email.contact_id {$limitToPrimaryClause})";
6a488035 2683
af023bf8
EE
2684 case 'civicrm_im':
2685 return " $side JOIN civicrm_im ON (contact_a.id = civicrm_im.contact_id {$limitToPrimaryClause}) ";
6a488035 2686
af023bf8
EE
2687 case 'im_provider':
2688 $from = " $side JOIN civicrm_im ON (contact_a.id = civicrm_im.contact_id) ";
2689 $from .= " $side JOIN civicrm_option_group option_group_imProvider ON option_group_imProvider.name = 'instant_messenger_service'";
2690 $from .= " $side JOIN civicrm_option_value im_provider ON (civicrm_im.provider_id = im_provider.value AND option_group_imProvider.id = im_provider.option_group_id)";
2691 return $from;
6a488035 2692
af023bf8
EE
2693 case 'civicrm_openid':
2694 return " $side JOIN civicrm_openid ON ( civicrm_openid.contact_id = contact_a.id {$limitToPrimaryClause} )";
6a488035 2695
af023bf8 2696 case 'civicrm_worldregion':
7f594311 2697 // We can be sure from the calling function that country will already be joined in.
2698 // we really don't need world_region - we could use a pseudoconstant for it.
c156762a 2699 return " $side JOIN civicrm_worldregion ON civicrm_country.region_id = civicrm_worldregion.id ";
0cd50623 2700
af023bf8
EE
2701 case 'civicrm_location_type':
2702 return " $side JOIN civicrm_location_type ON civicrm_address.location_type_id = civicrm_location_type.id ";
6a488035 2703
af023bf8
EE
2704 case 'civicrm_group':
2705 return " $side JOIN civicrm_group ON civicrm_group.id = civicrm_group_contact.group_id ";
6a488035 2706
af023bf8
EE
2707 case 'civicrm_group_contact':
2708 return " $side JOIN civicrm_group_contact ON contact_a.id = civicrm_group_contact.contact_id ";
6a488035 2709
af023bf8
EE
2710 case 'civicrm_group_contact_cache':
2711 return " $side JOIN civicrm_group_contact_cache ON contact_a.id = civicrm_group_contact_cache.contact_id ";
6a488035 2712
af023bf8
EE
2713 case 'civicrm_activity':
2714 case 'civicrm_activity_tag':
2715 case 'activity_type':
2716 case 'activity_status':
2717 case 'parent_id':
2718 case 'civicrm_activity_contact':
2719 case 'source_contact':
2720 case 'activity_priority':
2721 return CRM_Activity_BAO_Query::from($name, $mode, $side);
2722
2723 case 'civicrm_entity_tag':
2724 $from = " $side JOIN civicrm_entity_tag ON ( civicrm_entity_tag.entity_table = 'civicrm_contact'";
2725 return "$from AND civicrm_entity_tag.entity_id = contact_a.id ) ";
2726
2727 case 'civicrm_note':
2728 $from = " $side JOIN civicrm_note ON ( civicrm_note.entity_table = 'civicrm_contact'";
2729 return "$from AND contact_a.id = civicrm_note.entity_id ) ";
2730
2731 case 'civicrm_subscription_history':
2732 $from = " $side JOIN civicrm_subscription_history";
2733 $from .= " ON civicrm_group_contact.contact_id = civicrm_subscription_history.contact_id";
2734 return "$from AND civicrm_group_contact.group_id = civicrm_subscription_history.group_id";
2735
2736 case 'civicrm_relationship':
2737 if (self::$_relType == 'reciprocal') {
2738 if (self::$_relationshipTempTable) {
2739 // we have a temptable to join on
2740 $tbl = self::$_relationshipTempTable;
2741 return " INNER JOIN {$tbl} civicrm_relationship ON civicrm_relationship.contact_id = contact_a.id";
6a488035
TO
2742 }
2743 else {
af023bf8
EE
2744 $from = " $side JOIN civicrm_relationship ON (civicrm_relationship.contact_id_b = contact_a.id OR civicrm_relationship.contact_id_a = contact_a.id)";
2745 $from .= " $side JOIN civicrm_contact contact_b ON (civicrm_relationship.contact_id_a = contact_b.id OR civicrm_relationship.contact_id_b = contact_b.id)";
2746 return $from;
6a488035 2747 }
af023bf8
EE
2748 }
2749 elseif (self::$_relType == 'b') {
2750 $from = " $side JOIN civicrm_relationship ON (civicrm_relationship.contact_id_b = contact_a.id )";
2751 return "$from $side JOIN civicrm_contact contact_b ON (civicrm_relationship.contact_id_a = contact_b.id )";
2752 }
2753 else {
2754 $from = " $side JOIN civicrm_relationship ON (civicrm_relationship.contact_id_a = contact_a.id )";
2755 return "$from $side JOIN civicrm_contact contact_b ON (civicrm_relationship.contact_id_b = contact_b.id )";
2756 }
6a488035 2757
af023bf8
EE
2758 case 'civicrm_log':
2759 $from = " INNER JOIN civicrm_log ON (civicrm_log.entity_id = contact_a.id AND civicrm_log.entity_table = 'civicrm_contact')";
2760 return "$from INNER JOIN civicrm_contact contact_b_log ON (civicrm_log.modified_id = contact_b_log.id)";
6a488035 2761
af023bf8
EE
2762 case 'civicrm_tag':
2763 return " $side JOIN civicrm_tag ON civicrm_entity_tag.tag_id = civicrm_tag.id ";
6a488035 2764
af023bf8
EE
2765 case 'civicrm_grant':
2766 return CRM_Grant_BAO_Query::from($name, $mode, $side);
6a488035 2767
af023bf8
EE
2768 case 'civicrm_website':
2769 return " $side JOIN civicrm_website ON contact_a.id = civicrm_website.contact_id ";
7851dc81 2770
af023bf8
EE
2771 case 'civicrm_campaign':
2772 //Move to default case if not in either mode.
2773 if ($mode & CRM_Contact_BAO_Query::MODE_CONTRIBUTE) {
2774 return CRM_Contribute_BAO_Query::from($name, $mode, $side);
2775 }
2776 elseif ($mode & CRM_Contact_BAO_Query::MODE_MAILING) {
2777 return CRM_Mailing_BAO_Query::from($name, $mode, $side);
2778 }
2779 elseif ($mode & CRM_Contact_BAO_Query::MODE_CAMPAIGN) {
2780 return CRM_Campaign_BAO_Query::from($name, $mode, $side);
2781 }
6a488035 2782
af023bf8
EE
2783 default:
2784 $locationTypeName = '';
2785 if (strpos($name, '-address') != 0) {
2786 $locationTypeName = 'address';
2787 }
2788 elseif (strpos($name, '-phone') != 0) {
2789 $locationTypeName = 'phone';
2790 }
2791 elseif (strpos($name, '-email') != 0) {
2792 $locationTypeName = 'email';
2793 }
2794 elseif (strpos($name, '-im') != 0) {
2795 $locationTypeName = 'im';
2796 }
2797 elseif (strpos($name, '-openid') != 0) {
2798 $locationTypeName = 'openid';
2799 }
7cc09daf 2800
af023bf8
EE
2801 if ($locationTypeName) {
2802 //we have a join on an location table - possibly in conjunction with search builder - CRM-14263
2803 $parts = explode('-', $name);
2804 $locationTypes = CRM_Core_DAO_Address::buildOptions('location_type_id', 'validate');
2805 foreach ($locationTypes as $locationTypeID => $locationType) {
2806 if ($parts[0] == str_replace(' ', '_', $locationType)) {
2807 $locationID = $locationTypeID;
140e25ee 2808 }
e5fccefb 2809 }
af023bf8
EE
2810 $from = " $side JOIN civicrm_{$locationTypeName} `{$name}` ON ( contact_a.id = `{$name}`.contact_id ) and `{$name}`.location_type_id = $locationID ";
2811 }
2812 else {
2813 $from = CRM_Core_Component::from($name, $mode, $side);
2814 }
2815 $from .= CRM_Contact_BAO_Query_Hook::singleton()->buildSearchfrom($name, $mode, $side);
99e9587a 2816
af023bf8 2817 return $from;
6a488035 2818 }
6a488035
TO
2819 }
2820
2821 /**
2822 * WHERE / QILL clause for deleted_contacts
2823 *
c037736a 2824 * @param array $values
6a488035 2825 */
00be9182 2826 public function deletedContacts($values) {
6a488035
TO
2827 list($_, $_, $value, $grouping, $_) = $values;
2828 if ($value) {
2829 // *prepend* to the relevant grouping as this is quite an important factor
2830 array_unshift($this->_qill[$grouping], ts('Search in Trash'));
2831 }
2832 }
2833
2834 /**
100fef9d 2835 * Where / qill clause for contact_type
6a488035 2836 *
77b97be7 2837 * @param $values
b832662c 2838 *
2839 * @throws \CRM_Core_Exception
6a488035 2840 */
00be9182 2841 public function contactType(&$values) {
6a488035
TO
2842 list($name, $op, $value, $grouping, $wildcard) = $values;
2843
be2fb01f
CW
2844 $subTypes = [];
2845 $clause = [];
6a488035
TO
2846
2847 // account for search builder mapping multiple values
2848 if (!is_array($value)) {
2849 $values = self::parseSearchBuilderString($value, 'String');
2850 if (is_array($values)) {
2851 $value = array_flip($values);
2852 }
2853 }
2854
2855 if (is_array($value)) {
2856 foreach ($value as $k => $v) {
2857 // fix for CRM-771
2858 if ($k) {
2859 $subType = NULL;
2860 $contactType = $k;
2861 if (strpos($k, CRM_Core_DAO::VALUE_SEPARATOR)) {
2862 list($contactType, $subType) = explode(CRM_Core_DAO::VALUE_SEPARATOR, $k, 2);
2863 }
2864
2865 if (!empty($subType)) {
2866 $subTypes[$subType] = 1;
2867 }
2868 $clause[$contactType] = "'" . CRM_Utils_Type::escape($contactType, 'String') . "'";
2869 }
2870 }
2871 }
2872 else {
2873 $contactTypeANDSubType = explode(CRM_Core_DAO::VALUE_SEPARATOR, $value, 2);
2874 $contactType = $contactTypeANDSubType[0];
9c1bc317 2875 $subType = $contactTypeANDSubType[1] ?? NULL;
6a488035
TO
2876 if (!empty($subType)) {
2877 $subTypes[$subType] = 1;
2878 }
2879 $clause[$contactType] = "'" . CRM_Utils_Type::escape($contactType, 'String') . "'";
2880 }
2881
2882 // fix for CRM-771
2883 if (!empty($clause)) {
c33e01a5 2884 $quill = $clause;
3b3bc827
CW
2885 if ($op == 'IN' || $op == 'NOT IN') {
2886 $this->_where[$grouping][] = "contact_a.contact_type $op (" . implode(',', $clause) . ')';
2887 }
2888 else {
2889 $type = array_pop($clause);
dbc6f6d6 2890 $this->_where[$grouping][] = self::buildClause("contact_a.contact_type", $op, $contactType);
3b3bc827 2891 }
d4b81b9a 2892
aa3c3360 2893 $this->_qill[$grouping][] = ts('Contact Type') . " $op " . implode(' ' . ts('or') . ' ', $quill);
6a488035
TO
2894
2895 if (!empty($subTypes)) {
2896 $this->includeContactSubTypes($subTypes, $grouping);
2897 }
2898 }
2899 }
2900
2901 /**
8f165fa5 2902 * Where / qill clause for contact_sub_type.
6a488035 2903 *
8f165fa5 2904 * @param array $values
6a488035 2905 */
00be9182 2906 public function contactSubType(&$values) {
6a488035 2907 list($name, $op, $value, $grouping, $wildcard) = $values;
1d2bcc81 2908 $this->includeContactSubTypes($value, $grouping, $op);
6a488035
TO
2909 }
2910
86538308
EM
2911 /**
2912 * @param $value
2913 * @param $grouping
0e2e76cf 2914 * @param string $op
b832662c 2915 *
2916 * @throws \CRM_Core_Exception
86538308 2917 */
00be9182 2918 public function includeContactSubTypes($value, $grouping, $op = 'LIKE') {
6a488035 2919
e9fd1f48 2920 if (is_array($value) && in_array(key($value), CRM_Core_DAO::acceptedSQLOperators(), TRUE)) {
2921 $op = key($value);
2922 $value = $value[$op];
2923 }
2924
be2fb01f 2925 $clause = [];
6a488035 2926 $alias = "contact_a.contact_sub_type";
46b3417a 2927 $qillOperators = CRM_Core_SelectValues::getSearchBuilderOperators();
6a488035 2928
1d2bcc81 2929 $op = str_replace('IN', 'LIKE', $op);
ccc79dfc 2930 $op = str_replace('=', 'LIKE', $op);
2931 $op = str_replace('!', 'NOT ', $op);
1d2bcc81 2932
2933 if (strpos($op, 'NULL') !== FALSE || strpos($op, 'EMPTY') !== FALSE) {
2934 $this->_where[$grouping][] = self::buildClause($alias, $op, $value, 'String');
2935 }
4c9b6178 2936 elseif (is_array($value)) {
6a488035 2937 foreach ($value as $k => $v) {
35fbf8a2 2938 $clause[$k] = "($alias $op '%" . CRM_Core_DAO::VALUE_SEPARATOR . CRM_Utils_Type::escape($v, 'String') . CRM_Core_DAO::VALUE_SEPARATOR . "%')";
6a488035
TO
2939 }
2940 }
2941 else {
1d2bcc81 2942 $clause[$value] = "($alias $op '%" . CRM_Core_DAO::VALUE_SEPARATOR . CRM_Utils_Type::escape($value, 'String') . CRM_Core_DAO::VALUE_SEPARATOR . "%')";
6a488035
TO
2943 }
2944
2945 if (!empty($clause)) {
2946 $this->_where[$grouping][] = "( " . implode(' OR ', $clause) . " )";
6a488035 2947 }
be2fb01f 2948 $this->_qill[$grouping][] = ts('Contact Subtype %1 ', [1 => $qillOperators[$op]]) . implode(' ' . ts('or') . ' ', array_keys($clause));
6a488035
TO
2949 }
2950
2951 /**
c3137c08 2952 * Where / qill clause for groups.
6a488035 2953 *
77b97be7 2954 * @param $values
0d38cb6d 2955 *
2956 * @throws \CRM_Core_Exception
b832662c 2957 * @throws \Exception
6a488035 2958 */
c3137c08 2959 public function group($values) {
6a488035
TO
2960 list($name, $op, $value, $grouping, $wildcard) = $values;
2961
ca91bd7f 2962 // If the $value is in OK (operator as key) array format we need to extract the key as operator and value first
2963 if (is_array($value) && in_array(key($value), CRM_Core_DAO::acceptedSQLOperators(), TRUE)) {
2964 $op = key($value);
2965 $value = $value[$op];
2966 }
673fae6c 2967 // Translate EMPTY to NULL as EMPTY is cannot be used in it's intended meaning here
2968 // so has to be 'squashed into' NULL. (ie. group membership cannot be '').
2969 // even one group might equate to multiple when looking at children so IN is simpler.
2970 // @todo - also look at != casting but there are rows below to review.
2971 $opReplacements = [
dd606225
JP
2972 'IS EMPTY' => 'IS NULL',
2973 'IS NOT EMPTY' => 'IS NOT NULL',
673fae6c 2974 '=' => 'IN',
2975 ];
2976 if (isset($opReplacements[$op])) {
2977 $op = $opReplacements[$op];
2978 }
e8401ae2 2979
ca91bd7f 2980 if (strpos($op, 'NULL')) {
2981 $value = NULL;
2982 }
2983
0d71d885 2984 if (is_array($value) && count($value) > 1) {
e8401ae2 2985 if (strpos($op, 'IN') === FALSE && strpos($op, 'NULL') === FALSE) {
79e11805 2986 throw new CRM_Core_Exception(ts("%1 is not a valid operator", [1 => $op]));
e8401ae2 2987 }
6a488035
TO
2988 $this->_useDistinct = TRUE;
2989 }
2990
7cc09daf 2991 if (isset($value)) {
2992 $value = CRM_Utils_Array::value($op, $value, $value);
2993 }
2994
9de9a433 2995 if ($name === 'group_type') {
d412bcca 2996 $value = array_keys($this->getGroupsFromTypeCriteria($value));
2997 }
2998
be2fb01f 2999 $regularGroupIDs = $smartGroupIDs = [];
181962cf 3000 foreach ((array) $value as $id) {
3001 if (CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Group', $id, 'saved_search_id')) {
6c5056ec 3002 $smartGroupIDs[] = (int) $id;
181962cf 3003 }
3004 else {
6c5056ec 3005 $regularGroupIDs[] = (int) trim($id);
181962cf 3006 }
3007 }
d7570a7f 3008 $hasNonSmartGroups = count($regularGroupIDs);
c3137c08 3009
9de9a433 3010 $isNotOp = ($op === 'NOT IN' || $op === '!=');
d79d2a59 3011
d7570a7f 3012 $statusJoinClause = $this->getGroupStatusClause($grouping);
0d38cb6d 3013 // If we are searching for 'Removed' contacts then despite it being a smart group we only care about the group_contact table.
3014 $isGroupStatusSearch = (!empty($this->getSelectedGroupStatuses($grouping)) && $this->getSelectedGroupStatuses($grouping) !== ["'Added'"]);
be2fb01f 3015 $groupClause = [];
0d38cb6d 3016 if ($hasNonSmartGroups || empty($value) || $isGroupStatusSearch) {
783144b0 3017 // include child groups IDs if any
3018 $childGroupIds = (array) CRM_Contact_BAO_Group::getChildGroupIds($regularGroupIDs);
3019 foreach ($childGroupIds as $key => $id) {
3020 if (CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Group', $id, 'saved_search_id')) {
3021 $smartGroupIDs[] = $id;
3022 unset($childGroupIds[$key]);
3023 }
3024 }
3025 if (count($childGroupIds)) {
3026 $regularGroupIDs = array_merge($regularGroupIDs, $childGroupIds);
3027 }
3028
9ca472a1 3029 if (empty($regularGroupIDs)) {
0d38cb6d 3030 if ($isGroupStatusSearch) {
3031 $regularGroupIDs = $smartGroupIDs;
3032 }
3033 // If it is still empty we want a filter that blocks all results.
3034 if (empty($regularGroupIDs)) {
3035 $regularGroupIDs = [0];
3036 }
9ca472a1
PN
3037 }
3038
9de9a433 3039 $gcTable = '`civicrm_group_contact-' . uniqid() . "`";
be2fb01f 3040 $joinClause = ["contact_a.id = {$gcTable}.contact_id"];
783144b0 3041
6c5056ec 3042 // @todo consider just casting != to NOT IN & handling both together.
9de9a433 3043 if ($op === '!=') {
6c5056ec
PN
3044 $groupIds = '';
3045 if (!empty($regularGroupIDs)) {
8a6d5abd 3046 $groupIds = CRM_Utils_Type::validate(implode(',', (array) $regularGroupIDs), 'CommaSeparatedIntegers');
6c5056ec 3047 }
783144b0 3048 $clause = "{$gcTable}.contact_id NOT IN (SELECT contact_id FROM civicrm_group_contact cgc WHERE cgc.group_id = $groupIds )";
c112a6f9 3049 }
3050 else {
673fae6c 3051 $clause = self::buildClause("{$gcTable}.group_id", $op, $regularGroupIDs);
c112a6f9 3052 }
783144b0 3053 $groupClause[] = "( {$clause} )";
6a488035 3054
d7570a7f 3055 if ($statusJoinClause) {
3056 $joinClause[] = "{$gcTable}.$statusJoinClause";
6a488035 3057 }
783144b0 3058 $this->_tables[$gcTable] = $this->_whereTables[$gcTable] = " LEFT JOIN civicrm_group_contact {$gcTable} ON (" . implode(' AND ', $joinClause) . ")";
6a488035
TO
3059 }
3060
181962cf 3061 //CRM-19589: contact(s) removed from a Smart Group, resides in civicrm_group_contact table
0d38cb6d 3062 // If we are only searching for Removed or Pending contacts we don't need to resolve the smart group
3063 // as that info is in the group_contact table.
3064 if ((count($smartGroupIDs) || empty($value)) && !$isGroupStatusSearch) {
ed17b5e2 3065 $this->_groupUniqueKey = uniqid();
e24f9388 3066 $this->_groupKeys[] = $this->_groupUniqueKey;
ed17b5e2 3067 $gccTableAlias = "civicrm_group_contact_cache_{$this->_groupUniqueKey}";
9f6a1556 3068 $groupContactCacheClause = $this->addGroupContactCache($smartGroupIDs, $gccTableAlias, "contact_a", $op);
6451118c 3069 if (!empty($groupContactCacheClause)) {
9f6a1556 3070 if ($isNotOp) {
e15bd6d1 3071 $groupIds = CRM_Utils_Type::validate(implode(',', (array) $smartGroupIDs), 'CommaSeparatedIntegers');
ed17b5e2 3072 $gcTable = "civicrm_group_contact_{$this->_groupUniqueKey}";
be2fb01f 3073 $joinClause = ["contact_a.id = {$gcTable}.contact_id"];
9f6a1556
JP
3074 $this->_tables[$gcTable] = $this->_whereTables[$gcTable] = " LEFT JOIN civicrm_group_contact {$gcTable} ON (" . implode(' AND ', $joinClause) . ")";
3075 if (strpos($op, 'IN') !== FALSE) {
3076 $groupClause[] = "{$gcTable}.group_id $op ( $groupIds ) AND {$gccTableAlias}.group_id IS NULL";
3077 }
3078 else {
3079 $groupClause[] = "{$gcTable}.group_id $op $groupIds AND {$gccTableAlias}.group_id IS NULL";
3080 }
3081 }
6451118c
JP
3082 $groupClause[] = " ( {$groupContactCacheClause} ) ";
3083 }
6a488035
TO
3084 }
3085
883e1e76 3086 $and = ($op == 'IS NULL') ? ' AND ' : ' OR ';
6451118c
JP
3087 if (!empty($groupClause)) {
3088 $this->_where[$grouping][] = ' ( ' . implode($and, $groupClause) . ' ) ';
3089 }
181962cf 3090
e8401ae2 3091 list($qillop, $qillVal) = CRM_Contact_BAO_Query::buildQillForFieldValue('CRM_Contact_DAO_Group', 'id', $value, $op);
be2fb01f 3092 $this->_qill[$grouping][] = ts("Group(s) %1 %2", [1 => $qillop, 2 => $qillVal]);
0cd50623 3093 if (strpos($op, 'NULL') === FALSE) {
d7570a7f 3094 $this->_qill[$grouping][] = ts("Group Status %1", [1 => implode(' ' . ts('or') . ' ', $this->getSelectedGroupStatuses($grouping))]);
0cd50623 3095 }
6a488035 3096 }
d424ffde 3097
b832662c 3098 /**
3099 * @return array
3100 */
e24f9388
SL
3101 public function getGroupCacheTableKeys() {
3102 return $this->_groupKeys;
ed17b5e2
SL
3103 }
3104
86538308 3105 /**
fe482240 3106 * Function translates selection of group type into a list of groups.
86538308
EM
3107 * @param $value
3108 *
3109 * @return array
3110 */
5c7dad85 3111 public function getGroupsFromTypeCriteria($value) {
be2fb01f 3112 $groupIds = [];
d79d2a59 3113 foreach ((array) $value as $groupTypeValue) {
6a488035
TO
3114 $groupList = CRM_Core_PseudoConstant::group($groupTypeValue);
3115 $groupIds = ($groupIds + $groupList);
3116 }
3117 return $groupIds;
3118 }
3119
e6b676a0 3120 /**
72a2eeab
AS
3121 * Prime smart group cache for smart groups in the search, and join
3122 * civicrm_group_contact_cache table into the query.
3123 *
3124 * @param array $groups IDs of groups specified in search criteria.
3125 * @param string $tableAlias Alias to use for civicrm_group_contact_cache table.
3126 * @param string $joinTable Table on which to join civicrm_group_contact_cache
3127 * @param string $op SQL comparison operator (NULL, IN, !=, IS NULL, etc.)
3128 * @param string $joinColumn Column in $joinTable on which to join civicrm_group_contact_cache.contact_id
e6b676a0 3129 *
72a2eeab 3130 * @return string WHERE clause component for smart group criteria.
b832662c 3131 * @throws \CRM_Core_Exception
e6b676a0 3132 */
e9cde327 3133 public function addGroupContactCache($groups, $tableAlias, $joinTable, $op, $joinColumn = 'id') {
e8401ae2 3134 $isNullOp = (strpos($op, 'NULL') !== FALSE);
3135 $groupsIds = $groups;
6451118c
JP
3136
3137 $operator = ['=' => 'IN', '!=' => 'NOT IN'];
3138 if (!empty($operator[$op]) && is_array($groups)) {
3139 $op = $operator[$op];
3140 }
e8401ae2 3141 if (!$isNullOp && !$groups) {
6a488035
TO
3142 return NULL;
3143 }
e8401ae2 3144 elseif (strpos($op, 'IN') !== FALSE) {
be2fb01f 3145 $groups = [$op => $groups];
e8401ae2 3146 }
d4ed6fbd 3147 elseif (is_array($groups) && count($groups)) {
be2fb01f 3148 $groups = ['IN' => $groups];
d4ed6fbd 3149 }
6a488035 3150
e8401ae2 3151 // Find all the groups that are part of a saved search.
3152 $smartGroupClause = self::buildClause("id", $op, $groups, 'Int');
6a488035
TO
3153 $sql = "
3154SELECT id, cache_date, saved_search_id, children
3155FROM civicrm_group
e8401ae2 3156WHERE $smartGroupClause
6a488035
TO
3157 AND ( saved_search_id != 0
3158 OR saved_search_id IS NOT NULL
3159 OR children IS NOT NULL )
3160";
e6b676a0 3161
5c7dad85 3162 $group = CRM_Core_DAO::executeQuery($sql);
e6b676a0 3163
6a488035 3164 while ($group->fetch()) {
6a488035 3165 $this->_useDistinct = TRUE;
6a488035
TO
3166 if (!$this->_smartGroupCache || $group->cache_date == NULL) {
3167 CRM_Contact_BAO_GroupContactCache::load($group);
3168 }
6a488035 3169 }
9f6a1556 3170 if ($group->N == 0 && $op != 'NOT IN') {
485a3a1f 3171 return NULL;
3172 }
6a488035 3173
72a2eeab 3174 $this->_tables[$tableAlias] = $this->_whereTables[$tableAlias] = " LEFT JOIN civicrm_group_contact_cache {$tableAlias} ON {$joinTable}.{$joinColumn} = {$tableAlias}.contact_id ";
9f6a1556
JP
3175
3176 if ($op == 'NOT IN') {
3177 return "{$tableAlias}.contact_id NOT IN (SELECT contact_id FROM civicrm_group_contact_cache cgcc WHERE cgcc.group_id IN ( " . implode(',', (array) $groupsIds) . " ) )";
3178 }
e8401ae2 3179 return self::buildClause("{$tableAlias}.group_id", $op, $groups, 'Int');
6a488035
TO
3180 }
3181
3182 /**
100fef9d 3183 * Where / qill clause for cms users
6a488035 3184 *
77b97be7 3185 * @param $values
6a488035 3186 */
00be9182 3187 public function ufUser(&$values) {
6a488035
TO
3188 list($name, $op, $value, $grouping, $wildcard) = $values;
3189
3190 if ($value == 1) {
3191 $this->_tables['civicrm_uf_match'] = $this->_whereTables['civicrm_uf_match'] = ' INNER JOIN civicrm_uf_match ON civicrm_uf_match.contact_id = contact_a.id ';
3192
3193 $this->_qill[$grouping][] = ts('CMS User');
3194 }
3195 elseif ($value == 0) {
3196 $this->_tables['civicrm_uf_match'] = $this->_whereTables['civicrm_uf_match'] = ' LEFT JOIN civicrm_uf_match ON civicrm_uf_match.contact_id = contact_a.id ';
3197
3198 $this->_where[$grouping][] = " civicrm_uf_match.contact_id IS NULL";
3199 $this->_qill[$grouping][] = ts('Not a CMS User');
3200 }
3201 }
3202
3203 /**
fe482240 3204 * All tag search specific.
6a488035 3205 *
c037736a 3206 * @param array $values
b832662c 3207 *
3208 * @throws \CRM_Core_Exception
6a488035 3209 */
00be9182 3210 public function tagSearch(&$values) {
6a488035
TO
3211 list($name, $op, $value, $grouping, $wildcard) = $values;
3212
3213 $op = "LIKE";
3214 $value = "%{$value}%";
0cf0a3f3 3215 $escapedValue = CRM_Utils_Type::escape("%{$value}%", 'String');
6a488035 3216
6a488035
TO
3217 $useAllTagTypes = $this->getWhereValues('all_tag_types', $grouping);
3218 $tagTypesText = $this->getWhereValues('tag_types_text', $grouping);
3219
394643b9
PF
3220 $etTable = "`civicrm_entity_tag-" . uniqid() . "`";
3221 $tTable = "`civicrm_tag-" . uniqid() . "`";
6a488035
TO
3222
3223 if ($useAllTagTypes[2]) {
59f4c9ee
TO
3224 $this->_tables[$etTable] = $this->_whereTables[$etTable]
3225 = " LEFT JOIN civicrm_entity_tag {$etTable} ON ( {$etTable}.entity_id = contact_a.id)
3226 LEFT JOIN civicrm_tag {$tTable} ON ( {$etTable}.tag_id = {$tTable}.id )";
6a488035
TO
3227
3228 // search tag in cases
394643b9
PF
3229 $etCaseTable = "`civicrm_entity_case_tag-" . uniqid() . "`";
3230 $tCaseTable = "`civicrm_case_tag-" . uniqid() . "`";
59f4c9ee
TO
3231 $this->_tables[$etCaseTable] = $this->_whereTables[$etCaseTable]
3232 = " LEFT JOIN civicrm_case_contact ON civicrm_case_contact.contact_id = contact_a.id
3233 LEFT JOIN civicrm_case
6a488035
TO
3234 ON (civicrm_case_contact.case_id = civicrm_case.id
3235 AND civicrm_case.is_deleted = 0 )
59f4c9ee
TO
3236 LEFT JOIN civicrm_entity_tag {$etCaseTable} ON ( {$etCaseTable}.entity_table = 'civicrm_case' AND {$etCaseTable}.entity_id = civicrm_case.id )
3237 LEFT JOIN civicrm_tag {$tCaseTable} ON ( {$etCaseTable}.tag_id = {$tCaseTable}.id )";
6a488035 3238 // search tag in activities
394643b9
PF
3239 $etActTable = "`civicrm_entity_act_tag-" . uniqid() . "`";
3240 $tActTable = "`civicrm_act_tag-" . uniqid() . "`";
44f817d4 3241 $activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
9e74e3ce 3242 $targetID = CRM_Utils_Array::key('Activity Targets', $activityContacts);
1071730c 3243
59f4c9ee
TO
3244 $this->_tables[$etActTable] = $this->_whereTables[$etActTable]
3245 = " LEFT JOIN civicrm_activity_contact
9e74e3ce 3246 ON ( civicrm_activity_contact.contact_id = contact_a.id AND civicrm_activity_contact.record_type_id = {$targetID} )
59f4c9ee 3247 LEFT JOIN civicrm_activity
91da6cd5 3248 ON ( civicrm_activity.id = civicrm_activity_contact.activity_id
6a488035 3249 AND civicrm_activity.is_deleted = 0 AND civicrm_activity.is_current_revision = 1 )
59f4c9ee
TO
3250 LEFT JOIN civicrm_entity_tag as {$etActTable} ON ( {$etActTable}.entity_table = 'civicrm_activity' AND {$etActTable}.entity_id = civicrm_activity.id )
3251 LEFT JOIN civicrm_tag {$tActTable} ON ( {$etActTable}.tag_id = {$tActTable}.id )";
6a488035 3252
0cf0a3f3 3253 $this->_where[$grouping][] = "({$tTable}.name $op '" . $escapedValue . "' OR {$tCaseTable}.name $op '" . $escapedValue . "' OR {$tActTable}.name $op '" . $escapedValue . "')";
be2fb01f 3254 $this->_qill[$grouping][] = ts('Tag %1 %2', [1 => $tagTypesText[2], 2 => $op]) . ' ' . $value;
5c7dad85
TO
3255 }
3256 else {
394643b9
PF
3257 $etTable = "`civicrm_entity_tag-" . uniqid() . "`";
3258 $tTable = "`civicrm_tag-" . uniqid() . "`";
6a488035
TO
3259 $this->_tables[$etTable] = $this->_whereTables[$etTable] = " LEFT JOIN civicrm_entity_tag {$etTable} ON ( {$etTable}.entity_id = contact_a.id AND
3260 {$etTable}.entity_table = 'civicrm_contact' )
3261 LEFT JOIN civicrm_tag {$tTable} ON ( {$etTable}.tag_id = {$tTable}.id ) ";
3262
3263 $this->_where[$grouping][] = self::buildClause("{$tTable}.name", $op, $value, 'String');
be2fb01f 3264 $this->_qill[$grouping][] = ts('Tagged %1', [1 => $op]) . ' ' . $value;
6a488035
TO
3265 }
3266 }
3267
3268 /**
8f165fa5 3269 * Where / qill clause for tag.
6a488035 3270 *
c037736a 3271 * @param array $values
b832662c 3272 *
3273 * @throws \CRM_Core_Exception
6a488035 3274 */
00be9182 3275 public function tag(&$values) {
6a488035
TO
3276 list($name, $op, $value, $grouping, $wildcard) = $values;
3277
7cc09daf 3278 // API/Search Builder format array(operator => array(values))
6a488035 3279 if (is_array($value)) {
7cc09daf 3280 if (in_array(key($value), CRM_Core_DAO::acceptedSQLOperators(), TRUE)) {
3281 $op = key($value);
3282 $value = $value[$op];
3283 }
6a488035
TO
3284 if (count($value) > 1) {
3285 $this->_useDistinct = TRUE;
3286 }
6a488035
TO
3287 }
3288
fe128a5a
MD
3289 if (strpos($op, 'NULL') || strpos($op, 'EMPTY')) {
3290 $value = NULL;
3291 }
3292
3293 $tagTree = CRM_Core_BAO_Tag::getChildTags();
3294 foreach ((array) $value as $tagID) {
3295 if (!empty($tagTree[$tagID])) {
7ce1e8f3
E
3296 // make sure value is an array here (see CORE-2502)
3297 $value = array_unique(array_merge((array) $value, $tagTree[$tagID]));
fe128a5a
MD
3298 }
3299 }
3300
3301 list($qillop, $qillVal) = self::buildQillForFieldValue('CRM_Core_DAO_EntityTag', "tag_id", $value, $op, ['onlyActive' => FALSE]);
3302
f2ec9ca7
PF
3303 // implode array, then remove all spaces
3304 $value = str_replace(' ', '', implode(',', (array) $value));
3305 if (!empty($value)) {
8a6d5abd 3306 $value = CRM_Utils_Type::validate($value, 'CommaSeparatedIntegers');
f2ec9ca7 3307 }
0cf0a3f3 3308
6a488035
TO
3309 $useAllTagTypes = $this->getWhereValues('all_tag_types', $grouping);
3310 $tagTypesText = $this->getWhereValues('tag_types_text', $grouping);
3311
394643b9 3312 $etTable = "`civicrm_entity_tag-" . uniqid() . "`";
6a488035 3313
32c3b33f 3314 if (!empty($useAllTagTypes[2])) {
59f4c9ee
TO
3315 $this->_tables[$etTable] = $this->_whereTables[$etTable]
3316 = " LEFT JOIN civicrm_entity_tag {$etTable} ON ( {$etTable}.entity_id = contact_a.id AND {$etTable}.entity_table = 'civicrm_contact') ";
6a488035
TO
3317
3318 // search tag in cases
394643b9 3319 $etCaseTable = "`civicrm_entity_case_tag-" . uniqid() . "`";
44f817d4 3320 $activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
9e74e3ce 3321 $targetID = CRM_Utils_Array::key('Activity Targets', $activityContacts);
3322
59f4c9ee
TO
3323 $this->_tables[$etCaseTable] = $this->_whereTables[$etCaseTable]
3324 = " LEFT JOIN civicrm_case_contact ON civicrm_case_contact.contact_id = contact_a.id
3325 LEFT JOIN civicrm_case
6a488035
TO
3326 ON (civicrm_case_contact.case_id = civicrm_case.id
3327 AND civicrm_case.is_deleted = 0 )
59f4c9ee 3328 LEFT JOIN civicrm_entity_tag {$etCaseTable} ON ( {$etCaseTable}.entity_table = 'civicrm_case' AND {$etCaseTable}.entity_id = civicrm_case.id ) ";
6a488035 3329 // search tag in activities
394643b9 3330 $etActTable = "`civicrm_entity_act_tag-" . uniqid() . "`";
59f4c9ee
TO
3331 $this->_tables[$etActTable] = $this->_whereTables[$etActTable]
3332 = " LEFT JOIN civicrm_activity_contact
9e74e3ce 3333 ON ( civicrm_activity_contact.contact_id = contact_a.id AND civicrm_activity_contact.record_type_id = {$targetID} )
59f4c9ee 3334 LEFT JOIN civicrm_activity
91da6cd5 3335 ON ( civicrm_activity.id = civicrm_activity_contact.activity_id
6a488035 3336 AND civicrm_activity.is_deleted = 0 AND civicrm_activity.is_current_revision = 1 )
59f4c9ee 3337 LEFT JOIN civicrm_entity_tag as {$etActTable} ON ( {$etActTable}.entity_table = 'civicrm_activity' AND {$etActTable}.entity_id = civicrm_activity.id ) ";
6a488035
TO
3338
3339 // CRM-10338
be2fb01f 3340 if (in_array($op, ['IS NULL', 'IS NOT NULL', 'IS EMPTY', 'IS NOT EMPTY'])) {
6a488035
TO
3341 $this->_where[$grouping][] = "({$etTable}.tag_id $op OR {$etCaseTable}.tag_id $op OR {$etActTable}.tag_id $op)";
3342 }
3343 else {
5c7dad85 3344 $this->_where[$grouping][] = "({$etTable}.tag_id $op (" . $value . ") OR {$etCaseTable}.tag_id $op (" . $value . ") OR {$etActTable}.tag_id $op (" . $value . "))";
6a488035 3345 }
5c7dad85
TO
3346 }
3347 else {
59f4c9ee
TO
3348 $this->_tables[$etTable] = $this->_whereTables[$etTable]
3349 = " LEFT JOIN civicrm_entity_tag {$etTable} ON ( {$etTable}.entity_id = contact_a.id AND {$etTable}.entity_table = 'civicrm_contact') ";
6a488035
TO
3350
3351 // CRM-10338
be2fb01f 3352 if (in_array($op, ['IS NULL', 'IS NOT NULL', 'IS EMPTY', 'IS NOT EMPTY'])) {
6a488035
TO
3353 // this converts IS (NOT)? EMPTY to IS (NOT)? NULL
3354 $op = str_replace('EMPTY', 'NULL', $op);
3355 $this->_where[$grouping][] = "{$etTable}.tag_id $op";
3356 }
c112a6f9 3357 // CRM-16941: for tag tried with != operator we don't show contact who don't have given $value AND also in other tag
3358 elseif ($op == '!=') {
3359 $this->_where[$grouping][] = "{$etTable}.entity_id NOT IN (SELECT entity_id FROM civicrm_entity_tag cet WHERE cet.entity_table = 'civicrm_contact' AND " . self::buildClause("cet.tag_id", '=', $value, 'Int') . ")";
3360 }
3361 elseif ($op == '=' || strstr($op, 'IN')) {
3362 $op = ($op == '=') ? 'IN' : $op;
3363 $this->_where[$grouping][] = "{$etTable}.tag_id $op ( $value )";
6a488035 3364 }
6a488035 3365 }
be2fb01f 3366 $this->_qill[$grouping][] = ts('Tagged %1 %2', [1 => $qillop, 2 => $qillVal]);
6a488035
TO
3367 }
3368
3369 /**
100fef9d 3370 * Where/qill clause for notes
6a488035 3371 *
c037736a 3372 * @param array $values
b832662c 3373 *
3374 * @throws \CRM_Core_Exception
6a488035 3375 */
00be9182 3376 public function notes(&$values) {
6a488035
TO
3377 list($name, $op, $value, $grouping, $wildcard) = $values;
3378
3379 $noteOptionValues = $this->getWhereValues('note_option', $grouping);
3380 $noteOption = CRM_Utils_Array::value('2', $noteOptionValues, '6');
3381 $noteOption = ($name == 'note_body') ? 2 : (($name == 'note_subject') ? 3 : $noteOption);
3382
3383 $this->_useDistinct = TRUE;
3384
59f4c9ee
TO
3385 $this->_tables['civicrm_note'] = $this->_whereTables['civicrm_note']
3386 = " LEFT JOIN civicrm_note ON ( civicrm_note.entity_table = 'civicrm_contact' AND contact_a.id = civicrm_note.entity_id ) ";
6a488035 3387
6a488035 3388 $n = trim($value);
2fc64082 3389 $value = CRM_Core_DAO::escapeString($n);
05d214de 3390 if ($wildcard) {
6a488035
TO
3391 if (strpos($value, '%') === FALSE) {
3392 $value = "%$value%";
3393 }
3394 $op = 'LIKE';
3395 }
3396 elseif ($op == 'IS NULL' || $op == 'IS NOT NULL') {
3397 $value = NULL;
3398 }
3399
3400 $label = NULL;
be2fb01f 3401 $clauses = [];
5c7dad85 3402 if ($noteOption % 2 == 0) {
6a488035
TO
3403 $clauses[] = self::buildClause('civicrm_note.note', $op, $value, 'String');
3404 $label = ts('Note: Body Only');
3405 }
5c7dad85 3406 if ($noteOption % 3 == 0) {
6a488035
TO
3407 $clauses[] = self::buildClause('civicrm_note.subject', $op, $value, 'String');
3408 $label = $label ? ts('Note: Body and Subject') : ts('Note: Subject Only');
3409 }
3410 $this->_where[$grouping][] = "( " . implode(' OR ', $clauses) . " )";
05d214de 3411 list($qillOp, $qillVal) = self::buildQillForFieldValue(NULL, $name, $n, $op);
be2fb01f 3412 $this->_qill[$grouping][] = ts("%1 %2 %3", [1 => $label, 2 => $qillOp, 3 => $qillVal]);
6a488035
TO
3413 }
3414
86538308 3415 /**
100fef9d 3416 * @param string $name
86538308
EM
3417 * @param $op
3418 * @param $grouping
3419 *
3420 * @return bool
3421 */
00be9182 3422 public function nameNullOrEmptyOp($name, $op, $grouping) {
5c7dad85 3423 switch ($op) {
6a488035
TO
3424 case 'IS NULL':
3425 case 'IS NOT NULL':
3426 $this->_where[$grouping][] = "contact_a.$name $op";
3427 $this->_qill[$grouping][] = ts('Name') . ' ' . $op;
5c7dad85 3428 return TRUE;
6a488035
TO
3429
3430 case 'IS EMPTY':
3431 $this->_where[$grouping][] = "(contact_a.$name IS NULL OR contact_a.$name = '')";
3432 $this->_qill[$grouping][] = ts('Name') . ' ' . $op;
5c7dad85 3433 return TRUE;
6a488035
TO
3434
3435 case 'IS NOT EMPTY':
3436 $this->_where[$grouping][] = "(contact_a.$name IS NOT NULL AND contact_a.$name <> '')";
3437 $this->_qill[$grouping][] = ts('Name') . ' ' . $op;
5c7dad85 3438 return TRUE;
6a488035
TO
3439
3440 default:
5c7dad85 3441 return FALSE;
6a488035
TO
3442 }
3443 }
3444
3445 /**
100fef9d 3446 * Where / qill clause for sort_name
6a488035 3447 *
c037736a 3448 * @param array $values
6a488035 3449 */
00be9182 3450 public function sortName(&$values) {
fd816db5 3451 list($fieldName, $op, $value, $grouping, $wildcard) = $values;
6a488035
TO
3452
3453 // handle IS NULL / IS NOT NULL / IS EMPTY / IS NOT EMPTY
fd816db5 3454 if ($this->nameNullOrEmptyOp($fieldName, $op, $grouping)) {
6a488035
TO
3455 return;
3456 }
3457
359fdb6f 3458 $input = $value = is_array($value) ? trim($value['LIKE']) : trim($value);
6a488035 3459
fd816db5 3460 if (!strlen($value)) {
6a488035
TO
3461 return;
3462 }
3463
3464 $config = CRM_Core_Config::singleton();
3465
be2fb01f 3466 $sub = [];
6a488035
TO
3467
3468 //By default, $sub elements should be joined together with OR statements (don't change this variable).
3469 $subGlue = ' OR ';
3470
fd816db5
CW
3471 $firstChar = substr($value, 0, 1);
3472 $lastChar = substr($value, -1, 1);
be2fb01f 3473 $quotes = ["'", '"'];
fd816db5
CW
3474 // If string is quoted, strip quotes and otherwise don't alter it
3475 if ((strlen($value) > 2) && in_array($firstChar, $quotes) && in_array($lastChar, $quotes)) {
3476 $value = trim($value, implode('', $quotes));
3477 }
3478 // Replace spaces with wildcards for a LIKE operation
3479 // UNLESS string contains a comma (this exception is a tiny bit questionable)
bc1d5d42 3480 // Also need to check if there is space in between sort name.
3481 elseif ($op == 'LIKE' && strpos($value, ',') === FALSE && strpos($value, ' ') === TRUE) {
fd816db5
CW
3482 $value = str_replace(' ', '%', $value);
3483 }
9436d5d5 3484 $value = CRM_Core_DAO::escapeString(trim($value));
fd816db5 3485 if (strlen($value)) {
be2fb01f 3486 $fieldsub = [];
0b38e8f1 3487 $value = "'" . self::getWildCardedValue($wildcard, $op, $value) . "'";
fd816db5 3488 if ($fieldName == 'sort_name') {
9436d5d5 3489 $wc = "contact_a.sort_name";
6a488035
TO
3490 }
3491 else {
9436d5d5 3492 $wc = "contact_a.display_name";
6a488035 3493 }
fd816db5 3494 $fieldsub[] = " ( $wc $op $value )";
6a488035 3495 if ($config->includeNickNameInName) {
9436d5d5 3496 $wc = "contact_a.nick_name";
fd816db5 3497 $fieldsub[] = " ( $wc $op $value )";
6a488035
TO
3498 }
3499 if ($config->includeEmailInName) {
fd816db5 3500 $fieldsub[] = " ( civicrm_email.email $op $value ) ";
6a488035 3501 }
fd816db5 3502 $sub[] = ' ( ' . implode(' OR ', $fieldsub) . ' ) ';
6a488035
TO
3503 }
3504
3505 $sub = ' ( ' . implode($subGlue, $sub) . ' ) ';
3506
3507 $this->_where[$grouping][] = $sub;
3508 if ($config->includeEmailInName) {
3509 $this->_tables['civicrm_email'] = $this->_whereTables['civicrm_email'] = 1;
fd816db5 3510 $this->_qill[$grouping][] = ts('Name or Email') . " $op - '$input'";
6a488035
TO
3511 }
3512 else {
fd816db5 3513 $this->_qill[$grouping][] = ts('Name') . " $op - '$input'";
6a488035
TO
3514 }
3515 }
3516
0e2e76cf 3517 /**
cde2037d 3518 * Where/qill clause for greeting fields.
02adf2f9 3519 *
cd2dfbd7 3520 * @param array $values
b832662c 3521 *
3522 * @throws \CRM_Core_Exception
02adf2f9 3523 */
0e2e76cf 3524 public function greetings(&$values) {
02adf2f9
BS
3525 list($name, $op, $value, $grouping, $wildcard) = $values;
3526 $name .= '_display';
3527
9b183452 3528 list($qillop, $qillVal) = CRM_Contact_BAO_Query::buildQillForFieldValue(NULL, $name, $value, $op);
be2fb01f 3529 $this->_qill[$grouping][] = ts('Greeting %1 %2', [1 => $qillop, 2 => $qillVal]);
9b183452 3530 $this->_where[$grouping][] = self::buildClause("contact_a.{$name}", $op, $value, 'String');
02adf2f9
BS
3531 }
3532
6a488035 3533 /**
100fef9d 3534 * Where / qill clause for email
6a488035 3535 *
c037736a 3536 * @param array $values
9178793e 3537 * @param string $isForcePrimaryOnly
3538 *
3539 * @throws \CRM_Core_Exception
6a488035 3540 */
9178793e 3541 protected function email(&$values, $isForcePrimaryOnly) {
6a488035 3542 list($name, $op, $value, $grouping, $wildcard) = $values;
11f8e194 3543 $this->_tables['civicrm_email'] = $this->_whereTables['civicrm_email'] = 1;
6a488035 3544
57f8e7f0 3545 // CRM-18147: for Contact's GET API, email fieldname got appended with its entity as in {$apiEntiy}_{$name}
3546 // so following code is use build whereClause for contact's primart email id
9178793e 3547 if (!empty($isForcePrimaryOnly)) {
57f8e7f0 3548 $this->_where[$grouping][] = self::buildClause('civicrm_email.is_primary', '=', 1, 'Integer');
9178793e 3549 }
3550 // @todo - this should come from the $this->_fields array
3551 $dbName = $name === 'email_id' ? 'id' : $name;
3552
3553 if (is_array($value) || $name === 'email_id') {
a43deb74 3554 $this->_qill[$grouping][] = $this->getQillForField($name, $value, $op, [], ts('Email'));
9178793e 3555 $this->_where[$grouping][] = self::buildClause('civicrm_email.' . $dbName, $op, $value, 'String');
57f8e7f0 3556 return;
3557 }
3558
9178793e 3559 // Is this ever hit now? Ideally ensure always an array & handle above.
c245fd99 3560 $n = trim($value);
6a488035 3561 if ($n) {
6a488035
TO
3562 if (substr($n, 0, 1) == '"' &&
3563 substr($n, -1, 1) == '"'
3564 ) {
3565 $n = substr($n, 1, -1);
836eb043 3566 $value = CRM_Core_DAO::escapeString($n);
6a488035
TO
3567 $op = '=';
3568 }
3569 else {
0b38e8f1 3570 $value = self::getWildCardedValue($wildcard, $op, $n);
6a488035
TO
3571 }
3572 $this->_qill[$grouping][] = ts('Email') . " $op '$n'";
3573 $this->_where[$grouping][] = self::buildClause('civicrm_email.email', $op, $value, 'String');
3574 }
3575 else {
3576 $this->_qill[$grouping][] = ts('Email') . " $op ";
3577 $this->_where[$grouping][] = self::buildClause('civicrm_email.email', $op, NULL, 'String');
3578 }
6a488035
TO
3579 }
3580
3581 /**
100fef9d 3582 * Where / qill clause for phone number
6a488035 3583 *
c037736a 3584 * @param array $values
b832662c 3585 *
3586 * @throws \CRM_Core_Exception
6a488035 3587 */
00be9182 3588 public function phone_numeric(&$values) {
6a488035 3589 list($name, $op, $value, $grouping, $wildcard) = $values;
a195fab2
BS
3590 // Strip non-numeric characters; allow wildcards
3591 $number = preg_replace('/[^\d%]/', '', $value);
6a488035 3592 if ($number) {
5c7dad85 3593 if (strpos($number, '%') === FALSE) {
a195fab2
BS
3594 $number = "%$number%";
3595 }
3596
6a488035 3597 $this->_qill[$grouping][] = ts('Phone number contains') . " $number";
a195fab2 3598 $this->_where[$grouping][] = self::buildClause('civicrm_phone.phone_numeric', 'LIKE', "$number", 'String');
6a488035
TO
3599 $this->_tables['civicrm_phone'] = $this->_whereTables['civicrm_phone'] = 1;
3600 }
3601 }
3602
3603 /**
100fef9d 3604 * Where / qill clause for phone type/location
6a488035 3605 *
c037736a 3606 * @param array $values
e14c912f 3607 *
3608 * @throws \CRM_Core_Exception
6a488035 3609 */
00be9182 3610 public function phone_option_group($values) {
6a488035 3611 list($name, $op, $value, $grouping, $wildcard) = $values;
cbf48754
AS
3612 $option = ($name == 'phone_phone_type_id' ? 'phone_type_id' : 'location_type_id');
3613 $options = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Phone', $option);
6a488035
TO
3614 $optionName = $options[$value];
3615 $this->_qill[$grouping][] = ts('Phone') . ' ' . ($name == 'phone_phone_type_id' ? ts('type') : ('location')) . " $op $optionName";
3616 $this->_where[$grouping][] = self::buildClause('civicrm_phone.' . substr($name, 6), $op, $value, 'Integer');
3617 $this->_tables['civicrm_phone'] = $this->_whereTables['civicrm_phone'] = 1;
3618 }
3619
3620 /**
c037736a 3621 * Where / qill clause for street_address.
6a488035 3622 *
c037736a 3623 * @param array $values
b832662c 3624 *
3625 * @throws \CRM_Core_Exception
6a488035 3626 */
00be9182 3627 public function street_address(&$values) {
6d52bfe5 3628 list($name, $op, $value, $grouping) = $values;
6a488035
TO
3629
3630 if (!$op) {
3631 $op = 'LIKE';
3632 }
3633
3634 $n = trim($value);
3635
3636 if ($n) {
6a488035
TO
3637 if (strpos($value, '%') === FALSE) {
3638 // only add wild card if not there
3639 $value = "%{$value}%";
3640 }
3641 $op = 'LIKE';
fea8ae41 3642 $this->_where[$grouping][] = self::buildClause('civicrm_address.street_address', $op, $value, 'String');
6a488035
TO
3643 $this->_qill[$grouping][] = ts('Street') . " $op '$n'";
3644 }
3645 else {
3646 $this->_where[$grouping][] = self::buildClause('civicrm_address.street_address', $op, NULL, 'String');
3647 $this->_qill[$grouping][] = ts('Street') . " $op ";
3648 }
3649
3650 $this->_tables['civicrm_address'] = $this->_whereTables['civicrm_address'] = 1;
3651 }
3652
3653 /**
c037736a 3654 * Where / qill clause for street_unit.
77b97be7 3655 *
c037736a 3656 * @param array $values
b832662c 3657 *
3658 * @throws \CRM_Core_Exception
6a488035 3659 */
00be9182 3660 public function street_number(&$values) {
6a488035
TO
3661 list($name, $op, $value, $grouping, $wildcard) = $values;
3662
3663 if (!$op) {
3664 $op = '=';
3665 }
3666
3667 $n = trim($value);
3668
3669 if (strtolower($n) == 'odd') {
3670 $this->_where[$grouping][] = " ( civicrm_address.street_number % 2 = 1 )";
3671 $this->_qill[$grouping][] = ts('Street Number is odd');
3672 }
3673 elseif (strtolower($n) == 'even') {
3674 $this->_where[$grouping][] = " ( civicrm_address.street_number % 2 = 0 )";
3675 $this->_qill[$grouping][] = ts('Street Number is even');
3676 }
3677 else {
2fc64082 3678 $value = $n;
3679 $this->_where[$grouping][] = self::buildClause('civicrm_address.street_number', $op, $value, 'String');
6a488035
TO
3680 $this->_qill[$grouping][] = ts('Street Number') . " $op '$n'";
3681 }
3682
3683 $this->_tables['civicrm_address'] = $this->_whereTables['civicrm_address'] = 1;
3684 }
3685
3686 /**
c037736a 3687 * Where / qill clause for sorting by character.
77b97be7 3688 *
c037736a 3689 * @param array $values
6a488035 3690 */
00be9182 3691 public function sortByCharacter(&$values) {
6a488035
TO
3692 list($name, $op, $value, $grouping, $wildcard) = $values;
3693
3694 $name = trim($value);
2fc64082 3695 $cond = " contact_a.sort_name LIKE '" . CRM_Core_DAO::escapeWildCardString($name) . "%'";
6a488035 3696 $this->_where[$grouping][] = $cond;
be2fb01f 3697 $this->_qill[$grouping][] = ts('Showing only Contacts starting with: \'%1\'', [1 => $name]);
6a488035
TO
3698 }
3699
3700 /**
c037736a 3701 * Where / qill clause for including contact ids.
6a488035 3702 */
00be9182 3703 public function includeContactIDs() {
6a488035
TO
3704 if (!$this->_includeContactIds || empty($this->_params)) {
3705 return;
3706 }
3707
be2fb01f 3708 $contactIds = [];
6a488035
TO
3709 foreach ($this->_params as $id => $values) {
3710 if (substr($values[0], 0, CRM_Core_Form::CB_PREFIX_LEN) == CRM_Core_Form::CB_PREFIX) {
3711 $contactIds[] = substr($values[0], CRM_Core_Form::CB_PREFIX_LEN);
3712 }
3713 }
b1128d0b 3714 CRM_Utils_Type::validateAll($contactIds, 'Positive');
6a488035 3715 if (!empty($contactIds)) {
95325bb8 3716 $this->_where[0][] = ' ( contact_a.id IN (' . implode(',', $contactIds) . " ) ) ";
6a488035
TO
3717 }
3718 }
3719
3720 /**
c037736a 3721 * Where / qill clause for postal code.
77b97be7 3722 *
c037736a 3723 * @param array $values
b832662c 3724 *
3725 * @throws \CRM_Core_Exception
6a488035 3726 */
00be9182 3727 public function postalCode(&$values) {
6a488035 3728 // skip if the fields dont have anything to do with postal_code
a7488080 3729 if (empty($this->_fields['postal_code'])) {
6a488035
TO
3730 return;
3731 }
3732
3733 list($name, $op, $value, $grouping, $wildcard) = $values;
3734
3735 // Handle numeric postal code range searches properly by casting the column as numeric
3736 if (is_numeric($value)) {
abc78dd4 3737 $field = "IF (civicrm_address.postal_code REGEXP '^[0-9]{1,10}$', CAST(civicrm_address.postal_code AS UNSIGNED), 0)";
6a488035
TO
3738 $val = CRM_Utils_Type::escape($value, 'Integer');
3739 }
3740 else {
3741 $field = 'civicrm_address.postal_code';
715277e7 3742 // Per CRM-17060 we might be looking at an 'IN' syntax so don't case arrays to string.
3743 if (!is_array($value)) {
3744 $val = CRM_Utils_Type::escape($value, 'String');
3745 }
3746 else {
3747 // Do we need to escape values here? I would expect buildClause does.
3748 $val = $value;
3749 }
6a488035
TO
3750 }
3751
3752 $this->_tables['civicrm_address'] = $this->_whereTables['civicrm_address'] = 1;
3753
3754 if ($name == 'postal_code') {
3755 $this->_where[$grouping][] = self::buildClause($field, $op, $val, 'String');
3756 $this->_qill[$grouping][] = ts('Postal code') . " {$op} {$value}";
3757 }
3758 elseif ($name == 'postal_code_low') {
3759 $this->_where[$grouping][] = " ( $field >= '$val' ) ";
be2fb01f 3760 $this->_qill[$grouping][] = ts('Postal code greater than or equal to \'%1\'', [1 => $value]);
6a488035
TO
3761 }
3762 elseif ($name == 'postal_code_high') {
3763 $this->_where[$grouping][] = " ( $field <= '$val' ) ";
be2fb01f 3764 $this->_qill[$grouping][] = ts('Postal code less than or equal to \'%1\'', [1 => $value]);
6a488035
TO
3765 }
3766 }
3767
3768 /**
c037736a 3769 * Where / qill clause for location type.
6a488035 3770 *
c037736a 3771 * @param array $values
77b97be7
EM
3772 * @param null $status
3773 *
c037736a 3774 * @return string
6a488035 3775 */
00be9182 3776 public function locationType(&$values, $status = NULL) {
6a488035
TO
3777 list($name, $op, $value, $grouping, $wildcard) = $values;
3778
3779 if (is_array($value)) {
d8a8bb0b 3780 $this->_where[$grouping][] = 'civicrm_address.location_type_id IN (' . implode(',', $value) . ')';
6a488035
TO
3781 $this->_tables['civicrm_address'] = 1;
3782 $this->_whereTables['civicrm_address'] = 1;
3783
b2b0530a 3784 $locationType = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Address', 'location_type_id');
be2fb01f 3785 $names = [];
d8a8bb0b 3786 foreach ($value as $id) {
6a488035
TO
3787 $names[] = $locationType[$id];
3788 }
3789
3790 $this->_primaryLocation = FALSE;
3791
3792 if (!$status) {
3793 $this->_qill[$grouping][] = ts('Location Type') . ' - ' . implode(' ' . ts('or') . ' ', $names);
3794 }
3795 else {
3796 return implode(' ' . ts('or') . ' ', $names);
3797 }
3798 }
3799 }
3800
86538308
EM
3801 /**
3802 * @param $values
3803 * @param bool $fromStateProvince
3804 *
59f4c9ee 3805 * @return array|NULL
b832662c 3806 * @throws \CRM_Core_Exception
86538308 3807 */
00be9182 3808 public function country(&$values, $fromStateProvince = TRUE) {
6a488035
TO
3809 list($name, $op, $value, $grouping, $wildcard) = $values;
3810
3811 if (!$fromStateProvince) {
3812 $stateValues = $this->getWhereValues('state_province', $grouping);
3813 if (!empty($stateValues)) {
3814 // return back to caller if there are state province values
3815 // since that handles this case
59f4c9ee 3816 return NULL;
6a488035
TO
3817 }
3818 }
3819
3820 $countryClause = $countryQill = NULL;
be2fb01f 3821 if (in_array($op, ['IS NULL', 'IS NOT NULL', 'IS EMPTY', 'IS NOT EMPTY']) || ($values && !empty($value))) {
d9ab802d
PJ
3822 $this->_tables['civicrm_address'] = 1;
3823 $this->_whereTables['civicrm_address'] = 1;
6a488035 3824
836f1f3f 3825 $countryClause = self::buildClause('civicrm_address.country_id', $op, $value, 'Positive');
3826 list($qillop, $qillVal) = CRM_Contact_BAO_Query::buildQillForFieldValue(NULL, 'country_id', $value, $op);
be2fb01f 3827 $countryQill = ts("%1 %2 %3", [1 => 'Country', 2 => $qillop, 3 => $qillVal]);
6a488035
TO
3828
3829 if (!$fromStateProvince) {
3830 $this->_where[$grouping][] = $countryClause;
3831 $this->_qill[$grouping][] = $countryQill;
3832 }
3833 }
3834
3835 if ($fromStateProvince) {
3836 if (!empty($countryClause)) {
be2fb01f 3837 return [
6a488035
TO
3838 $countryClause,
3839 " ...AND... " . $countryQill,
be2fb01f 3840 ];
6a488035
TO
3841 }
3842 else {
be2fb01f 3843 return [NULL, NULL];
6a488035
TO
3844 }
3845 }
3846 }
3847
3848 /**
c037736a 3849 * Where / qill clause for county (if present).
6a488035 3850 *
c037736a 3851 * @param array $values
77b97be7
EM
3852 * @param null $status
3853 *
c037736a 3854 * @return string
6a488035 3855 */
5c7dad85 3856 public function county(&$values, $status = NULL) {
6a488035
TO
3857 list($name, $op, $value, $grouping, $wildcard) = $values;
3858
5c7dad85 3859 if (!is_array($value)) {
6a488035 3860 // force the county to be an array
be2fb01f 3861 $value = [$value];
6a488035
TO
3862 }
3863
3864 // check if the values are ids OR names of the counties
3865 $inputFormat = 'id';
3866 foreach ($value as $v) {
3867 if (!is_numeric($v)) {
3868 $inputFormat = 'name';
3869 break;
3870 }
3871 }
be2fb01f 3872 $names = [];
d9ab802d
PJ
3873 if ($op == '=') {
3874 $op = 'IN';
3875 }
4c9b6178 3876 elseif ($op == '!=') {
d9ab802d
PJ
3877 $op = 'NOT IN';
3878 }
3879 else {
3880 // this converts IS (NOT)? EMPTY to IS (NOT)? NULL
3881 $op = str_replace('EMPTY', 'NULL', $op);
3882 }
3883
be2fb01f 3884 if (in_array($op, ['IS NULL', 'IS NOT NULL', 'IS EMPTY', 'IS NOT EMPTY'])) {
d9ab802d
PJ
3885 $clause = "civicrm_address.county_id $op";
3886 }
3887 elseif ($inputFormat == 'id') {
3888 $clause = 'civicrm_address.county_id IN (' . implode(',', $value) . ')';
6a488035
TO
3889
3890 $county = CRM_Core_PseudoConstant::county();
3891 foreach ($value as $id) {
9c1bc317 3892 $names[] = $county[$id] ?? NULL;
6a488035
TO
3893 }
3894 }
3895 else {
be2fb01f 3896 $inputClause = [];
d9ab802d 3897 $county = CRM_Core_PseudoConstant::county();
6a488035
TO
3898 foreach ($value as $name) {
3899 $name = trim($name);
d9ab802d 3900 $inputClause[] = CRM_Utils_Array::key($name, $county);
6a488035 3901 }
d9ab802d 3902 $clause = 'civicrm_address.county_id IN (' . implode(',', $inputClause) . ')';
6a488035
TO
3903 $names = $value;
3904 }
d9ab802d
PJ
3905 $this->_tables['civicrm_address'] = 1;
3906 $this->_whereTables['civicrm_address'] = 1;
6a488035
TO
3907
3908 $this->_where[$grouping][] = $clause;
d9ab802d 3909 if (!$status) {
6a488035 3910 $this->_qill[$grouping][] = ts('County') . ' - ' . implode(' ' . ts('or') . ' ', $names);
5c7dad85
TO
3911 }
3912 else {
6a488035
TO
3913 return implode(' ' . ts('or') . ' ', $names);
3914 }
3915 }
3916
3917 /**
c037736a 3918 * Where / qill clause for state/province AND country (if present).
6a488035 3919 *
c037736a 3920 * @param array $values
77b97be7
EM
3921 * @param null $status
3922 *
c037736a 3923 * @return string
b832662c 3924 * @throws \CRM_Core_Exception
6a488035 3925 */
00be9182 3926 public function stateProvince(&$values, $status = NULL) {
6a488035
TO
3927 list($name, $op, $value, $grouping, $wildcard) = $values;
3928
6bd09f41 3929 $stateClause = self::buildClause('civicrm_address.state_province_id', $op, $value, 'Positive');
d9ab802d
PJ
3930 $this->_tables['civicrm_address'] = 1;
3931 $this->_whereTables['civicrm_address'] = 1;
6a488035
TO
3932
3933 $countryValues = $this->getWhereValues('country', $grouping);
3934 list($countryClause, $countryQill) = $this->country($countryValues, TRUE);
6a488035
TO
3935 if ($countryClause) {
3936 $clause = "( $stateClause AND $countryClause )";
3937 }
3938 else {
3939 $clause = $stateClause;
3940 }
3941
3942 $this->_where[$grouping][] = $clause;
6bd09f41 3943 list($qillop, $qillVal) = self::buildQillForFieldValue('CRM_Core_DAO_Address', "state_province_id", $value, $op);
6a488035 3944 if (!$status) {
be2fb01f 3945 $this->_qill[$grouping][] = ts("State/Province %1 %2 %3", [1 => $qillop, 2 => $qillVal, 3 => $countryQill]);
6a488035
TO
3946 }
3947 else {
6bd09f41 3948 return implode(' ' . ts('or') . ' ', $qillVal) . $countryQill;
6a488035
TO
3949 }
3950 }
3951
3952 /**
c037736a 3953 * Where / qill clause for change log.
77b97be7 3954 *
c037736a 3955 * @param array $values
6a488035 3956 */
00be9182 3957 public function changeLog(&$values) {
6a488035
TO
3958 list($name, $op, $value, $grouping, $wildcard) = $values;
3959
3960 $targetName = $this->getWhereValues('changed_by', $grouping);
3961 if (!$targetName) {
3962 return;
3963 }
3964
3965 $name = trim($targetName[2]);
2fc64082 3966 $name = CRM_Core_DAO::escapeString($name);
6a488035
TO
3967 $name = $targetName[4] ? "%$name%" : $name;
3968 $this->_where[$grouping][] = "contact_b_log.sort_name LIKE '%$name%'";
3969 $this->_tables['civicrm_log'] = $this->_whereTables['civicrm_log'] = 1;
80b5c9f1 3970 $fieldTitle = ts('Altered By');
3971
96b84142 3972 list($qillop, $qillVal) = self::buildQillForFieldValue(NULL, 'changed_by', $name, 'LIKE');
b478616b 3973 $this->_qill[$grouping][] = ts("%1 %2 '%3'", [
96b84142
PN
3974 1 => $fieldTitle,
3975 2 => $qillop,
3976 3 => $qillVal,
3977 ]);
6a488035
TO
3978 }
3979
86538308
EM
3980 /**
3981 * @param $values
b832662c 3982 *
3983 * @throws \CRM_Core_Exception
86538308 3984 */
00be9182 3985 public function modifiedDates($values) {
6a488035 3986 $this->_useDistinct = TRUE;
5c692063 3987 CRM_Core_Error::deprecatedWarning('function should not be reachable');
9e9b8fdb 3988 // CRM-11281, default to added date if not set
228917cd 3989 $fieldTitle = ts('Added Date');
06103b23 3990 $fieldName = 'created_date';
6a488035
TO
3991 foreach (array_keys($this->_params) as $id) {
3992 if ($this->_params[$id][0] == 'log_date') {
228917cd
DL
3993 if ($this->_params[$id][2] == 2) {
3994 $fieldTitle = ts('Modified Date');
06103b23 3995 $fieldName = 'modified_date';
6a488035
TO
3996 }
3997 }
3998 }
3999
06103b23 4000 $this->dateQueryBuilder($values, 'contact_a', 'log_date', $fieldName, $fieldTitle);
4001
4002 self::$_openedPanes[ts('Change Log')] = TRUE;
6a488035
TO
4003 }
4004
86538308
EM
4005 /**
4006 * @param $values
e14c912f 4007 *
4008 * @throws \CRM_Core_Exception
86538308 4009 */
00be9182 4010 public function demographics(&$values) {
6a488035
TO
4011 list($name, $op, $value, $grouping, $wildcard) = $values;
4012
c4a7c967 4013 if (($name == 'age_low') || ($name == 'age_high')) {
4014 $this->ageRangeQueryBuilder($values,
4015 'contact_a', 'age', 'birth_date', ts('Age')
4016 );
4017 }
4018 elseif (($name == 'birth_date_low') || ($name == 'birth_date_high')) {
6a488035
TO
4019
4020 $this->dateQueryBuilder($values,
4021 'contact_a', 'birth_date', 'birth_date', ts('Birth Date')
4022 );
4023 }
4024 elseif (($name == 'deceased_date_low') || ($name == 'deceased_date_high')) {
4025
4026 $this->dateQueryBuilder($values,
4027 'contact_a', 'deceased_date', 'deceased_date', ts('Deceased Date')
4028 );
4029 }
4030
4031 self::$_openedPanes[ts('Demographics')] = TRUE;
4032 }
4033
86538308
EM
4034 /**
4035 * @param $values
4036 */
00be9182 4037 public function privacy(&$values) {
6d52bfe5 4038 list($name, $op, $value, $grouping) = $values;
e15bd6d1
SL
4039 if (is_array($value)) {
4040 if (in_array(key($value), CRM_Core_DAO::acceptedSQLOperators(), TRUE)) {
4041 $op = key($value);
4042 $value = $value[$op];
4043 }
6a488035 4044 }
9c1bc317 4045 $field = $this->_fields[$name] ?? NULL;
dca9c5bc
SL
4046 CRM_Utils_Type::validate($value, 'Integer');
4047 $this->_where[$grouping][] = "contact_a.{$name} $op $value";
9b183452 4048 $op = CRM_Utils_Array::value($op, CRM_Core_SelectValues::getSearchBuilderOperators(), $op);
6a488035
TO
4049 $title = $field ? $field['title'] : $name;
4050 $this->_qill[$grouping][] = "$title $op $value";
4051 }
4052
86538308
EM
4053 /**
4054 * @param $values
4055 */
00be9182 4056 public function privacyOptions($values) {
6a488035
TO
4057 list($name, $op, $value, $grouping, $wildcard) = $values;
4058
9fd71915
CW
4059 if (empty($value) || !is_array($value)) {
4060 return;
6a488035
TO
4061 }
4062
4063 // get the operator and toggle values
4064 $opValues = $this->getWhereValues('privacy_operator', $grouping);
4065 $operator = 'OR';
4066 if ($opValues &&
4067 strtolower($opValues[2] == 'AND')
4068 ) {
2fc64082 4069 // @todo this line is logially unreachable
6a488035
TO
4070 $operator = 'AND';
4071 }
4072
4073 $toggleValues = $this->getWhereValues('privacy_toggle', $grouping);
e10c7983 4074 $compareOP = '!';
6a488035
TO
4075 if ($toggleValues &&
4076 $toggleValues[2] == 2
4077 ) {
e10c7983 4078 $compareOP = '';
6a488035
TO
4079 }
4080
be2fb01f
CW
4081 $clauses = [];
4082 $qill = [];
6a488035 4083 foreach ($value as $dontCare => $pOption) {
e10c7983 4084 $clauses[] = " ( contact_a.{$pOption} = 1 ) ";
9c1bc317 4085 $field = $this->_fields[$pOption] ?? NULL;
6a488035 4086 $title = $field ? $field['title'] : $pOption;
e10c7983 4087 $qill[] = " $title = 1 ";
6a488035
TO
4088 }
4089
e10c7983
JL
4090 $this->_where[$grouping][] = $compareOP . '( ' . implode($operator, $clauses) . ' )';
4091 $this->_qill[$grouping][] = $compareOP . '( ' . implode($operator, $qill) . ' )';
6a488035
TO
4092 }
4093
86538308
EM
4094 /**
4095 * @param $values
b832662c 4096 *
4097 * @throws \CRM_Core_Exception
86538308 4098 */
00be9182 4099 public function preferredCommunication(&$values) {
6a488035
TO
4100 list($name, $op, $value, $grouping, $wildcard) = $values;
4101
c112a6f9 4102 if (!is_array($value)) {
be2fb01f 4103 $value = str_replace(['(', ')'], '', explode(",", $value));
6a488035 4104 }
7cc09daf 4105 elseif (in_array(key($value), CRM_Core_DAO::acceptedSQLOperators(), TRUE)) {
4106 $op = key($value);
4107 $value = $value[$op];
6a488035 4108 }
05d214de 4109 list($qillop, $qillVal) = CRM_Contact_BAO_Query::buildQillForFieldValue('CRM_Contact_DAO_Contact', $name, $value, $op);
6a488035 4110
05d214de 4111 if (self::caseImportant($op)) {
4112 $value = implode("[[:cntrl:]]|[[:cntrl:]]", (array) $value);
4113 $op = (strstr($op, '!') || strstr($op, 'NOT')) ? 'NOT RLIKE' : 'RLIKE';
4114 $value = "[[:cntrl:]]" . $value . "[[:cntrl:]]";
4b20f7df 4115 }
6a488035 4116
05d214de 4117 $this->_where[$grouping][] = self::buildClause("contact_a.preferred_communication_method", $op, $value);
be2fb01f 4118 $this->_qill[$grouping][] = ts('Preferred Communication Method %1 %2', [1 => $qillop, 2 => $qillVal]);
6a488035
TO
4119 }
4120
6a488035 4121 /**
c037736a 4122 * Where / qill clause for relationship.
77b97be7 4123 *
c037736a 4124 * @param array $values
6a488035 4125 */
00be9182 4126 public function relationship(&$values) {
6a488035 4127 list($name, $op, $value, $grouping, $wildcard) = $values;
5c7dad85
TO
4128 if ($this->_relationshipValuesAdded) {
4129 return;
ad682134 4130 }
6a488035 4131 // also get values array for relation_target_name
2fef460a 4132 // for relationship search we always do wildcard
b3342109 4133 $relationType = $this->getWhereValues('relation_type_id', $grouping);
6e83b317 4134 $description = $this->getWhereValues('relation_description', $grouping);
6a488035
TO
4135 $targetName = $this->getWhereValues('relation_target_name', $grouping);
4136 $relStatus = $this->getWhereValues('relation_status', $grouping);
4137 $targetGroup = $this->getWhereValues('relation_target_group', $grouping);
b9cb427a 4138
6a488035
TO
4139 $nameClause = $name = NULL;
4140 if ($targetName) {
4141 $name = trim($targetName[2]);
4142 if (substr($name, 0, 1) == '"' &&
4143 substr($name, -1, 1) == '"'
4144 ) {
4145 $name = substr($name, 1, -1);
dd2db5e5 4146 $name = CRM_Core_DAO::escapeString($name);
6a488035
TO
4147 $nameClause = "= '$name'";
4148 }
4149 else {
dd2db5e5 4150 $name = CRM_Core_DAO::escapeString($name);
6a488035
TO
4151 $nameClause = "LIKE '%{$name}%'";
4152 }
4153 }
4154
be2fb01f 4155 $relTypes = $relTypesIds = [];
5c7dad85 4156 if (!empty($relationType)) {
026242fc
SL
4157 $relationType[2] = (array) $relationType[2];
4158 foreach ($relationType[2] as $relType) {
4159 $rel = explode('_', $relType);
c0184a48 4160 self::$_relType = $rel[1];
be2fb01f
CW
4161 $params = ['id' => $rel[0]];
4162 $typeValues = [];
5ad36be5
SL
4163 $rTypeValue = CRM_Contact_BAO_RelationshipType::retrieve($params, $typeValues);
4164 if (!empty($rTypeValue)) {
dd2db5e5 4165 if ($rTypeValue->name_a_b == $rTypeValue->name_b_a) {
4166 // if we don't know which end of the relationship we are dealing with we'll create a temp table
4167 self::$_relType = 'reciprocal';
4168 }
5ad36be5
SL
4169 $relTypesIds[] = $rel[0];
4170 $relTypes[] = $relType;
4171 }
026242fc
SL
4172 }
4173 }
dd2db5e5 4174
7c96365b 4175 // if we are creating a temp table we build our own where for the relationship table
085e6226 4176 $relationshipTempTable = NULL;
72a2eeab 4177 if (self::$_relType == 'reciprocal') {
be2fb01f 4178 $where = [];
5b508244 4179 self::$_relationshipTempTable = $relationshipTempTable = CRM_Utils_SQL_TempTable::build()
804261ab 4180 ->createWithColumns("`contact_id` int(10) unsigned NOT NULL DEFAULT '0', `contact_id_alt` int(10) unsigned NOT NULL DEFAULT '0', id int unsigned, KEY `contact_id` (`contact_id`), KEY `contact_id_alt` (`contact_id_alt`)")
5b508244 4181 ->getName();
11a5aa5d 4182 if ($nameClause) {
7c96365b 4183 $where[$grouping][] = " sort_name $nameClause ";
4184 }
72a2eeab
AS
4185 $groupJoinTable = "civicrm_relationship";
4186 $groupJoinColumn = "contact_id_alt";
6a488035 4187 }
7c96365b 4188 else {
4189 $where = &$this->_where;
4190 if ($nameClause) {
4191 $where[$grouping][] = "( contact_b.sort_name $nameClause AND contact_b.id != contact_a.id )";
4192 }
72a2eeab
AS
4193 $groupJoinTable = "contact_b";
4194 $groupJoinColumn = "id";
7c96365b 4195 }
804261ab 4196 $allRelationshipType = CRM_Contact_BAO_Relationship::getContactRelationshipType(NULL, 'null', NULL, NULL, TRUE, 'label', FALSE);
6a488035 4197 if ($nameClause || !$targetGroup) {
5c7dad85 4198 if (!empty($relationType)) {
026242fc 4199 $relQill = '';
5ad36be5 4200 foreach ($relTypes as $rel) {
026242fc
SL
4201 if (!empty($relQill)) {
4202 $relQill .= ' OR ';
4203 }
4204 $relQill .= $allRelationshipType[$rel];
4205 }
4206 $this->_qill[$grouping][] = 'Relationship Type(s) ' . $relQill . " $name";
5c7dad85 4207 }
c47a2365 4208 elseif ($name) {
2b0c31bc
DG
4209 $this->_qill[$grouping][] = $name;
4210 }
6a488035
TO
4211 }
4212
6a488035
TO
4213 //check to see if the target contact is in specified group
4214 if ($targetGroup) {
4215 //add contacts from static groups
59f4c9ee 4216 $this->_tables['civicrm_relationship_group_contact'] = $this->_whereTables['civicrm_relationship_group_contact']
72a2eeab 4217 = " LEFT JOIN civicrm_group_contact civicrm_relationship_group_contact ON civicrm_relationship_group_contact.contact_id = {$groupJoinTable}.{$groupJoinColumn} AND civicrm_relationship_group_contact.status = 'Added'";
59f4c9ee 4218 $groupWhere[] = "( civicrm_relationship_group_contact.group_id IN (" .
5c7dad85 4219 implode(",", $targetGroup[2]) . ") ) ";
6a488035
TO
4220
4221 //add contacts from saved searches
72a2eeab 4222 $ssWhere = $this->addGroupContactCache($targetGroup[2], "civicrm_relationship_group_contact_cache", $groupJoinTable, $op, $groupJoinColumn);
6a488035
TO
4223
4224 //set the group where clause
4225 if ($ssWhere) {
4226 $groupWhere[] = "( " . $ssWhere . " )";
4227 }
4228 $this->_where[$grouping][] = "( " . implode(" OR ", $groupWhere) . " )";
4229
4230 //Get the names of the target groups for the qill
085e6226 4231 $groupNames = CRM_Core_PseudoConstant::group();
be2fb01f 4232 $qillNames = [];
6a488035
TO
4233 foreach ($targetGroup[2] as $groupId) {
4234 if (array_key_exists($groupId, $groupNames)) {
4235 $qillNames[] = $groupNames[$groupId];
4236 }
4237 }
5c7dad85 4238 if (!empty($relationType)) {
026242fc 4239 $relQill = '';
5ad36be5 4240 foreach ($relTypes as $rel) {
026242fc
SL
4241 if (!empty($relQill)) {
4242 $relQill .= ' OR ';
4243 }
72a2eeab 4244 $relQill .= CRM_Utils_Array::value($rel, $allRelationshipType);
026242fc
SL
4245 }
4246 $this->_qill[$grouping][] = 'Relationship Type(s) ' . $relQill . " ( " . implode(", ", $qillNames) . " )";
5c7dad85
TO
4247 }
4248 else {
2b0c31bc
DG
4249 $this->_qill[$grouping][] = implode(", ", $qillNames);
4250 }
6a488035
TO
4251 }
4252
6e83b317
CW
4253 // Description
4254 if (!empty($description[2]) && trim($description[2])) {
4255 $this->_qill[$grouping][] = ts('Relationship description - ' . $description[2]);
4256 $description = CRM_Core_DAO::escapeString(trim($description[2]));
4257 $where[$grouping][] = "civicrm_relationship.description LIKE '%{$description}%'";
4258 }
4259
12ba37a0
CW
4260 // Note we do not currently set mySql to handle timezones, so doing this the old-fashioned way
4261 $today = date('Ymd');
6a488035 4262 //check for active, inactive and all relation status
32c3b33f 4263 if (empty($relStatus[2])) {
7c96365b 4264 $where[$grouping][] = "(
6a488035 4265civicrm_relationship.is_active = 1 AND
12ba37a0
CW
4266( civicrm_relationship.end_date IS NULL OR civicrm_relationship.end_date >= {$today} ) AND
4267( civicrm_relationship.start_date IS NULL OR civicrm_relationship.start_date <= {$today} )
6a488035
TO
4268)";
4269 $this->_qill[$grouping][] = ts('Relationship - Active and Current');
4270 }
4271 elseif ($relStatus[2] == 1) {
7c96365b 4272 $where[$grouping][] = "(
6a488035 4273civicrm_relationship.is_active = 0 OR
12ba37a0
CW
4274civicrm_relationship.end_date < {$today} OR
4275civicrm_relationship.start_date > {$today}
6a488035
TO
4276)";
4277 $this->_qill[$grouping][] = ts('Relationship - Inactive or not Current');
4278 }
4279
d64e31ab 4280 $onlyDeleted = 0;
be2fb01f 4281 if (in_array(['deleted_contacts', '=', '1', '0', '0'], $this->_params)) {
d64e31ab 4282 $onlyDeleted = 1;
4283 }
4284 $where[$grouping][] = "(contact_b.is_deleted = {$onlyDeleted})";
4285
f871c3a9 4286 $this->addRelationshipPermissionClauses($grouping, $where);
7c96365b 4287 $this->addRelationshipDateClauses($grouping, $where);
eea5db81 4288 $this->addRelationshipActivePeriodClauses($grouping, $where);
026242fc 4289 if (!empty($relTypes)) {
5ad36be5 4290 $where[$grouping][] = 'civicrm_relationship.relationship_type_id IN (' . implode(',', $relTypesIds) . ')';
6a488035 4291 }
6a488035
TO
4292 $this->_tables['civicrm_relationship'] = $this->_whereTables['civicrm_relationship'] = 1;
4293 $this->_useDistinct = TRUE;
ad682134 4294 $this->_relationshipValuesAdded = TRUE;
7c96365b 4295 // it could be a or b, using an OR creates an unindexed join - better to create a temp table &
4296 // join on that,
2b0c31bc
DG
4297 if ($relationshipTempTable) {
4298 $whereClause = '';
5c7dad85 4299 if (!empty($where[$grouping])) {
2b0c31bc 4300 $whereClause = ' WHERE ' . implode(' AND ', $where[$grouping]);
792750a5 4301 $whereClause = str_replace('contact_b', 'c', $whereClause);
2b0c31bc 4302 }
7c96365b 4303 $sql = "
804261ab 4304 INSERT INTO {$relationshipTempTable} (contact_id, contact_id_alt, id)
72a2eeab 4305 (SELECT contact_id_b as contact_id, contact_id_a as contact_id_alt, civicrm_relationship.id
7c96365b 4306 FROM civicrm_relationship
4307 INNER JOIN civicrm_contact c ON civicrm_relationship.contact_id_a = c.id
4308 $whereClause )
4309 UNION
72a2eeab 4310 (SELECT contact_id_a as contact_id, contact_id_b as contact_id_alt, civicrm_relationship.id
7c96365b 4311 FROM civicrm_relationship
4312 INNER JOIN civicrm_contact c ON civicrm_relationship.contact_id_b = c.id
4313 $whereClause )
4314 ";
4315 CRM_Core_DAO::executeQuery($sql);
4316 }
6a488035 4317 }
5c7dad85 4318
9c9908e9 4319 /**
4320 * Add relationship permission criteria to where clause.
4321 *
4322 * @param string $grouping
4323 * @param array $where Array to add "where" criteria to, in case you are generating a temp table.
4324 * Not the main query.
4325 */
f871c3a9
AS
4326 public function addRelationshipPermissionClauses($grouping, &$where) {
4327 $relPermission = $this->getWhereValues('relation_permission', $grouping);
4328 if ($relPermission) {
f85f95ba
NM
4329 if (!is_array($relPermission[2])) {
4330 // this form value was scalar in previous versions of Civi
be2fb01f 4331 $relPermission[2] = [$relPermission[2]];
f85f95ba 4332 }
f871c3a9
AS
4333 $where[$grouping][] = "(civicrm_relationship.is_permission_a_b IN (" . implode(",", $relPermission[2]) . "))";
4334
4335 $allRelationshipPermissions = CRM_Contact_BAO_Relationship::buildOptions('is_permission_a_b');
9c9908e9 4336
4337 $relPermNames = array_intersect_key($allRelationshipPermissions, array_flip($relPermission[2]));
4338 $this->_qill[$grouping][] = ts('Permissioned Relationships') . ' - ' . implode(' OR ', $relPermNames);
f871c3a9
AS
4339 }
4340 }
4341
5c7dad85
TO
4342 /**
4343 * Add start & end date criteria in
4344 * @param string $grouping
4345 * @param array $where
4346 * = array to add where clauses to, in case you are generating a temp table.
4347 * not the main query.
4348 */
4349 public function addRelationshipDateClauses($grouping, &$where) {
41b8dd1d 4350 foreach (['start_date', 'end_date'] as $dateField) {
4351 $dateValueLow = $this->getWhereValues('relationship_' . $dateField . '_low', $grouping);
4352 $dateValueHigh = $this->getWhereValues('relationship_' . $dateField . '_high', $grouping);
5c7dad85 4353 if (!empty($dateValueLow)) {
ad682134 4354 $date = date('Ymd', strtotime($dateValueLow[2]));
7c96365b 4355 $where[$grouping][] = "civicrm_relationship.$dateField >= $date";
c8e625fc 4356 $this->_qill[$grouping][] = ($dateField == 'end_date' ? ts('Relationship Ended on or After') : ts('Relationship Recorded Start Date On or After')) . " " . CRM_Utils_Date::customFormat($date);
ad682134 4357 }
5c7dad85 4358 if (!empty($dateValueHigh)) {
ad682134 4359 $date = date('Ymd', strtotime($dateValueHigh[2]));
7c96365b 4360 $where[$grouping][] = "civicrm_relationship.$dateField <= $date";
c8e625fc 4361 $this->_qill[$grouping][] = ($dateField == 'end_date' ? ts('Relationship Ended on or Before') : ts('Relationship Recorded Start Date On or Before')) . " " . CRM_Utils_Date::customFormat($date);
ad682134 4362 }
4363 }
4364 }
77b97be7 4365
eea5db81 4366 /**
4367 * Add start & end active period criteria in
4368 * @param string $grouping
4369 * @param array $where
4370 * = array to add where clauses to, in case you are generating a temp table.
4371 * not the main query.
4372 */
4373 public function addRelationshipActivePeriodClauses($grouping, &$where) {
be2fb01f 4374 $dateValues = [];
eea5db81 4375 $dateField = 'active_period_date';
4376
4377 $dateValueLow = $this->getWhereValues('relation_active_period_date_low', $grouping);
4378 $dateValueHigh = $this->getWhereValues('relation_active_period_date_high', $grouping);
02633eb0 4379 $dateValueLowFormated = $dateValueHighFormated = NULL;
eea5db81 4380 if (!empty($dateValueLow) && !empty($dateValueHigh)) {
4381 $dateValueLowFormated = date('Ymd', strtotime($dateValueLow[2]));
4382 $dateValueHighFormated = date('Ymd', strtotime($dateValueHigh[2]));
eea5db81 4383 $this->_qill[$grouping][] = (ts('Relationship was active between')) . " " . CRM_Utils_Date::customFormat($dateValueLowFormated) . " and " . CRM_Utils_Date::customFormat($dateValueHighFormated);
4384 }
4385 elseif (!empty($dateValueLow)) {
4386 $dateValueLowFormated = date('Ymd', strtotime($dateValueLow[2]));
eea5db81 4387 $this->_qill[$grouping][] = (ts('Relationship was active after')) . " " . CRM_Utils_Date::customFormat($dateValueLowFormated);
4388 }
4389 elseif (!empty($dateValueHigh)) {
4390 $dateValueHighFormated = date('Ymd', strtotime($dateValueHigh[2]));
eea5db81 4391 $this->_qill[$grouping][] = (ts('Relationship was active before')) . " " . CRM_Utils_Date::customFormat($dateValueHighFormated);
4392 }
02633eb0
FBB
4393
4394 if ($activePeriodClauses = self::getRelationshipActivePeriodClauses($dateValueLowFormated, $dateValueHighFormated, TRUE)) {
4395 $where[$grouping][] = $activePeriodClauses;
4396 }
eea5db81 4397 }
4398
4399 /**
4400 * Get start & end active period criteria
b832662c 4401 *
4402 * @param $from
4403 * @param $to
4404 * @param $forceTableName
4405 *
4406 * @return string
eea5db81 4407 */
4408 public static function getRelationshipActivePeriodClauses($from, $to, $forceTableName) {
4409 $tableName = $forceTableName ? 'civicrm_relationship.' : '';
4410 if (!is_null($from) && !is_null($to)) {
4411 return '(((' . $tableName . 'start_date >= ' . $from . ' AND ' . $tableName . 'start_date <= ' . $to . ') OR
4412 (' . $tableName . 'end_date >= ' . $from . ' AND ' . $tableName . 'end_date <= ' . $to . ') OR
4413 (' . $tableName . 'start_date <= ' . $from . ' AND ' . $tableName . 'end_date >= ' . $to . ' )) OR
4414 (' . $tableName . 'start_date IS NULL AND ' . $tableName . 'end_date IS NULL) OR
4415 (' . $tableName . 'start_date IS NULL AND ' . $tableName . 'end_date >= ' . $from . ') OR
4416 (' . $tableName . 'end_date IS NULL AND ' . $tableName . 'start_date <= ' . $to . '))';
4417 }
4418 elseif (!is_null($from)) {
4419 return '((' . $tableName . 'start_date >= ' . $from . ') OR
4420 (' . $tableName . 'start_date IS NULL AND ' . $tableName . 'end_date IS NULL) OR
4421 (' . $tableName . 'start_date IS NULL AND ' . $tableName . 'end_date >= ' . $from . '))';
4422 }
4423 elseif (!is_null($to)) {
4424 return '((' . $tableName . 'start_date <= ' . $to . ') OR
4425 (' . $tableName . 'start_date IS NULL AND ' . $tableName . 'end_date IS NULL) OR
4426 (' . $tableName . 'end_date IS NULL AND ' . $tableName . 'start_date <= ' . $to . '))';
4427 }
4428 }
4429
6a488035 4430 /**
fe482240 4431 * Default set of return properties.
6a488035 4432 *
77b97be7
EM
4433 * @param int $mode
4434 *
a6c01b45
CW
4435 * @return array
4436 * derault return properties
6a488035 4437 */
00be9182 4438 public static function &defaultReturnProperties($mode = 1) {
6a488035 4439 if (!isset(self::$_defaultReturnProperties)) {
be2fb01f 4440 self::$_defaultReturnProperties = [];
6a488035
TO
4441 }
4442
4443 if (!isset(self::$_defaultReturnProperties[$mode])) {
4444 // add activity return properties
4445 if ($mode & CRM_Contact_BAO_Query::MODE_ACTIVITY) {
4446 self::$_defaultReturnProperties[$mode] = CRM_Activity_BAO_Query::defaultReturnProperties($mode, FALSE);
4447 }
4448 else {
4449 self::$_defaultReturnProperties[$mode] = CRM_Core_Component::defaultReturnProperties($mode, FALSE);
4450 }
4451
4452 if (empty(self::$_defaultReturnProperties[$mode])) {
be2fb01f 4453 self::$_defaultReturnProperties[$mode] = [
6a488035
TO
4454 'image_URL' => 1,
4455 'legal_identifier' => 1,
4456 'external_identifier' => 1,
4457 'contact_type' => 1,
4458 'contact_sub_type' => 1,
4459 'sort_name' => 1,
4460 'display_name' => 1,
4461 'preferred_mail_format' => 1,
4462 'nick_name' => 1,
4463 'first_name' => 1,
4464 'middle_name' => 1,
4465 'last_name' => 1,
04ffef8d
CW
4466 'prefix_id' => 1,
4467 'suffix_id' => 1,
e171748b 4468 'formal_title' => 1,
aa62b355 4469 'communication_style_id' => 1,
6a488035 4470 'birth_date' => 1,
04ffef8d 4471 'gender_id' => 1,
6a488035
TO
4472 'street_address' => 1,
4473 'supplemental_address_1' => 1,
4474 'supplemental_address_2' => 1,
207f62c6 4475 'supplemental_address_3' => 1,
6a488035
TO
4476 'city' => 1,
4477 'postal_code' => 1,
4478 'postal_code_suffix' => 1,
4479 'state_province' => 1,
4480 'country' => 1,
4481 'world_region' => 1,
4482 'geo_code_1' => 1,
4483 'geo_code_2' => 1,
4484 'email' => 1,
4485 'on_hold' => 1,
4486 'phone' => 1,
4487 'im' => 1,
4488 'household_name' => 1,
4489 'organization_name' => 1,
4490 'deceased_date' => 1,
4491 'is_deceased' => 1,
4492 'job_title' => 1,
4493 'legal_name' => 1,
4494 'sic_code' => 1,
4495 'current_employer' => 1,
4496 // FIXME: should we use defaultHierReturnProperties() for the below?
4497 'do_not_email' => 1,
4498 'do_not_mail' => 1,
4499 'do_not_sms' => 1,
4500 'do_not_phone' => 1,
4501 'do_not_trade' => 1,
4502 'is_opt_out' => 1,
4503 'contact_is_deleted' => 1,
b725488f
CW
4504 'preferred_communication_method' => 1,
4505 'preferred_language' => 1,
be2fb01f 4506 ];
6a488035
TO
4507 }
4508 }
4509 return self::$_defaultReturnProperties[$mode];
4510 }
4511
4512 /**
fe482240 4513 * Get primary condition for a sql clause.
6a488035
TO
4514 *
4515 * @param int $value
4516 *
fffe9ee1 4517 * @return string|NULL
6a488035 4518 */
00be9182 4519 public static function getPrimaryCondition($value) {
6a488035
TO
4520 if (is_numeric($value)) {
4521 $value = (int ) $value;
4522 return ($value == 1) ? 'is_primary = 1' : 'is_primary = 0';
4523 }
4524 return NULL;
4525 }
4526
4527 /**
fe482240 4528 * Wrapper for a simple search query.
6a488035
TO
4529 *
4530 * @param array $params
4531 * @param array $returnProperties
4e6072d5 4532 * @param bool $count
6a488035 4533 *
4e6072d5 4534 * @return string
b832662c 4535 * @throws \CRM_Core_Exception
6a488035 4536 */
00be9182 4537 public static function getQuery($params = NULL, $returnProperties = NULL, $count = FALSE) {
6a488035
TO
4538 $query = new CRM_Contact_BAO_Query($params, $returnProperties);
4539 list($select, $from, $where, $having) = $query->query();
3875e6b6 4540 $groupBy = ($query->_useGroupBy) ? 'GROUP BY contact_a.id' : '';
6a488035 4541
c9c5c58d
AS
4542 $query = "$select $from $where $groupBy $having";
4543 return $query;
6a488035
TO
4544 }
4545
4546 /**
4547 * These are stub comments as this function needs more explanation - particularly in terms of how it
4548 * relates to $this->searchQuery and why it replicates rather than calles $this->searchQuery.
4549 *
4550 * This function was originally written as a wrapper for the api query but is called from multiple places
4551 * in the core code directly so the name is misleading. This function does not use the searchQuery function
4552 * but it is unclear as to whehter that is historical or there is a reason
4553 * CRM-11290 led to the permissioning action being extracted from searchQuery & shared with this function
4554 *
837c4660
E
4555 * @param array $params
4556 * @param array $returnProperties
4557 * @param null $fields
6a488035 4558 * @param string $sort
837c4660
E
4559 * @param int $offset
4560 * @param int $row_count
77c5b619
TO
4561 * @param bool $smartGroupCache
4562 * ?? update smart group cache?.
4563 * @param bool $count
4564 * Return count obnly.
4565 * @param bool $skipPermissions
4566 * Should permissions be ignored or should the logged in user's permissions be applied.
9ae25b56 4567 * @param int $mode
4568 * This basically correlates to the component.
8f165fa5 4569 * @param string $apiEntity
4570 * The api entity being called.
4571 * This sort-of duplicates $mode in a confusing way. Probably not by design.
837c4660 4572 *
0606198b 4573 * @param bool|null $primaryLocationOnly
b832662c 4574 *
b725488f 4575 * @return array
b832662c 4576 * @throws \CRM_Core_Exception
6a488035 4577 */
59f4c9ee 4578 public static function apiQuery(
6a488035
TO
4579 $params = NULL,
4580 $returnProperties = NULL,
4581 $fields = NULL,
4582 $sort = NULL,
4583 $offset = 0,
4584 $row_count = 25,
4585 $smartGroupCache = TRUE,
4586 $count = FALSE,
9ae25b56 4587 $skipPermissions = TRUE,
3123273f 4588 $mode = CRM_Contact_BAO_Query::MODE_CONTACTS,
0606198b 4589 $apiEntity = NULL,
4590 $primaryLocationOnly = NULL
6a488035
TO
4591 ) {
4592
4593 $query = new CRM_Contact_BAO_Query(
4594 $params, $returnProperties,
9ae25b56 4595 NULL, TRUE, FALSE, $mode,
6a488035 4596 $skipPermissions,
66670e4d 4597 TRUE, $smartGroupCache,
4598 NULL, 'AND',
0606198b 4599 $apiEntity, $primaryLocationOnly
6a488035
TO
4600 );
4601
5c7dad85
TO
4602 //this should add a check for view deleted if permissions are enabled
4603 if ($skipPermissions) {
4604 $query->_skipDeleteClause = TRUE;
4605 }
6a488035 4606 $query->generatePermissionClause(FALSE, $count);
d9ab802d
PJ
4607
4608 // note : this modifies _fromClause and _simpleFromClause
4609 $query->includePseudoFieldsJoin($sort);
4610
6a488035
TO
4611 list($select, $from, $where, $having) = $query->query($count);
4612
5c7dad85 4613 if (!empty($query->_permissionWhereClause)) {
21c6be28
SL
4614 if (!empty($query->_permissionFromClause) && !stripos($from, 'aclContactCache')) {
4615 $from .= " $query->_permissionFromClause";
4616 }
6a488035
TO
4617 if (empty($where)) {
4618 $where = "WHERE $query->_permissionWhereClause";
4619 }
4620 else {
4621 $where = "$where AND $query->_permissionWhereClause";
4622 }
4623 }
4624
4625 $sql = "$select $from $where $having";
4626
783144b0 4627 // add group by only when API action is not getcount
4628 // otherwise query fetches incorrect count
4629 if ($query->_useGroupBy && !$count) {
e5cceea5 4630 $sql .= self::getGroupByFromSelectColumns($query->_select, 'contact_a.id');
6a488035
TO
4631 }
4632 if (!empty($sort)) {
bd9a3dd5 4633 $sort = CRM_Utils_Type::escape($sort, 'String');
6a488035
TO
4634 $sql .= " ORDER BY $sort ";
4635 }
4636 if ($row_count > 0 && $offset >= 0) {
bf00d1b6 4637 $offset = CRM_Utils_Type::escape($offset, 'Int');
9ae25b56 4638 $row_count = CRM_Utils_Type::escape($row_count, 'Int');
6a488035
TO
4639 $sql .= " LIMIT $offset, $row_count ";
4640 }
4641
4642 $dao = CRM_Core_DAO::executeQuery($sql);
4643
9ae25b56 4644 // @todo derive this from the component class rather than hard-code two options.
4645 $entityIDField = ($mode == CRM_Contact_BAO_Query::MODE_CONTRIBUTE) ? 'contribution_id' : 'contact_id';
4646
be2fb01f 4647 $values = [];
6a488035
TO
4648 while ($dao->fetch()) {
4649 if ($count) {
4650 $noRows = $dao->rowCount;
be2fb01f 4651 return [$noRows, NULL];
6a488035 4652 }
d9ab802d 4653 $val = $query->store($dao);
86ab13b7 4654 $convertedVals = $query->convertToPseudoNames($dao, TRUE, TRUE);
d9ab802d
PJ
4655
4656 if (!empty($convertedVals)) {
e3571aca 4657 $val = array_replace_recursive($val, $convertedVals);
d9ab802d 4658 }
9ae25b56 4659 $values[$dao->$entityIDField] = $val;
6a488035 4660 }
6cba576f 4661 return [$values];
6a488035
TO
4662 }
4663
bb05da0c 4664 /**
4665 * Get the actual custom field name by stripping off the appended string.
4666 *
4667 * The string could be _relative, _from, or _to
4668 *
4669 * @todo use metadata rather than convention to do this.
4670 *
4671 * @param string $parameterName
4672 * The name of the parameter submitted to the form.
4673 * e.g
4674 * custom_3_relative
4675 * custom_3_from
4676 *
4677 * @return string
4678 */
4679 public static function getCustomFieldName($parameterName) {
4680 if (substr($parameterName, -5, 5) == '_from') {
4681 return substr($parameterName, 0, strpos($parameterName, '_from'));
4682 }
4683 if (substr($parameterName, -9, 9) == '_relative') {
4684 return substr($parameterName, 0, strpos($parameterName, '_relative'));
4685 }
4686 if (substr($parameterName, -3, 3) == '_to') {
4687 return substr($parameterName, 0, strpos($parameterName, '_to'));
4688 }
4689 }
4690
4691 /**
4c2fe77b 4692 * Convert submitted values for relative custom fields to query object format.
bb05da0c 4693 *
4694 * The query will support the sqlOperator format so convert to that format.
4695 *
4696 * @param array $formValues
4697 * Submitted values.
4698 * @param array $params
4699 * Converted parameters for the query object.
4700 * @param string $values
4701 * Submitted value.
4702 * @param string $fieldName
4703 * Submitted field name. (Matches form field not DB field.)
4704 */
4c2fe77b 4705 protected static function convertCustomRelativeFields(&$formValues, &$params, $values, $fieldName) {
bb05da0c 4706 if (empty($values)) {
4707 // e.g we might have relative set & from & to empty. The form flow is a bit funky &
4708 // this function gets called again after they fields have been converted which can get ugly.
4709 return;
4710 }
4711 $customFieldName = self::getCustomFieldName($fieldName);
4712
4713 if (substr($fieldName, -9, 9) == '_relative') {
4714 list($from, $to) = CRM_Utils_Date::getFromTo($values, NULL, NULL);
4715 }
4716 else {
f3acfdd9 4717 if ($fieldName == $customFieldName . '_to' && !empty($formValues[$customFieldName . '_from'])) {
bb05da0c 4718 // Both to & from are set. We only need to acton one, choosing from.
4719 return;
4720 }
4721
9c1bc317
CW
4722 $from = $formValues[$customFieldName . '_from'] ?? NULL;
4723 $to = $formValues[$customFieldName . '_to'] ?? NULL;
4c2fe77b 4724
2fe91f9d 4725 if (self::isCustomDateField($customFieldName)) {
4c2fe77b 4726 list($from, $to) = CRM_Utils_Date::getFromTo(NULL, $from, $to);
4727 }
bb05da0c 4728 }
4729
4730 if ($from) {
4731 if ($to) {
be2fb01f 4732 $relativeFunction = ['BETWEEN' => [$from, $to]];
bb05da0c 4733 }
4734 else {
be2fb01f 4735 $relativeFunction = ['>=' => $from];
bb05da0c 4736 }
4737 }
4738 else {
be2fb01f 4739 $relativeFunction = ['<=' => $to];
bb05da0c 4740 }
be2fb01f 4741 $params[] = [
bb05da0c 4742 $customFieldName,
4743 '=',
4744 $relativeFunction,
4745 0,
4746 0,
be2fb01f 4747 ];
bb05da0c 4748 }
4749
2fe91f9d 4750 /**
4751 * Are we dealing with custom field of type date.
4752 *
4753 * @param $fieldName
4754 *
4755 * @return bool
b832662c 4756 * @throws \CiviCRM_API3_Exception
2fe91f9d 4757 */
4758 public static function isCustomDateField($fieldName) {
4759 if (($customFieldID = CRM_Core_BAO_CustomField::getKeyID($fieldName)) == FALSE) {
4760 return FALSE;
4761 }
6d8d4c91
SL
4762 try {
4763 $customFieldDataType = civicrm_api3('CustomField', 'getvalue', ['id' => $customFieldID, 'return' => 'data_type']);
4764 if ('Date' == $customFieldDataType) {
4765 return TRUE;
4766 }
4767 }
4768 catch (CiviCRM_API3_Exception $e) {
2fe91f9d 4769 }
4770 return FALSE;
4771 }
4772
df60621b 4773 /**
4774 * Has this field already been reformatting to Query object syntax.
4775 *
4776 * The form layer passed formValues to this function in preProcess & postProcess. Reason unknown. This seems
4777 * to come with associated double queries & is possibly damaging performance.
4778 *
4779 * However, here we add a tested function to ensure convertFormValues identifies pre-processed fields & returns
4780 * them as they are.
4781 *
4782 * @param mixed $values
4783 * Value in formValues for the field.
4784 *
4785 * @return bool;
4786 */
06d67d53 4787 public static function isAlreadyProcessedForQueryFormat($values) {
df60621b 4788 if (!is_array($values)) {
4789 return FALSE;
4790 }
4791 if (($operator = CRM_Utils_Array::value(1, $values)) == FALSE) {
4792 return FALSE;
4793 }
4794 return in_array($operator, CRM_Core_DAO::acceptedSQLOperators());
4795 }
4796
20306bb8 4797 /**
4798 * If the state and country are passed remove state.
4799 *
4800 * Country is implicit from the state, but including both results in
4801 * a poor query as there is no combined index on state AND country.
4802 *
0e480632 4803 * @see https://issues.civicrm.org/jira/browse/CRM-18125
20306bb8 4804 *
4805 * @param array $formValues
4806 */
4807 public static function filterCountryFromValuesIfStateExists(&$formValues) {
e4001cf0 4808 if (!empty($formValues['country']) && !empty($formValues['state_province'])) {
4809 // The use of array map sanitises the data by ensuring we are dealing with integers.
4810 $states = implode(', ', array_map('intval', $formValues['state_province']));
4811 $countryList = CRM_Core_DAO::singleValueQuery(
4812 "SELECT GROUP_CONCAT(country_id) FROM civicrm_state_province WHERE id IN ($states)"
4813 );
4814 if ($countryList == $formValues['country']) {
4815 unset($formValues['country']);
20306bb8 4816 }
4817 }
4818 }
4819
36d2f4d5 4820 /**
4821 * For some special cases, grouping by subset of select fields becomes mandatory.
4822 * Hence, full_group_by mode is handled by appending any_value
4823 * keyword to select fields not present in groupBy
4824 *
4825 * @param array $selectClauses
4826 * @param array $groupBy - Columns already included in GROUP By clause.
0ad26017 4827 * @param string $aggregateFunction
36d2f4d5 4828 *
4829 * @return string
4830 */
0ad26017 4831 public static function appendAnyValueToSelect($selectClauses, $groupBy, $aggregateFunction = 'ANY_VALUE') {
b07c960a 4832 if (!CRM_Utils_SQL::disableFullGroupByMode()) {
36d2f4d5 4833 $groupBy = array_map('trim', (array) $groupBy);
f8a02ee1 4834 $aggregateFunctions = '/(ROUND|AVG|COUNT|GROUP_CONCAT|SUM|MAX|MIN|IF)[[:blank:]]*\(/i';
36d2f4d5 4835 foreach ($selectClauses as $key => &$val) {
4836 list($selectColumn, $alias) = array_pad(preg_split('/ as /i', $val), 2, NULL);
4837 // append ANY_VALUE() keyword
4838 if (!in_array($selectColumn, $groupBy) && preg_match($aggregateFunctions, trim($selectColumn)) !== 1) {
0ad26017 4839 $val = ($aggregateFunction == 'GROUP_CONCAT') ?
4840 str_replace($selectColumn, "$aggregateFunction(DISTINCT {$selectColumn})", $val) :
4841 str_replace($selectColumn, "$aggregateFunction({$selectColumn})", $val);
36d2f4d5 4842 }
4843 }
4844 }
4845
4846 return "SELECT " . implode(', ', $selectClauses) . " ";
4847 }
4848
b07c960a 4849 /**
4850 * For some special cases, where if non-aggregate ORDER BY columns are not present in GROUP BY
4851 * on full_group_by mode, then append the those missing columns to GROUP BY clause
4852 * keyword to select fields not present in groupBy
4853 *
e5167553 4854 * @param string $groupBy - GROUP BY clause where missing ORDER BY columns will be appended if not present
b07c960a 4855 * @param array $orderBys - ORDER BY sub-clauses
4856 *
4857 */
4858 public static function getGroupByFromOrderBy(&$groupBy, $orderBys) {
0ad26017 4859 if (!CRM_Utils_SQL::disableFullGroupByMode()) {
b07c960a 4860 foreach ($orderBys as $orderBy) {
69078420
SL
4861 // remove sort syntax from ORDER BY clauses if present
4862 $orderBy = str_ireplace([' DESC', ' ASC', '`'], '', $orderBy);
b07c960a 4863 // if ORDER BY column is not present in GROUP BY then append it to end
e5167553 4864 if (preg_match('/(MAX|MIN)\(/i', trim($orderBy)) !== 1 && !strstr($groupBy, $orderBy)) {
4865 $groupBy .= ", {$orderBy}";
b07c960a 4866 }
4867 }
4868 }
4869 }
4870
e5cceea5 4871 /**
4872 * Include Select columns in groupBy clause.
4873 *
dc852c7b 4874 * @param array $selectClauses
e5cceea5 4875 * @param array $groupBy - Columns already included in GROUP By clause.
4876 *
4877 * @return string
4878 */
4879 public static function getGroupByFromSelectColumns($selectClauses, $groupBy = NULL) {
b708c08d 4880 $groupBy = (array) $groupBy;
3636b520 4881 $mysqlVersion = CRM_Core_DAO::singleValueQuery('SELECT VERSION()');
bad98dd5 4882 $sqlMode = CRM_Core_DAO::singleValueQuery('SELECT @@sql_mode');
b708c08d 4883
4884 //return if ONLY_FULL_GROUP_BY is not enabled.
712e729f 4885 if (CRM_Utils_SQL::supportsFullGroupBy() && !empty($sqlMode) && in_array('ONLY_FULL_GROUP_BY', explode(',', $sqlMode))) {
f8a02ee1 4886 $regexToExclude = '/(ROUND|AVG|COUNT|GROUP_CONCAT|SUM|MAX|MIN|IF)[[:blank:]]*\(/i';
dc852c7b 4887 foreach ($selectClauses as $key => $val) {
4888 $aliasArray = preg_split('/ as /i', $val);
4889 // if more than 1 alias we need to split by ','.
4890 if (count($aliasArray) > 2) {
4891 $aliasArray = preg_split('/,/', $val);
4892 foreach ($aliasArray as $key => $value) {
4893 $alias = current(preg_split('/ as /i', $value));
4894 if (!in_array($alias, $groupBy) && preg_match($regexToExclude, trim($alias)) !== 1) {
4895 $groupBy[] = $alias;
4896 }
e5cceea5 4897 }
4898 }
dc852c7b 4899 else {
4900 list($selectColumn, $alias) = array_pad($aliasArray, 2, NULL);
4901 $dateRegex = '/^(DATE_FORMAT|DATE_ADD|CASE)/i';
4902 $tableName = current(explode('.', $selectColumn));
4903 $primaryKey = "{$tableName}.id";
4904 // exclude columns which are already included in groupBy and aggregate functions from select
4905 // CRM-18439 - Also exclude the columns which are functionally dependent on columns in $groupBy (MySQL 5.7+)
4906 if (!in_array($selectColumn, $groupBy) && !in_array($primaryKey, $groupBy) && preg_match($regexToExclude, trim($selectColumn)) !== 1) {
4907 if (!empty($alias) && preg_match($dateRegex, trim($selectColumn))) {
4908 $groupBy[] = $alias;
4909 }
4910 else {
4911 $groupBy[] = $selectColumn;
4912 }
e5cceea5 4913 }
4914 }
4915 }
4916 }
4917
b708c08d 4918 if (!empty($groupBy)) {
4919 return " GROUP BY " . implode(', ', $groupBy);
e5cceea5 4920 }
4921 return '';
4922 }
4923
6a488035 4924 /**
fe482240 4925 * Create and query the db for an contact search.
6a488035 4926 *
77c5b619
TO
4927 * @param int $offset
4928 * The offset for the query.
4929 * @param int $rowCount
4930 * The number of rows to return.
db54ba06 4931 * @param string|CRM_Utils_Sort $sort
77c5b619
TO
4932 * The order by string.
4933 * @param bool $count
4934 * Is this a count only query ?.
4935 * @param bool $includeContactIds
4936 * Should we include contact ids?.
4937 * @param bool $sortByChar
4938 * If true returns the distinct array of first characters for search results.
4939 * @param bool $groupContacts
4940 * If true, return only the contact ids.
4941 * @param bool $returnQuery
4942 * Should we return the query as a string.
4943 * @param string $additionalWhereClause
4944 * If the caller wants to further restrict the search (used for components).
77b97be7 4945 * @param null $sortOrder
77c5b619
TO
4946 * @param string $additionalFromClause
4947 * Should be clause with proper joins, effective to reduce where clause load.
77b97be7
EM
4948 *
4949 * @param bool $skipOrderAndLimit
6a488035 4950 *
55eb4e22 4951 * @return CRM_Core_DAO
6a488035 4952 */
59f4c9ee 4953 public function searchQuery(
6a488035
TO
4954 $offset = 0, $rowCount = 0, $sort = NULL,
4955 $count = FALSE, $includeContactIds = FALSE,
4956 $sortByChar = FALSE, $groupContacts = FALSE,
4957 $returnQuery = FALSE,
4958 $additionalWhereClause = NULL, $sortOrder = NULL,
4959 $additionalFromClause = NULL, $skipOrderAndLimit = FALSE
4960 ) {
4961
89d7bb76 4962 $query = $this->getSearchSQL($offset, $rowCount, $sort, $count, $includeContactIds, $sortByChar, $groupContacts, $additionalWhereClause, $sortOrder, $additionalFromClause, $skipOrderAndLimit);
6a488035
TO
4963
4964 if ($returnQuery) {
4965 return $query;
4966 }
6a488035
TO
4967 if ($count) {
4968 return CRM_Core_DAO::singleValueQuery($query);
4969 }
4970
6a488035 4971 $dao = CRM_Core_DAO::executeQuery($query);
d567ed10 4972
89d7bb76 4973 // We can always call this - it will only re-enable if it was originally enabled.
4974 CRM_Core_DAO::reenableFullGroupByMode();
d567ed10 4975
6a488035 4976 if ($groupContacts) {
be2fb01f 4977 $ids = [];
6a488035
TO
4978 while ($dao->fetch()) {
4979 $ids[] = $dao->id;
4980 }
4981 return implode(',', $ids);
4982 }
4983
4984 return $dao;
4985 }
4986
52cda5dc 4987 /**
caefed7d 4988 * Create and query the db for the list of all first letters used by contacts
52cda5dc
MWMC
4989 *
4990 * @return CRM_Core_DAO
4991 */
4992 public function alphabetQuery() {
caefed7d
MWMC
4993 $sqlParts = $this->getSearchSQLParts(NULL, NULL, NULL, FALSE, FALSE, TRUE);
4994 $query = "SELECT DISTINCT LEFT(contact_a.sort_name, 1) as sort_name
def88c52 4995 {$sqlParts['from']}
9790d61c 4996 {$sqlParts['where']}";
52cda5dc 4997 $dao = CRM_Core_DAO::executeQuery($query);
52cda5dc
MWMC
4998 return $dao;
4999 }
5000
4243847f 5001 /**
2ca46d4d 5002 * Fetch a list of contacts for displaying a search results page
4243847f 5003 *
2ca46d4d
TO
5004 * @param array $cids
5005 * List of contact IDs
77c5b619 5006 * @param bool $includeContactIds
4243847f
CW
5007 * @return CRM_Core_DAO
5008 */
2ca46d4d 5009 public function getCachedContacts($cids, $includeContactIds) {
00a03110 5010 CRM_Core_DAO::disableFullGroupByMode();
2ca46d4d 5011 CRM_Utils_Type::validateAll($cids, 'Positive');
4243847f 5012 $this->_includeContactIds = $includeContactIds;
be2fb01f 5013 $onlyDeleted = in_array(['deleted_contacts', '=', '1', '0', '0'], $this->_params);
f6364403 5014 list($select, $from, $where) = $this->query(FALSE, FALSE, FALSE, $onlyDeleted);
2ca46d4d
TO
5015 $select .= sprintf(", (%s) AS _wgt", $this->createSqlCase('contact_a.id', $cids));
5016 $where .= sprintf(' AND contact_a.id IN (%s)', implode(',', $cids));
5017 $order = 'ORDER BY _wgt';
1d8fcdc5 5018 $groupBy = $this->_useGroupBy ? ' GROUP BY contact_a.id' : '';
2ca46d4d 5019 $limit = '';
9b5914f2 5020 $query = "$select $from $where $groupBy $order $limit";
23379b49 5021
00a03110 5022 $result = CRM_Core_DAO::executeQuery($query);
5023 CRM_Core_DAO::reenableFullGroupByMode();
5024 return $result;
4243847f
CW
5025 }
5026
2ca46d4d
TO
5027 /**
5028 * Construct a SQL CASE expression.
5029 *
5030 * @param string $idCol
5031 * The name of a column with ID's (eg 'contact_a.id').
5032 * @param array $cids
5033 * Array(int $weight => int $id).
5034 * @return string
5035 * CASE WHEN id=123 THEN 1 WHEN id=456 THEN 2 END
5036 */
5037 private function createSqlCase($idCol, $cids) {
5038 $buf = "CASE\n";
5039 foreach ($cids as $weight => $cid) {
5040 $buf .= " WHEN $idCol = $cid THEN $weight \n";
5041 }
5042 $buf .= "END\n";
5043 return $buf;
5044 }
5045
6a488035
TO
5046 /**
5047 * Populate $this->_permissionWhereClause with permission related clause and update other
5048 * query related properties.
5049 *
5050 * Function calls ACL permission class and hooks to filter the query appropriately
5051 *
5052 * Note that these 2 params were in the code when extracted from another function
5053 * and a second round extraction would be to make them properties of the class
5054 *
77c5b619
TO
5055 * @param bool $onlyDeleted
5056 * Only get deleted contacts.
5057 * @param bool $count
5058 * Return Count only.
6a488035 5059 */
00be9182 5060 public function generatePermissionClause($onlyDeleted = FALSE, $count = FALSE) {
6a488035 5061 if (!$this->_skipPermission) {
21c6be28
SL
5062 $permissionClauses = CRM_Contact_BAO_Contact_Permission::cacheClause();
5063 $this->_permissionWhereClause = $permissionClauses[1];
5064 $this->_permissionFromClause = $permissionClauses[0];
6a488035 5065
21b8bcb5
SL
5066 if (CRM_Core_Permission::check('access deleted contacts')) {
5067 if (!$onlyDeleted) {
99827266 5068 $this->_permissionWhereClause .= ' AND (contact_a.is_deleted = 0)';
21b8bcb5
SL
5069 }
5070 else {
99827266 5071 $this->_permissionWhereClause .= " AND (contact_a.is_deleted) ";
21b8bcb5 5072 }
54b8719b
SL
5073 }
5074
d1d108ee 5075 if (isset($this->_tables['civicrm_activity'])) {
5076 $bao = new CRM_Activity_BAO_Activity();
5077 $clauses = $subclauses = [];
5078 foreach ((array) $bao->addSelectWhereClause() as $field => $vals) {
5079 if ($vals && $field !== 'id') {
5080 $clauses[] = $bao->tableName() . ".$field " . $vals;
5081 }
5082 elseif ($vals) {
5083 $subclauses[] = "$field " . implode(" AND $field ", (array) $vals);
5084 }
5085 }
5086 if ($subclauses) {
5087 $clauses[] = $bao->tableName() . '.`id` IN (SELECT `id` FROM `' . $bao->tableName() . '` WHERE ' . implode(' AND ', $subclauses) . ')';
5088 }
5089 if (!empty($clauses) && $this->_permissionWhereClause) {
5090 $this->_permissionWhereClause .= ' AND (' . implode(' AND ', $clauses) . ')';
5091 }
5092 elseif (!empty($clauses)) {
5093 $this->_permissionWhereClause .= '(' . implode(' AND ', $clauses) . ')';
5094 }
5095 }
6a488035
TO
5096 }
5097 else {
5098 // add delete clause if needed even if we are skipping permission
5099 // CRM-7639
5100 if (!$this->_skipDeleteClause) {
5101 if (CRM_Core_Permission::check('access deleted contacts') and $onlyDeleted) {
5102 $this->_permissionWhereClause = '(contact_a.is_deleted)';
5103 }
5104 else {
5105 // CRM-6181
5106 $this->_permissionWhereClause = '(contact_a.is_deleted = 0)';
5107 }
5108 }
5109 }
5110 }
5111
86538308
EM
5112 /**
5113 * @param $val
5114 */
00be9182 5115 public function setSkipPermission($val) {
6a488035
TO
5116 $this->_skipPermission = $val;
5117 }
5118
86538308
EM
5119 /**
5120 * @param null $context
5121 *
5122 * @return array
b832662c 5123 * @throws \CRM_Core_Exception
86538308 5124 */
faba82fc 5125 public function summaryContribution($context = NULL) {
d7803ec1 5126 list($innerselect, $from, $where, $having) = $this->query(TRUE);
21c6be28
SL
5127 if (!empty($this->_permissionFromClause) && !stripos($from, 'aclContactCache')) {
5128 $from .= " $this->_permissionFromClause";
5129 }
8ef6eb78 5130 if ($this->_permissionWhereClause) {
5131 $where .= " AND " . $this->_permissionWhereClause;
5132 }
5133 if ($context == 'search') {
5134 $where .= " AND contact_a.is_deleted = 0 ";
5135 }
6a488035 5136
8ef6eb78 5137 $this->appendFinancialTypeWhereAndFromToQueryStrings($where, $from);
dbaa9d7d 5138
d54658f6 5139 $summary = ['total' => [], 'soft_credit' => ['count' => 0, 'avg' => 0, 'amount' => 0]];
8ef6eb78 5140 $this->addBasicStatsToSummary($summary, $where, $from);
d03881d3 5141
6d68fd76 5142 if (CRM_Contribute_BAO_Query::isSoftCreditOptionEnabled()) {
5143 $this->addBasicSoftCreditStatsToStats($summary, $where, $from);
5144 }
5145
386fce20 5146 $this->addBasicCancelStatsToSummary($summary, $where, $from);
6a488035
TO
5147
5148 return $summary;
5149 }
5150
5384a978 5151 /**
dbaa9d7d 5152 * Append financial ACL limits to the query from & where clauses, if applicable.
5384a978 5153 *
dbaa9d7d 5154 * @param string $where
5155 * @param string $from
5384a978 5156 */
dbaa9d7d 5157 public function appendFinancialTypeWhereAndFromToQueryStrings(&$where, &$from) {
5158 if (!CRM_Financial_BAO_FinancialType::isACLFinancialTypeStatus()) {
5159 return;
5384a978
VR
5160 }
5161 CRM_Financial_BAO_FinancialType::getAvailableFinancialTypes($financialTypes);
5162 if (!empty($financialTypes)) {
5163 $where .= " AND civicrm_contribution.financial_type_id IN (" . implode(',', array_keys($financialTypes)) . ") AND li.id IS NULL";
5164 $from .= " LEFT JOIN civicrm_line_item li
5165 ON civicrm_contribution.id = li.contribution_id AND
5166 li.entity_table = 'civicrm_contribution' AND li.financial_type_id NOT IN (" . implode(',', array_keys($financialTypes)) . ") ";
5167 }
5168 else {
5169 $where .= " AND civicrm_contribution.financial_type_id IN (0)";
5170 }
5384a978
VR
5171 }
5172
6a488035 5173 /**
fe482240 5174 * Getter for the qill object.
6a488035 5175 *
b832662c 5176 * @return array
6a488035 5177 */
00be9182 5178 public function qill() {
6a488035
TO
5179 return $this->_qill;
5180 }
5181
5182 /**
fe482240 5183 * Default set of return default hier return properties.
6a488035 5184 *
fffe9ee1 5185 * @return array
6a488035 5186 */
00be9182 5187 public static function &defaultHierReturnProperties() {
6a488035 5188 if (!isset(self::$_defaultHierReturnProperties)) {
be2fb01f 5189 self::$_defaultHierReturnProperties = [
6a488035
TO
5190 'home_URL' => 1,
5191 'image_URL' => 1,
5192 'legal_identifier' => 1,
5193 'external_identifier' => 1,
5194 'contact_type' => 1,
5195 'contact_sub_type' => 1,
5196 'sort_name' => 1,
5197 'display_name' => 1,
5198 'nick_name' => 1,
5199 'first_name' => 1,
5200 'middle_name' => 1,
5201 'last_name' => 1,
67744c4e
CW
5202 'prefix_id' => 1,
5203 'suffix_id' => 1,
e171748b 5204 'formal_title' => 1,
aa62b355 5205 'communication_style_id' => 1,
6a488035
TO
5206 'email_greeting' => 1,
5207 'postal_greeting' => 1,
5208 'addressee' => 1,
5209 'birth_date' => 1,
67744c4e 5210 'gender_id' => 1,
6a488035
TO
5211 'preferred_communication_method' => 1,
5212 'do_not_phone' => 1,
5213 'do_not_email' => 1,
5214 'do_not_mail' => 1,
5215 'do_not_sms' => 1,
5216 'do_not_trade' => 1,
be2fb01f
CW
5217 'location' => [
5218 '1' => [
59f4c9ee
TO
5219 'location_type' => 1,
5220 'street_address' => 1,
5221 'city' => 1,
5222 'state_province' => 1,
5223 'postal_code' => 1,
5224 'postal_code_suffix' => 1,
5225 'country' => 1,
5226 'phone-Phone' => 1,
5227 'phone-Mobile' => 1,
5228 'phone-Fax' => 1,
5229 'phone-1' => 1,
5230 'phone-2' => 1,
5231 'phone-3' => 1,
5232 'im-1' => 1,
5233 'im-2' => 1,
5234 'im-3' => 1,
5235 'email-1' => 1,
5236 'email-2' => 1,
5237 'email-3' => 1,
be2fb01f
CW
5238 ],
5239 '2' => [
59f4c9ee
TO
5240 'location_type' => 1,
5241 'street_address' => 1,
5242 'city' => 1,
5243 'state_province' => 1,
5244 'postal_code' => 1,
5245 'postal_code_suffix' => 1,
5246 'country' => 1,
5247 'phone-Phone' => 1,
5248 'phone-Mobile' => 1,
5249 'phone-1' => 1,
5250 'phone-2' => 1,
5251 'phone-3' => 1,
5252 'im-1' => 1,
5253 'im-2' => 1,
5254 'im-3' => 1,
5255 'email-1' => 1,
5256 'email-2' => 1,
5257 'email-3' => 1,
be2fb01f
CW
5258 ],
5259 ],
5260 ];
6a488035
TO
5261 }
5262 return self::$_defaultHierReturnProperties;
5263 }
5264
86538308 5265 /**
c037736a 5266 * Build query for a date field.
5267 *
5268 * @param array $values
100fef9d
CW
5269 * @param string $tableName
5270 * @param string $fieldName
5271 * @param string $dbFieldName
c037736a 5272 * @param string $fieldTitle
86538308 5273 * @param bool $appendTimeStamp
d51e2817 5274 * @param string $dateFormat
936ededf 5275 * @param string|null $highDBFieldName
5276 * Optional field name for when the 'high' part of the calculation uses a different field than the 'low' part.
5277 * This is an obscure situation & one we don't want to do more of but supporting them here is the only way for now.
5278 * Examples are event date & relationship active date -in both cases we are looking for things greater than the start
5279 * date & less than the end date.
5280 *
5281 * @throws \CRM_Core_Exception
86538308 5282 */
59f4c9ee 5283 public function dateQueryBuilder(
33a17d7e 5284 $values, $tableName, $fieldName,
6a488035 5285 $dbFieldName, $fieldTitle,
d51e2817 5286 $appendTimeStamp = TRUE,
936ededf 5287 $dateFormat = 'YmdHis',
5288 $highDBFieldName = NULL
6a488035 5289 ) {
5b5ea9b6 5290 // @todo - remove dateFormat - pretty sure it's never passed in...
6a488035 5291 list($name, $op, $value, $grouping, $wildcard) = $values;
56d1630d 5292 if ($name !== $fieldName && $name !== "{$fieldName}_low" && $name !== "{$fieldName}_high") {
5293 CRM_Core_Error::deprecatedFunctionWarning('Date query builder called unexpectedly');
5294 return;
5295 }
80b5c9f1 5296 if ($tableName === 'civicrm_contact') {
5297 // Special handling for contact table as it has a known alias in advanced search.
5298 $tableName = 'contact_a';
5299 }
2206409b 5300 if ($name === "{$fieldName}_low" ||
5301 $name === "{$fieldName}_high"
6a488035 5302 ) {
efb88612 5303 if (isset($this->_rangeCache[$fieldName]) || !$value) {
6a488035
TO
5304 return;
5305 }
5306 $this->_rangeCache[$fieldName] = 1;
5307
5308 $secondOP = $secondPhrase = $secondValue = $secondDate = $secondDateFormat = NULL;
5309
5310 if ($name == $fieldName . '_low') {
5311 $firstOP = '>=';
228917cd 5312 $firstPhrase = ts('greater than or equal to');
d51e2817 5313 $firstDate = CRM_Utils_Date::processDate($value, NULL, FALSE, $dateFormat);
6a488035
TO
5314
5315 $secondValues = $this->getWhereValues("{$fieldName}_high", $grouping);
228917cd 5316 if (!empty($secondValues) && $secondValues[2]) {
6a488035 5317 $secondOP = '<=';
228917cd 5318 $secondPhrase = ts('less than or equal to');
6a488035
TO
5319 $secondValue = $secondValues[2];
5320
228917cd 5321 if ($appendTimeStamp && strlen($secondValue) == 10) {
6a488035
TO
5322 $secondValue .= ' 23:59:59';
5323 }
d51e2817 5324 $secondDate = CRM_Utils_Date::processDate($secondValue, NULL, FALSE, $dateFormat);
6a488035
TO
5325 }
5326 }
5327 elseif ($name == $fieldName . '_high') {
5328 $firstOP = '<=';
228917cd 5329 $firstPhrase = ts('less than or equal to');
6a488035 5330
228917cd 5331 if ($appendTimeStamp && strlen($value) == 10) {
6a488035
TO
5332 $value .= ' 23:59:59';
5333 }
d51e2817 5334 $firstDate = CRM_Utils_Date::processDate($value, NULL, FALSE, $dateFormat);
6a488035
TO
5335
5336 $secondValues = $this->getWhereValues("{$fieldName}_low", $grouping);
228917cd 5337 if (!empty($secondValues) && $secondValues[2]) {
6a488035 5338 $secondOP = '>=';
228917cd 5339 $secondPhrase = ts('greater than or equal to');
6a488035 5340 $secondValue = $secondValues[2];
d51e2817 5341 $secondDate = CRM_Utils_Date::processDate($secondValue, NULL, FALSE, $dateFormat);
6a488035
TO
5342 }
5343 }
5344
5345 if (!$appendTimeStamp) {
5346 $firstDate = substr($firstDate, 0, 8);
5347 }
5348 $firstDateFormat = CRM_Utils_Date::customFormat($firstDate);
5349
5350 if ($secondDate) {
5351 if (!$appendTimeStamp) {
5352 $secondDate = substr($secondDate, 0, 8);
5353 }
5354 $secondDateFormat = CRM_Utils_Date::customFormat($secondDate);
5355 }
5356
6a488035 5357 if ($secondDate) {
936ededf 5358 $highDBFieldName = $highDBFieldName ?? $dbFieldName;
6a488035
TO
5359 $this->_where[$grouping][] = "
5360( {$tableName}.{$dbFieldName} $firstOP '$firstDate' ) AND
936ededf 5361( {$tableName}.{$highDBFieldName} $secondOP '$secondDate' )
6a488035
TO
5362";
5363 $this->_qill[$grouping][] = "$fieldTitle - $firstPhrase \"$firstDateFormat\" " . ts('AND') . " $secondPhrase \"$secondDateFormat\"";
5364 }
5365 else {
5366 $this->_where[$grouping][] = "{$tableName}.{$dbFieldName} $firstOP '$firstDate'";
5367 $this->_qill[$grouping][] = "$fieldTitle - $firstPhrase \"$firstDateFormat\"";
5368 }
5369 }
5370
5371 if ($name == $fieldName) {
d820f4e8 5372 //In Get API, for operators other then '=' the $value is in array(op => value) format
5373 if (is_array($value) && !empty($value) && in_array(key($value), CRM_Core_DAO::acceptedSQLOperators(), TRUE)) {
5374 $op = key($value);
5375 $value = $value[$op];
5376 }
6a488035 5377
efb88612 5378 $date = $format = NULL;
fbc6a4d4 5379 if (strstr($op, 'IN')) {
be2fb01f 5380 $format = [];
ee657a1c 5381 foreach ($value as &$date) {
d51e2817 5382 $date = CRM_Utils_Date::processDate($date, NULL, FALSE, $dateFormat);
ee657a1c 5383 if (!$appendTimeStamp) {
5384 $date = substr($date, 0, 8);
5385 }
fbc6a4d4 5386 $format[] = CRM_Utils_Date::customFormat($date);
ee657a1c 5387 }
5388 $date = "('" . implode("','", $value) . "')";
fbc6a4d4 5389 $format = implode(', ', $format);
ee657a1c 5390 }
0a74debb 5391 elseif ($value && (!strstr($op, 'NULL') && !strstr($op, 'EMPTY'))) {
d51e2817 5392 $date = CRM_Utils_Date::processDate($value, NULL, FALSE, $dateFormat);
ee657a1c 5393 if (!$appendTimeStamp) {
5394 $date = substr($date, 0, 8);
5395 }
fbc6a4d4 5396 $format = CRM_Utils_Date::customFormat($date);
efb88612 5397 $date = "'$date'";
6a488035 5398 }
6a488035
TO
5399
5400 if ($date) {
f1339cf2 5401 $this->_where[$grouping][] = "{$tableName}.{$dbFieldName} $op $date";
6a488035
TO
5402 }
5403 else {
515293b2 5404 $this->_where[$grouping][] = self::buildClause("{$tableName}.{$dbFieldName}", $op);
6a488035 5405 }
efb88612 5406
d820f4e8 5407 $op = CRM_Utils_Array::value($op, CRM_Core_SelectValues::getSearchBuilderOperators(), $op);
efb88612 5408 $this->_qill[$grouping][] = "$fieldTitle $op $format";
6a488035 5409 }
56d1630d 5410
5411 // Ensure the tables are set, but don't whomp anything.
5412 $this->_tables[$tableName] = $this->_tables[$tableName] ?? 1;
5413 $this->_whereTables[$tableName] = $this->_whereTables[$tableName] ?? 1;
6a488035
TO
5414 }
5415
86538308
EM
5416 /**
5417 * @param $values
100fef9d
CW
5418 * @param string $tableName
5419 * @param string $fieldName
5420 * @param string $dbFieldName
86538308
EM
5421 * @param $fieldTitle
5422 * @param null $options
5423 */
59f4c9ee 5424 public function numberRangeBuilder(
51ccfbbe
TO
5425 &$values,
5426 $tableName, $fieldName,
5427 $dbFieldName, $fieldTitle,
5428 $options = NULL
6a488035
TO
5429 ) {
5430 list($name, $op, $value, $grouping, $wildcard) = $values;
5431
5432 if ($name == "{$fieldName}_low" ||
5433 $name == "{$fieldName}_high"
5434 ) {
5435 if (isset($this->_rangeCache[$fieldName])) {
5436 return;
5437 }
5438 $this->_rangeCache[$fieldName] = 1;
5439
5440 $secondOP = $secondPhrase = $secondValue = NULL;
5441
5442 if ($name == "{$fieldName}_low") {
5443 $firstOP = '>=';
228917cd 5444 $firstPhrase = ts('greater than');
6a488035
TO
5445
5446 $secondValues = $this->getWhereValues("{$fieldName}_high", $grouping);
5447 if (!empty($secondValues)) {
5448 $secondOP = '<=';
228917cd 5449 $secondPhrase = ts('less than');
6a488035
TO
5450 $secondValue = $secondValues[2];
5451 }
5452 }
5453 else {
5454 $firstOP = '<=';
228917cd 5455 $firstPhrase = ts('less than');
6a488035
TO
5456
5457 $secondValues = $this->getWhereValues("{$fieldName}_low", $grouping);
5458 if (!empty($secondValues)) {
5459 $secondOP = '>=';
228917cd 5460 $secondPhrase = ts('greater than');
6a488035
TO
5461 $secondValue = $secondValues[2];
5462 }
5463 }
5464
5465 if ($secondOP) {
5466 $this->_where[$grouping][] = "
5467( {$tableName}.{$dbFieldName} $firstOP {$value} ) AND
5468( {$tableName}.{$dbFieldName} $secondOP {$secondValue} )
5469";
5470 $displayValue = $options ? $options[$value] : $value;
5471 $secondDisplayValue = $options ? $options[$secondValue] : $secondValue;
5472
59f4c9ee
TO
5473 $this->_qill[$grouping][]
5474 = "$fieldTitle - $firstPhrase \"$displayValue\" " . ts('AND') . " $secondPhrase \"$secondDisplayValue\"";
6a488035
TO
5475 }
5476 else {
5477 $this->_where[$grouping][] = "{$tableName}.{$dbFieldName} $firstOP {$value}";
5478 $displayValue = $options ? $options[$value] : $value;
5479 $this->_qill[$grouping][] = "$fieldTitle - $firstPhrase \"$displayValue\"";
5480 }
5481 $this->_tables[$tableName] = $this->_whereTables[$tableName] = 1;
5482
5483 return;
5484 }
5485
5486 if ($name == $fieldName) {
5487 $op = '=';
5488 $phrase = '=';
5489
5490 $this->_where[$grouping][] = "{$tableName}.{$dbFieldName} $op {$value}";
5491
5492 $this->_tables[$tableName] = $this->_whereTables[$tableName] = 1;
5493 $displayValue = $options ? $options[$value] : $value;
5494 $this->_qill[$grouping][] = "$fieldTitle - $phrase \"$displayValue\"";
5495 }
6a488035
TO
5496 }
5497
c4a7c967 5498 /**
5499 * @param $values
5500 * @param string $tableName
5501 * @param string $fieldName
5502 * @param string $dbFieldName
5503 * @param $fieldTitle
5504 * @param null $options
5505 */
5506 public function ageRangeQueryBuilder(
5507 &$values,
5508 $tableName, $fieldName,
5509 $dbFieldName, $fieldTitle,
5510 $options = NULL
5511 ) {
5512 list($name, $op, $value, $grouping, $wildcard) = $values;
5513
5514 $asofDateValues = $this->getWhereValues("{$fieldName}_asof_date", $grouping);
69078420
SL
5515 // will be treated as current day
5516 $asofDate = NULL;
c4a7c967 5517 if ($asofDateValues) {
5518 $asofDate = CRM_Utils_Date::processDate($asofDateValues[2]);
5519 $asofDateFormat = CRM_Utils_Date::customFormat(substr($asofDate, 0, 8));
5520 $fieldTitle .= ' ' . ts('as of') . ' ' . $asofDateFormat;
5521 }
5522
5523 if ($name == "{$fieldName}_low" ||
5524 $name == "{$fieldName}_high"
5525 ) {
5526 if (isset($this->_rangeCache[$fieldName])) {
5527 return;
5528 }
5529 $this->_rangeCache[$fieldName] = 1;
5530
5531 $secondOP = $secondPhrase = $secondValue = NULL;
5532
5533 if ($name == "{$fieldName}_low") {
5534 $firstPhrase = ts('greater than or equal to');
5535 // NB: age > X means date of birth < Y
5536 $firstOP = '<=';
5537 $firstDate = self::calcDateFromAge($asofDate, $value, 'min');
5538
5539 $secondValues = $this->getWhereValues("{$fieldName}_high", $grouping);
5540 if (!empty($secondValues)) {
5541 $secondOP = '>=';
5542 $secondPhrase = ts('less than or equal to');
5543 $secondValue = $secondValues[2];
5544 $secondDate = self::calcDateFromAge($asofDate, $secondValue, 'max');
5545 }
5546 }
5547 else {
5548 $firstOP = '>=';
5549 $firstPhrase = ts('less than or equal to');
5550 $firstDate = self::calcDateFromAge($asofDate, $value, 'max');
5551
5552 $secondValues = $this->getWhereValues("{$fieldName}_low", $grouping);
5553 if (!empty($secondValues)) {
5554 $secondOP = '<=';
5555 $secondPhrase = ts('greater than or equal to');
5556 $secondValue = $secondValues[2];
5557 $secondDate = self::calcDateFromAge($asofDate, $secondValue, 'min');
5558 }
5559 }
5560
c4a7c967 5561 if ($secondOP) {
5562 $this->_where[$grouping][] = "
5563( {$tableName}.{$dbFieldName} $firstOP '$firstDate' ) AND
5564( {$tableName}.{$dbFieldName} $secondOP '$secondDate' )
5565";
5566 $displayValue = $options ? $options[$value] : $value;
5567 $secondDisplayValue = $options ? $options[$secondValue] : $secondValue;
5568
5569 $this->_qill[$grouping][]
5570 = "$fieldTitle - $firstPhrase \"$displayValue\" " . ts('AND') . " $secondPhrase \"$secondDisplayValue\"";
5571 }
5572 else {
5573 $this->_where[$grouping][] = "{$tableName}.{$dbFieldName} $firstOP '$firstDate'";
5574 $displayValue = $options ? $options[$value] : $value;
5575 $this->_qill[$grouping][] = "$fieldTitle - $firstPhrase \"$displayValue\"";
5576 }
5577 $this->_tables[$tableName] = $this->_whereTables[$tableName] = 1;
5578 return;
5579 }
5580 }
5581
70599df6 5582 /**
5583 * Calculate date from age.
5584 *
5585 * @param string $asofDate
5586 * @param int $age
5587 * @param string $type
5588 *
5589 * @return string
b832662c 5590 * @throws \Exception
70599df6 5591 */
c4a7c967 5592 public static function calcDateFromAge($asofDate, $age, $type) {
5593 $date = new DateTime($asofDate);
5594 if ($type == "min") {
5595 // minimum age is $age: dob <= date - age "235959"
5596 $date->sub(new DateInterval("P" . $age . "Y"));
5597 return $date->format('Ymd') . "235959";
69c53a43 5598 }
5599 else {
c4a7c967 5600 // max age is $age: dob >= date - (age + 1y) + 1d "000000"
5601 $date->sub(new DateInterval("P" . ($age + 1) . "Y"))->add(new DateInterval("P1D"));
5602 return $date->format('Ymd') . "000000";
5603 }
5604 }
5605
6a488035
TO
5606 /**
5607 * Given the field name, operator, value & its data type
5608 * builds the where Clause for the query
5609 * used for handling 'IS NULL'/'IS NOT NULL' operators
5610 *
77c5b619
TO
5611 * @param string $field
5612 * Fieldname.
5613 * @param string $op
5614 * Operator.
5615 * @param string $value
5616 * Value.
5617 * @param string $dataType
5618 * Data type of the field.
6a488035 5619 *
a6c01b45 5620 * @return string
59f4c9ee 5621 * Where clause for the query.
b832662c 5622 * @throws \CRM_Core_Exception
6a488035 5623 */
00be9182 5624 public static function buildClause($field, $op, $value = NULL, $dataType = NULL) {
6a488035
TO
5625 $op = trim($op);
5626 $clause = "$field $op";
5627
5628 switch ($op) {
5629 case 'IS NULL':
5630 case 'IS NOT NULL':
5631 return $clause;
5632
5633 case 'IS EMPTY':
89d4a22f 5634 $clause = ($dataType == 'Date') ? " $field IS NULL " : " (NULLIF($field, '') IS NULL) ";
6a488035
TO
5635 return $clause;
5636
5637 case 'IS NOT EMPTY':
89d4a22f 5638 $clause = ($dataType == 'Date') ? " $field IS NOT NULL " : " (NULLIF($field, '') IS NOT NULL) ";
6a488035
TO
5639 return $clause;
5640
a0475688 5641 case 'RLIKE':
0800bc59 5642 return " CAST({$field} AS BINARY) RLIKE BINARY '{$value}' ";
a0475688 5643
e2b0fbec 5644 case 'IN':
5645 case 'NOT IN':
715277e7 5646 // I feel like this would be escaped properly if passed through $queryString = CRM_Core_DAO::createSqlFilter.
46b3417a 5647 if (!empty($value) && (!is_array($value) || !array_key_exists($op, $value))) {
be2fb01f 5648 $value = [$op => (array) $value];
e2b0fbec 5649 }
5650
6a488035 5651 default:
89d4a22f 5652 if (empty($dataType) || $dataType == 'Date') {
6a488035
TO
5653 $dataType = 'String';
5654 }
461c9a60
EM
5655 if (is_array($value)) {
5656 //this could have come from the api - as in the restWhere section we potentially use the api operator syntax which is becoming more
5657 // widely used and consistent across the codebase
5658 // adding this here won't accept the search functions which don't submit an array
b832662c 5659 if (($queryString = CRM_Core_DAO::createSQLFilter($field, $value, $dataType)) != FALSE) {
6e23130a 5660
461c9a60
EM
5661 return $queryString;
5662 }
ccabbc44 5663 if (!empty($value[0]) && $op === 'BETWEEN') {
5664 CRM_Core_Error::deprecatedFunctionWarning('Fix search input params');
b832662c 5665 if (($queryString = CRM_Core_DAO::createSQLFilter($field, [$op => $value], $dataType)) != FALSE) {
6e23130a
EM
5666 return $queryString;
5667 }
5668 }
ccabbc44 5669 throw new CRM_Core_Exception(ts('Failed to interpret input for search'));
461c9a60 5670 }
9787e1bb
SL
5671 $emojiWhere = CRM_Utils_SQL::handleEmojiInQuery($value);
5672 if ($emojiWhere === '0 = 1') {
5673 $value = $emojiWhere;
5674 }
6a488035 5675 $value = CRM_Utils_Type::escape($value, $dataType);
a75c13cc 5676 // if we don't have a dataType we should assume
85bdc94e 5677 if ($dataType == 'String' || $dataType == 'Text') {
2fc64082 5678 $value = "'" . $value . "'";
6a488035
TO
5679 }
5680 return "$clause $value";
5681 }
5682 }
5683
86538308
EM
5684 /**
5685 * @param bool $reset
5686 *
5687 * @return array
5688 */
00be9182 5689 public function openedSearchPanes($reset = FALSE) {
6a488035
TO
5690 if (!$reset || empty($this->_whereTables)) {
5691 return self::$_openedPanes;
5692 }
5693
5694 // pane name to table mapper
be2fb01f 5695 $panesMapper = [
6a488035
TO
5696 ts('Contributions') => 'civicrm_contribution',
5697 ts('Memberships') => 'civicrm_membership',
5698 ts('Events') => 'civicrm_participant',
5699 ts('Relationships') => 'civicrm_relationship',
5700 ts('Activities') => 'civicrm_activity',
5701 ts('Pledges') => 'civicrm_pledge',
5702 ts('Cases') => 'civicrm_case',
5703 ts('Grants') => 'civicrm_grant',
5704 ts('Address Fields') => 'civicrm_address',
5705 ts('Notes') => 'civicrm_note',
5706 ts('Change Log') => 'civicrm_log',
974ae237 5707 ts('Mailings') => 'civicrm_mailing',
be2fb01f 5708 ];
066b4d4a 5709 CRM_Contact_BAO_Query_Hook::singleton()->getPanesMapper($panesMapper);
6a488035
TO
5710
5711 foreach (array_keys($this->_whereTables) as $table) {
5712 if ($panName = array_search($table, $panesMapper)) {
5713 self::$_openedPanes[$panName] = TRUE;
5714 }
5715 }
5716
5717 return self::$_openedPanes;
5718 }
5719
86538308
EM
5720 /**
5721 * @param $operator
5722 */
00be9182 5723 public function setOperator($operator) {
be2fb01f 5724 $validOperators = ['AND', 'OR'];
6a488035
TO
5725 if (!in_array($operator, $validOperators)) {
5726 $operator = 'AND';
5727 }
5728 $this->_operator = $operator;
5729 }
5730
86538308
EM
5731 /**
5732 * @return string
5733 */
00be9182 5734 public function getOperator() {
6a488035
TO
5735 return $this->_operator;
5736 }
5737
86538308
EM
5738 /**
5739 * @param $from
5740 * @param $where
5741 * @param $having
5742 */
00be9182 5743 public function filterRelatedContacts(&$from, &$where, &$having) {
2bedfb3f 5744 if (!isset(Civi::$statics[__CLASS__]['related_contacts_filter'])) {
be2fb01f 5745 Civi::$statics[__CLASS__]['related_contacts_filter'] = [];
2bedfb3f
HA
5746 }
5747 $_rTempCache =& Civi::$statics[__CLASS__]['related_contacts_filter'];
68f8975b 5748 // since there only can be one instance of this filter in every query
2bedfb3f
HA
5749 // skip if filter has already applied
5750 foreach ($_rTempCache as $acache) {
68f8975b
HA
5751 foreach ($acache['queries'] as $aqcache) {
5752 if (strpos($from, $aqcache['from']) !== FALSE) {
5753 $having = NULL;
5754 return;
5755 }
2bedfb3f
HA
5756 }
5757 }
5758 $arg_sig = sha1("$from $where $having");
5759 if (isset($_rTempCache[$arg_sig])) {
5760 $cache = $_rTempCache[$arg_sig];
5761 }
5762 else {
6a488035 5763 // create temp table with contact ids
68f8975b 5764
def88c52 5765 $tableName = CRM_Utils_SQL_TempTable::build()->createWithColumns('contact_id int primary key')->setMemory(TRUE)->getName();
6a488035
TO
5766
5767 $sql = "
5768REPLACE INTO $tableName ( contact_id )
5769SELECT contact_a.id
5770 $from
5771 $where
5772 $having
5773";
5774 CRM_Core_DAO::executeQuery($sql);
5775
be2fb01f 5776 $cache = ['tableName' => $tableName, 'queries' => []];
68f8975b
HA
5777 $_rTempCache[$arg_sig] = $cache;
5778 }
5779 // upsert the query depending on relationship type
5780 if (isset($cache['queries'][$this->_displayRelationshipType])) {
5781 $qcache = $cache['queries'][$this->_displayRelationshipType];
5782 }
5783 else {
5784 $tableName = $cache['tableName'];
be2fb01f 5785 $qcache = [
68f8975b
HA
5786 "from" => "",
5787 "where" => "",
be2fb01f 5788 ];
6a488035 5789 $rTypes = CRM_Core_PseudoConstant::relationshipType();
6a488035
TO
5790 if (is_numeric($this->_displayRelationshipType)) {
5791 $relationshipTypeLabel = $rTypes[$this->_displayRelationshipType]['label_a_b'];
68f8975b 5792 $qcache['from'] = "
6a488035
TO
5793INNER JOIN civicrm_relationship displayRelType ON ( displayRelType.contact_id_a = contact_a.id OR displayRelType.contact_id_b = contact_a.id )
5794INNER JOIN $tableName transform_temp ON ( transform_temp.contact_id = displayRelType.contact_id_a OR transform_temp.contact_id = displayRelType.contact_id_b )
5795";
68f8975b 5796 $qcache['where'] = "
d7a05de1 5797WHERE displayRelType.relationship_type_id = {$this->_displayRelationshipType}
6a488035
TO
5798AND displayRelType.is_active = 1
5799";
5800 }
5801 else {
5802 list($relType, $dirOne, $dirTwo) = explode('_', $this->_displayRelationshipType);
5803 if ($dirOne == 'a') {
5804 $relationshipTypeLabel = $rTypes[$relType]['label_a_b'];
68f8975b 5805 $qcache['from'] .= "
6a488035
TO
5806INNER JOIN civicrm_relationship displayRelType ON ( displayRelType.contact_id_a = contact_a.id )
5807INNER JOIN $tableName transform_temp ON ( transform_temp.contact_id = displayRelType.contact_id_b )
5808";
5809 }
5810 else {
5811 $relationshipTypeLabel = $rTypes[$relType]['label_b_a'];
68f8975b 5812 $qcache['from'] .= "
6a488035
TO
5813INNER JOIN civicrm_relationship displayRelType ON ( displayRelType.contact_id_b = contact_a.id )
5814INNER JOIN $tableName transform_temp ON ( transform_temp.contact_id = displayRelType.contact_id_a )
5815";
5816 }
68f8975b 5817 $qcache['where'] = "
d7a05de1 5818WHERE displayRelType.relationship_type_id = $relType
6a488035
TO
5819AND displayRelType.is_active = 1
5820";
5821 }
68f8975b
HA
5822 $qcache['relTypeLabel'] = $relationshipTypeLabel;
5823 $_rTempCache[$arg_sig]['queries'][$this->_displayRelationshipType] = $qcache;
6a488035 5824 }
68f8975b
HA
5825 $qillMessage = ts('Contacts with a Relationship Type of: ');
5826 $iqill = $qillMessage . "'" . $qcache['relTypeLabel'] . "'";
5827 if (!is_array($this->_qill[0]) || !in_array($iqill, $this->_qill[0])) {
5828 $this->_qill[0][] = $iqill;
5829 }
5830 if (strpos($from, $qcache['from']) === FALSE) {
83cffc1e 5831 if (strpos($from, "INNER JOIN") !== FALSE) {
5adc0da9
JJ
5832 // lets replace all the INNER JOIN's in the $from so we dont exclude other data
5833 // this happens when we have an event_type in the quert (CRM-7969)
5834 $from = str_replace("INNER JOIN", "LEFT JOIN", $from);
5835 // Make sure the relationship join right after the FROM and other joins afterwards.
5836 // This gives us the possibility to change the join on civicrm case.
5837 $from = preg_replace("/LEFT JOIN/", $qcache['from'] . " LEFT JOIN", $from, 1);
83cffc1e
JJ
5838 }
5839 else {
5adc0da9
JJ
5840 $from .= $qcache['from'];
5841 }
d7a05de1 5842 $where = $qcache['where'];
5adc0da9
JJ
5843 if (!empty($this->_tables['civicrm_case'])) {
5844 // Change the join on CiviCRM case so that it joins on the right contac from the relationship.
5845 $from = str_replace("ON civicrm_case_contact.contact_id = contact_a.id", "ON civicrm_case_contact.contact_id = transform_temp.contact_id", $from);
5846 $where .= " AND displayRelType.case_id = civicrm_case_contact.case_id ";
5847 }
21c6be28
SL
5848 if (!empty($this->_permissionFromClause) && !stripos($from, 'aclContactCache')) {
5849 $from .= " $this->_permissionFromClause";
5850 }
2bedfb3f
HA
5851 if (!empty($this->_permissionWhereClause)) {
5852 $where .= "AND $this->_permissionWhereClause";
5853 }
6a488035
TO
5854 }
5855
5856 $having = NULL;
5857 }
5858
86538308 5859 /**
30415e03 5860 * See CRM-19811 for why this is database hurty without apparent benefit.
5861 *
86538308
EM
5862 * @param $op
5863 *
5864 * @return bool
5865 */
5c7dad85 5866 public static function caseImportant($op) {
91768280 5867 return !in_array($op, ['LIKE', 'IS NULL', 'IS NOT NULL', 'IS EMPTY', 'IS NOT EMPTY']);
6a488035
TO
5868 }
5869
86538308
EM
5870 /**
5871 * @param $returnProperties
5872 * @param $prefix
5873 *
5874 * @return bool
5875 */
5c7dad85
TO
5876 public static function componentPresent(&$returnProperties, $prefix) {
5877 foreach ($returnProperties as $name => $dontCare) {
6a488035
TO
5878 if (substr($name, 0, strlen($prefix)) == $prefix) {
5879 return TRUE;
5880 }
5881 }
5882 return FALSE;
5883 }
5884
5885 /**
c037736a 5886 * Builds the necessary structures for all fields that are similar to option value look-ups.
6a488035 5887 *
5a4f6742
CW
5888 * @param string $name
5889 * the name of the field.
5890 * @param string $op
5891 * the sql operator, this function should handle ALL SQL operators.
5892 * @param string $value
5893 * depends on the operator and who's calling the query builder.
5894 * @param int $grouping
5895 * the index where to place the where clause.
3bdf1f3a 5896 * @param string $daoName
5897 * DAO Name.
5a4f6742
CW
5898 * @param array $field
5899 * an array that contains various properties of the field identified by $name.
5900 * @param string $label
5901 * The label for this field element.
5902 * @param string $dataType
b832662c 5903 *
5904 * @throws \CRM_Core_Exception
6a488035 5905 */
59f4c9ee 5906 public function optionValueQuery(
6a488035
TO
5907 $name,
5908 $op,
5909 $value,
5910 $grouping,
e9cde327 5911 $daoName,
6a488035
TO
5912 $field,
5913 $label,
bf0f0d19 5914 $dataType = 'String'
6a488035 5915 ) {
bd3728fb 5916
be2fb01f 5917 $pseudoFields = [
5c7dad85
TO
5918 'email_greeting',
5919 'postal_greeting',
5920 'addressee',
be2fb01f 5921 ];
d9ab802d 5922
bf0f0d19 5923 list($tableName, $fieldName) = explode('.', $field['where'], 2);
5924 if ($tableName == 'civicrm_contact') {
5925 $wc = "contact_a.$fieldName";
5926 }
5927 else {
5928 // Special handling for on_hold, so that we actually use the 'where'
5929 // property in order to limit the query by the on_hold status of the email,
5930 // instead of using email.id which would be nonsensical.
5931 if ($field['name'] === 'on_hold') {
5932 $wc = $field['where'];
9df8a11d 5933 }
8b695e91 5934 else {
bf0f0d19 5935 $wc = "$tableName.id";
8b695e91 5936 }
9df8a11d 5937 }
bf0f0d19 5938
d9ab802d 5939 if (in_array($name, $pseudoFields)) {
9724097e 5940 $wc = "contact_a.{$name}_id";
d9ab802d
PJ
5941 $dataType = 'Positive';
5942 $value = (!$value) ? 0 : $value;
5943 }
728eefa0 5944 if ($name == "world_region") {
5945 $field['name'] = $name;
5946 }
d9ab802d 5947
9b183452 5948 list($qillop, $qillVal) = CRM_Contact_BAO_Query::buildQillForFieldValue($daoName, $field['name'], $value, $op);
be2fb01f 5949 $this->_qill[$grouping][] = ts("%1 %2 %3", [1 => $label, 2 => $qillop, 3 => $qillVal]);
d9ab802d 5950 $this->_where[$grouping][] = self::buildClause($wc, $op, $value, $dataType);
6a488035
TO
5951 }
5952
a30e57e0 5953 /**
100fef9d 5954 * Check and explode a user defined numeric string into an array
6a488035
TO
5955 * this was the protocol used by search builder in the old old days before we had
5956 * super nice js widgets to do the hard work
5957 *
4e6072d5 5958 * @param string $string
77c5b619
TO
5959 * @param string $dataType
5960 * The dataType we should check for the values, default integer.
6a488035 5961 *
72b3a70c
CW
5962 * @return bool|array
5963 * false if string does not match the pattern
5964 * array of numeric values if string does match the pattern
6a488035 5965 */
00be9182 5966 public static function parseSearchBuilderString($string, $dataType = 'Integer') {
6a488035
TO
5967 $string = trim($string);
5968 if (substr($string, 0, 1) != '(' || substr($string, -1, 1) != ')') {
69078420 5969 return FALSE;
6a488035
TO
5970 }
5971
5972 $string = substr($string, 1, -1);
5973 $values = explode(',', $string);
5974 if (empty($values)) {
5975 return FALSE;
5976 }
5977
be2fb01f 5978 $returnValues = [];
6a488035 5979 foreach ($values as $v) {
5c7dad85 5980 if ($dataType == 'Integer' && !is_numeric($v)) {
6a488035
TO
5981 return FALSE;
5982 }
4c9b6178 5983 elseif ($dataType == 'String' && !is_string($v)) {
6a488035
TO
5984 return FALSE;
5985 }
5986 $returnValues[] = trim($v);
5987 }
5988
5989 if (empty($returnValues)) {
5990 return FALSE;
5991 }
5992
5993 return $returnValues;
5994 }
6a488035 5995
d9ab802d 5996 /**
100fef9d 5997 * Convert the pseudo constants id's to their names
837c4660 5998 *
59f4c9ee 5999 * @param CRM_Core_DAO $dao
837c4660 6000 * @param bool $return
a5e77b37 6001 * @param bool $usedForAPI
837c4660 6002 *
59f4c9ee 6003 * @return array|NULL
d9ab802d 6004 */
a5e77b37 6005 public function convertToPseudoNames(&$dao, $return = FALSE, $usedForAPI = FALSE) {
d9ab802d 6006 if (empty($this->_pseudoConstantsSelect)) {
59f4c9ee 6007 return NULL;
d9ab802d 6008 }
be2fb01f 6009 $values = [];
d9ab802d 6010 foreach ($this->_pseudoConstantsSelect as $key => $value) {
a7488080 6011 if (!empty($this->_pseudoConstantsSelect[$key]['sorting'])) {
d9ab802d
PJ
6012 continue;
6013 }
6014
9db71ff2 6015 if (is_object($dao) && property_exists($dao, $value['idCol'])) {
6ef04c72 6016 $val = $dao->{$value['idCol']};
3875e6b6 6017 if ($key == 'groups') {
6018 $dao->groups = $this->convertGroupIDStringToLabelString($dao, $val);
86ab13b7 6019 continue;
3875e6b6 6020 }
d9ab802d
PJ
6021
6022 if (CRM_Utils_System::isNull($val)) {
6023 $dao->$key = NULL;
d9ab802d 6024 }
86ab13b7 6025 elseif (!empty($value['pseudoconstant'])) {
6026 // If pseudoconstant is set that is kind of defacto for 'we have a bit more info about this'
6027 // and we can use the metadata to figure it out.
6028 // ideally this bit of IF will absorb & replace all the rest in time as we move to
6029 // more metadata based choices.
6030 if (strpos($val, CRM_Core_DAO::VALUE_SEPARATOR) !== FALSE) {
6031 $dbValues = explode(CRM_Core_DAO::VALUE_SEPARATOR, trim($val, CRM_Core_DAO::VALUE_SEPARATOR));
6032 foreach ($dbValues as $pseudoValue) {
6033 $convertedValues[] = CRM_Core_PseudoConstant::getLabel($value['bao'], $value['idCol'], $pseudoValue);
6034 }
6035
6036 $dao->$key = ($usedForAPI) ? $convertedValues : implode(', ', $convertedValues);
9c1bc317 6037 $realFieldName = $this->_pseudoConstantsSelect[$key]['field_name'] ?? NULL;
86ab13b7 6038 if ($usedForAPI && $realFieldName) {
6039 // normally we would see 2 fields returned for pseudoConstants. An exception is
6040 // preferred_communication_method where there is no id-variant.
6041 // For the api we prioritise getting the real data returned.
6042 // over the resolved version
6043 $dao->$realFieldName = $dbValues;
6044 }
6045
6046 }
6047 else {
6048 // This is basically the same as the default but since we have the bao we can use
6049 // a cached function.
6050 $dao->$key = CRM_Core_PseudoConstant::getLabel($value['bao'], $value['idCol'], $val);
6051 }
6052 }
b719f000 6053 elseif ($baoName = CRM_Utils_Array::value('bao', $value, NULL)) {
827659b2 6054 //preserve id value
6055 $idColumn = "{$key}_id";
6056 $dao->$idColumn = $val;
b105067c 6057
6058 if ($key == 'state_province_name') {
144d0efe 6059 $dao->{$value['pseudoField']} = $dao->$key = CRM_Core_PseudoConstant::stateProvince($val);
b105067c 6060 }
6061 else {
6ef04c72 6062 $dao->{$value['pseudoField']} = $dao->$key = CRM_Core_PseudoConstant::getLabel($baoName, $value['pseudoField'], $val);
b105067c 6063 }
d9ab802d
PJ
6064 }
6065 elseif ($value['pseudoField'] == 'state_province_abbreviation') {
6066 $dao->$key = CRM_Core_PseudoConstant::stateProvinceAbbreviation($val);
6067 }
86ab13b7 6068 // @todo handle this in the section above for pseudoconstants.
be2fb01f 6069 elseif (in_array($value['pseudoField'], ['participant_role_id', 'participant_role'])) {
3af96592 6070 // @todo define bao on this & merge into the above condition.
348b1fda 6071 $viewValues = explode(CRM_Core_DAO::VALUE_SEPARATOR, $val);
6072
6073 if ($value['pseudoField'] == 'participant_role') {
6074 $pseudoOptions = CRM_Core_PseudoConstant::get('CRM_Event_DAO_Participant', 'role_id');
6075 foreach ($viewValues as $k => $v) {
6076 $viewValues[$k] = $pseudoOptions[$v];
6077 }
62fd7fe8 6078 }
a5e77b37 6079 $dao->$key = ($usedForAPI && count($viewValues) > 1) ? $viewValues : implode(', ', $viewValues);
62fd7fe8 6080 }
d9ab802d
PJ
6081 else {
6082 $labels = CRM_Core_OptionGroup::values($value['pseudoField']);
6083 $dao->$key = $labels[$val];
6084 }
b719f000
PJ
6085
6086 // return converted values in array format
6087 if ($return) {
6088 if (strpos($key, '-') !== FALSE) {
6089 $keyVal = explode('-', $key);
6090 $current = &$values;
6091 $lastElement = array_pop($keyVal);
6092 foreach ($keyVal as $v) {
6093 if (!array_key_exists($v, $current)) {
be2fb01f 6094 $current[$v] = [];
b719f000
PJ
6095 }
6096 $current = &$current[$v];
6097 }
6098 $current[$lastElement] = $dao->$key;
6099 }
6100 else {
6101 $values[$key] = $dao->$key;
6102 }
6103 }
d9ab802d
PJ
6104 }
6105 }
86ab13b7 6106 if (!$usedForAPI) {
714ab070 6107 foreach ($this->legacyHackedFields as $realField => $labelField) {
86ab13b7 6108 // This is a temporary routine for handling these fields while
6109 // we figure out how to handled them based on metadata in
6110 /// export and search builder. CRM-19815, CRM-19830.
f02f3e59 6111 if (isset($dao->$realField) && is_numeric($dao->$realField) && isset($dao->$labelField)) {
86ab13b7 6112 $dao->$realField = $dao->$labelField;
6113 }
6114 }
6115 }
d9ab802d
PJ
6116 return $values;
6117 }
6118
837c4660 6119 /**
fe482240 6120 * Include pseudo fields LEFT JOIN.
77c5b619 6121 * @param string|array $sort can be a object or string
d9ab802d 6122 *
59f4c9ee 6123 * @return array|NULL
d9ab802d 6124 */
00be9182 6125 public function includePseudoFieldsJoin($sort) {
d9ab802d 6126 if (!$sort || empty($this->_pseudoConstantsSelect)) {
59f4c9ee 6127 return NULL;
d9ab802d
PJ
6128 }
6129 $sort = is_string($sort) ? $sort : $sort->orderBy();
be2fb01f 6130 $present = [];
d9ab802d
PJ
6131
6132 foreach ($this->_pseudoConstantsSelect as $name => $value) {
a7488080 6133 if (!empty($value['table'])) {
d9ab802d
PJ
6134 $regex = "/({$value['table']}\.|{$name})/";
6135 if (preg_match($regex, $sort)) {
6136 $this->_elemnt[$value['element']] = 1;
6137 $this->_select[$value['element']] = $value['select'];
6138 $this->_pseudoConstantsSelect[$name]['sorting'] = 1;
6139 $present[$value['table']] = $value['join'];
6140 }
6141 }
6142 }
6143 $presentSimpleFrom = $present;
6144
6145 if (array_key_exists('civicrm_worldregion', $this->_whereTables) &&
5c7dad85
TO
6146 array_key_exists('civicrm_country', $presentSimpleFrom)
6147 ) {
d9ab802d
PJ
6148 unset($presentSimpleFrom['civicrm_country']);
6149 }
6150 if (array_key_exists('civicrm_worldregion', $this->_tables) &&
5c7dad85
TO
6151 array_key_exists('civicrm_country', $present)
6152 ) {
d9ab802d
PJ
6153 unset($present['civicrm_country']);
6154 }
6155
6156 $presentClause = $presentSimpleFromClause = NULL;
6157 if (!empty($present)) {
6158 $presentClause = implode(' ', $present);
6159 }
6160 if (!empty($presentSimpleFrom)) {
6161 $presentSimpleFromClause = implode(' ', $presentSimpleFrom);
6162 }
6163
6164 $this->_fromClause = $this->_fromClause . $presentClause;
6165 $this->_simpleFromClause = $this->_simpleFromClause . $presentSimpleFromClause;
6166
be2fb01f 6167 return [$presentClause, $presentSimpleFromClause];
d9ab802d 6168 }
9ab34172 6169
0e2e76cf
EM
6170 /**
6171 * Build qill for field.
6172 *
6173 * Qill refers to the query detail visible on the UI.
6174 *
bb05da0c 6175 * @param string $daoName
6176 * @param string $fieldName
6177 * @param mixed $fieldValue
6178 * @param string $op
6179 * @param array $pseudoExtraParam
6180 * @param int $type
6181 * Type of the field per CRM_Utils_Type
0e2e76cf
EM
6182 *
6183 * @return array
6184 */
bb05da0c 6185 public static function buildQillForFieldValue(
6186 $daoName,
6187 $fieldName,
6188 $fieldValue,
6189 $op,
be2fb01f 6190 $pseudoExtraParam = [],
bb05da0c 6191 $type = CRM_Utils_Type::T_STRING
6192 ) {
afa0b07c 6193 $qillOperators = CRM_Core_SelectValues::getSearchBuilderOperators();
97c1cf60 6194
3086e282 6195 //API usually have fieldValue format as array(operator => array(values)),
6196 //so we need to separate operator out of fieldValue param
6197 if (is_array($fieldValue) && in_array(key($fieldValue), CRM_Core_DAO::acceptedSQLOperators(), TRUE)) {
6198 $op = key($fieldValue);
6199 $fieldValue = $fieldValue[$op];
6200 }
6201
9b183452 6202 // if Operator chosen is NULL/EMPTY then
6203 if (strpos($op, 'NULL') !== FALSE || strpos($op, 'EMPTY') !== FALSE) {
be2fb01f 6204 return [CRM_Utils_Array::value($op, $qillOperators, $op), ''];
9b183452 6205 }
6206
3fc41a5d 6207 // @todo - if the right BAO is passed in special handling for the below
6208 // fields should not be required. testQillOptions.
6209 if ($fieldName == 'country_id') {
e4001cf0 6210 $pseudoOptions = CRM_Core_PseudoConstant::country();
9b183452 6211 }
6212 elseif ($fieldName == 'county_id') {
e4001cf0 6213 $pseudoOptions = CRM_Core_PseudoConstant::county();
9b183452 6214 }
728eefa0 6215 elseif ($fieldName == 'world_region') {
e4001cf0 6216 $pseudoOptions = CRM_Core_PseudoConstant::worldRegion();
728eefa0 6217 }
97c1cf60 6218 elseif ($daoName == 'CRM_Event_DAO_Event' && $fieldName == 'id') {
450fcddb
JP
6219 $checkPermission = CRM_Utils_Array::value('check_permission', $pseudoExtraParam, TRUE);
6220 $pseudoOptions = CRM_Event_BAO_Event::getEvents(0, $fieldValue, TRUE, $checkPermission, TRUE);
97c1cf60 6221 }
6ffab5b7 6222 elseif ($fieldName == 'contribution_product_id') {
bb05da0c 6223 $pseudoOptions = CRM_Contribute_PseudoConstant::products();
6ffab5b7 6224 }
e8401ae2 6225 elseif ($daoName == 'CRM_Contact_DAO_Group' && $fieldName == 'id') {
bb05da0c 6226 $pseudoOptions = CRM_Core_PseudoConstant::group();
e8401ae2 6227 }
3086e282 6228 elseif ($daoName == 'CRM_Batch_BAO_EntityBatch' && $fieldName == 'batch_id') {
6229 $pseudoOptions = CRM_Contribute_PseudoConstant::batch();
6230 }
efb88612 6231 elseif ($daoName) {
bb05da0c 6232 $pseudoOptions = CRM_Core_PseudoConstant::get($daoName, $fieldName, $pseudoExtraParam);
97c1cf60 6233 }
9ab34172 6234
efb88612 6235 if (is_array($fieldValue)) {
be2fb01f 6236 $qillString = [];
bb05da0c 6237 if (!empty($pseudoOptions)) {
efb88612 6238 foreach ((array) $fieldValue as $val) {
bb05da0c 6239 $qillString[] = CRM_Utils_Array::value($val, $pseudoOptions, $val);
efb88612 6240 }
6241 $fieldValue = implode(', ', $qillString);
9ab34172 6242 }
efb88612 6243 else {
bb05da0c 6244 if ($type == CRM_Utils_Type::T_DATE) {
6245 foreach ($fieldValue as $index => $value) {
6246 $fieldValue[$index] = CRM_Utils_Date::customFormat($value);
6247 }
6248 }
6249 $separator = ', ';
6250 // @todo - this is a bit specific (one operator).
6251 // However it is covered by a unit test so can be altered later with
6252 // some confidence.
9de9a433 6253 if ($op === 'BETWEEN') {
bb05da0c 6254 $separator = ' AND ';
6255 }
6256 $fieldValue = implode($separator, $fieldValue);
9ab34172 6257 }
9ab34172 6258 }
bb05da0c 6259 elseif (!empty($pseudoOptions) && array_key_exists($fieldValue, $pseudoOptions)) {
6260 $fieldValue = $pseudoOptions[$fieldValue];
6261 }
6262 elseif ($type === CRM_Utils_Type::T_DATE) {
6263 $fieldValue = CRM_Utils_Date::customFormat($fieldValue);
9ab34172 6264 }
afa0b07c 6265
be2fb01f 6266 return [CRM_Utils_Array::value($op, $qillOperators, $op), $fieldValue];
9ab34172 6267 }
96025800 6268
1a7029b8
MD
6269 /**
6270 * Get the qill (search description for field) for the specified field.
6271 *
6272 * @param string $daoName
6273 * @param string $name
6274 * @param string $value
6275 * @param string|array $op
6276 * @param string $label
6277 *
6278 * @return string
6279 */
6280 public static function getQillValue($daoName, string $name, $value, $op, string $label) {
6281 list($op, $value) = self::buildQillForFieldValue($daoName, $name, $value, $op);
6282 return ts('%1 %2 %3', [1 => $label, 2 => $op, 3 => $value]);
6283 }
6284
836eb043 6285 /**
6286 * Alter value to reflect wildcard settings.
6287 *
6288 * The form will have tried to guess whether this is a good field to wildcard but there is
6289 * also a site-wide setting that specifies whether it is OK to append the wild card to the beginning
6290 * or only the end of the string
6291 *
6292 * @param bool $wildcard
6293 * This is a bool made on an assessment 'elsewhere' on whether this is a good field to wildcard.
6294 * @param string $op
6295 * Generally '=' or 'LIKE'.
6296 * @param string $value
6297 * The search string.
6298 *
6299 * @return string
6300 */
0b38e8f1 6301 public static function getWildCardedValue($wildcard, $op, $value) {
9de9a433 6302 if ($wildcard && $op === 'LIKE') {
836eb043 6303 if (CRM_Core_Config::singleton()->includeWildCardInName && (substr($value, 0, 1) != '%')) {
6304 return "%$value%";
6305 }
6306 else {
6307 return "$value%";
6308 }
6309 }
6310 else {
6311 return "$value";
6312 }
6313 }
6314
0b38e8f1 6315 /**
6316 * Process special fields of Search Form in OK (Operator in Key) format
6317 *
6318 * @param array $formValues
6319 * @param array $specialFields
6320 * Special params to be processed
6321 * @param array $changeNames
6322 * Array of fields whose name should be changed
6323 */
be2fb01f 6324 public static function processSpecialFormValue(&$formValues, $specialFields, $changeNames = []) {
3086e282 6325 // Array of special fields whose value are considered only for NULL or EMPTY operators
be2fb01f 6326 $nullableFields = ['contribution_batch_id'];
3086e282 6327
0b38e8f1 6328 foreach ($specialFields as $element) {
9c1bc317 6329 $value = $formValues[$element] ?? NULL;
0b38e8f1 6330 if ($value) {
6331 if (is_array($value)) {
c3f7ab62 6332 if (array_key_exists($element, $changeNames)) {
0b38e8f1 6333 unset($formValues[$element]);
6334 $element = $changeNames[$element];
6335 }
be2fb01f 6336 $formValues[$element] = ['IN' => $value];
0b38e8f1 6337 }
be2fb01f
CW
6338 elseif (in_array($value, ['IS NULL', 'IS NOT NULL', 'IS EMPTY', 'IS NOT EMPTY'])) {
6339 $formValues[$element] = [$value => 1];
3086e282 6340 }
6341 elseif (!in_array($element, $nullableFields)) {
0b38e8f1 6342 // if wildcard is already present return searchString as it is OR append and/or prepend with wildcard
6343 $isWilcard = strstr($value, '%') ? FALSE : CRM_Core_Config::singleton()->includeWildCardInName;
be2fb01f 6344 $formValues[$element] = ['LIKE' => self::getWildCardedValue($isWilcard, 'LIKE', $value)];
0b38e8f1 6345 }
6346 }
6347 }
6348 }
6349
db54ba06
TO
6350 /**
6351 * Parse and assimilate the various sort options.
6352 *
6353 * Side-effect: if sorting on a common column from a related table (`city`, `postal_code`,
6354 * `email`), the related table may be joined automatically.
6355 *
6356 * At time of writing, this code is deeply flawed and should be rewritten. For the moment,
6357 * it's been extracted to a standalone function.
6358 *
6359 * @param string|CRM_Utils_Sort $sort
6360 * The order by string.
db54ba06
TO
6361 * @param null $sortOrder
6362 * Who knows? Hu knows. He who knows Hu knows who.
59733b26 6363 *
b832662c 6364 * @return string
db54ba06 6365 * list(string $orderByClause, string $additionalFromClause).
afbe25c1 6366 *
b832662c 6367 * @throws \CRM_Core_Exception
db54ba06 6368 */
59733b26 6369 protected function prepareOrderBy($sort, $sortOrder) {
fbf68a81 6370 $orderByArray = [];
6371 $orderBy = '';
6372
6373 if (CRM_Core_Config::singleton()->includeOrderByClause ||
db54ba06
TO
6374 isset($this->_distinctComponentClause)
6375 ) {
6376 if ($sort) {
6377 if (is_string($sort)) {
6378 $orderBy = $sort;
6379 }
6380 else {
6381 $orderBy = trim($sort->orderBy());
6382 }
6383 // Deliberately remove the backticks again, as they mess up the evil
6384 // string munging below. This balanced by re-escaping before use.
6385 $orderBy = str_replace('`', '', $orderBy);
6386
6387 if (!empty($orderBy)) {
6388 // this is special case while searching for
6389 // change log CRM-1718
6390 if (preg_match('/sort_name/i', $orderBy)) {
6391 $orderBy = str_replace('sort_name', 'contact_a.sort_name', $orderBy);
6392 }
6393
db54ba06 6394 if ($sortOrder) {
fbf68a81 6395 $orderBy .= " $sortOrder";
db54ba06
TO
6396 }
6397
6398 // always add contact_a.id to the ORDER clause
6399 // so the order is deterministic
fbf68a81 6400 if (strpos('contact_a.id', $orderBy) === FALSE) {
6401 $orderBy .= ", contact_a.id";
db54ba06
TO
6402 }
6403 }
6404 }
db54ba06 6405 else {
fbf68a81 6406 $orderBy = " contact_a.sort_name ASC, contact_a.id";
db54ba06
TO
6407 }
6408 }
52cda5dc 6409 if (!$orderBy) {
59733b26 6410 return NULL;
252f0858 6411 }
6412 // Remove this here & add it at the end for simplicity.
fbf68a81 6413 $order = trim($orderBy);
52cda5dc 6414 $orderByArray = explode(',', $order);
db54ba06 6415
9d5c7f14 6416 foreach ($orderByArray as $orderByClause) {
6417 $orderByClauseParts = explode(' ', trim($orderByClause));
6418 $field = $orderByClauseParts[0];
2e1f50d6 6419 $direction = $orderByClauseParts[1] ?? 'asc';
7f594311 6420 $fieldSpec = $this->getMetadataForRealField($field);
252f0858 6421
708ce91f 6422 // This is a hacky add-in for primary address joins. Feel free to iterate as it is unit tested.
6423 // @todo much more cleanup on location handling in addHierarchical elements. Potentially
6424 // add keys to $this->fields to represent the actual keys for locations.
6425 if (empty($fieldSpec) && substr($field, 0, 2) === '1-') {
6426 $fieldSpec = $this->getMetadataForField(substr($field, 2));
6427 $this->addAddressTable('1-' . str_replace('civicrm_', '', $fieldSpec['table_name']), 'is_primary = 1');
6428 }
6429
7f594311 6430 if ($this->_returnProperties === []) {
6431 if (!empty($fieldSpec['table_name']) && !isset($this->_tables[$fieldSpec['table_name']])) {
6432 $this->_tables[$fieldSpec['table_name']] = 1;
6433 $order = $fieldSpec['where'] . ' ' . $direction;
6434 }
252f0858 6435
7f594311 6436 }
1ddfb09e 6437 $cfID = CRM_Core_BAO_CustomField::getKeyID($field);
6438 // add to cfIDs array if not present
6439 if (!empty($cfID) && !array_key_exists($cfID, $this->_cfIDs)) {
be2fb01f 6440 $this->_cfIDs[$cfID] = [];
1ddfb09e 6441 $this->_customQuery = new CRM_Core_BAO_CustomQuery($this->_cfIDs, TRUE, $this->_locationSpecificCustomFields);
6442 $this->_customQuery->query();
6443 $this->_select = array_merge($this->_select, $this->_customQuery->_select);
6444 $this->_tables = array_merge($this->_tables, $this->_customQuery->_tables);
6445 }
6446
6447 // By replacing the join to the option value table with the mysql construct
6448 // ORDER BY field('contribution_status_id', 2,1,4)
6449 // we can remove a join. In the case of the option value join it is
6450 /// a join known to cause slow queries.
6451 // @todo cover other pseudoconstant types. Limited to option group ones & Foreign keys
6452 // matching an id+name parrern in the
6453 // first instance for scope reasons. They require slightly different handling as the column (label)
6454 // is not declared for them.
6455 // @todo so far only integer fields are being handled. If we add string fields we need to look at
6456 // escaping.
6457 $pseudoConstantMetadata = CRM_Utils_Array::value('pseudoconstant', $fieldSpec, FALSE);
6458 if (!empty($pseudoConstantMetadata)
6459 ) {
6460 if (!empty($pseudoConstantMetadata['optionGroupName'])
6461 || $this->isPseudoFieldAnFK($fieldSpec)
6462 ) {
1dd6ae65
D
6463 // dev/core#1305 @todo this is not the right thing to do but for now avoid fatal error
6464 if (empty($fieldSpec['bao'])) {
6465 continue;
6466 }
1c2683cd
CW
6467 $sortedOptions = $fieldSpec['bao']::buildOptions($fieldSpec['name']);
6468 natcasesort($sortedOptions);
1ddfb09e 6469 $fieldIDsInOrder = implode(',', array_keys($sortedOptions));
6470 // Pretty sure this validation ALSO happens in the order clause & this can't be reached but...
6471 // this might give some early warning.
6472 CRM_Utils_Type::validate($fieldIDsInOrder, 'CommaSeparatedIntegers');
452a21f7
PF
6473 // use where if it's set to fully qualify ambiguous column names
6474 // i.e. civicrm_contribution.contribution_status_id instead of contribution_status_id
6475 $pseudoColumnName = $fieldSpec['where'] ?? $fieldSpec['name'];
6476 $order = str_replace("$field", "field($pseudoColumnName,$fieldIDsInOrder)", $order);
1ddfb09e 6477 }
6478 //CRM-12565 add "`" around $field if it is a pseudo constant
6479 // This appears to be for 'special' fields like locations with appended numbers or hyphens .. maybe.
6480 if (!empty($pseudoConstantMetadata['element']) && $pseudoConstantMetadata['element'] == $field) {
6481 $order = str_replace($field, "`{$field}`", $order);
6482 }
db54ba06
TO
6483 }
6484 }
6485
9d5c7f14 6486 $this->_fromClause = self::fromClause($this->_tables, NULL, NULL, $this->_primaryLocation, $this->_mode);
6487 $this->_simpleFromClause = self::fromClause($this->_whereTables, NULL, NULL, $this->_primaryLocation, $this->_mode);
6488
db54ba06
TO
6489 // The above code relies on crazy brittle string manipulation of a peculiarly-encoded ORDER BY
6490 // clause. But this magic helper which forgivingly reescapes ORDER BY.
9d5c7f14 6491 if ($order) {
252f0858 6492 $order = CRM_Utils_Type::escape($order, 'MysqlOrderBy');
59733b26 6493 return ' ORDER BY ' . $order;
db54ba06 6494 }
db54ba06
TO
6495 }
6496
3875e6b6 6497 /**
6498 * Convert a string of group IDs to a string of group labels.
6499 *
6500 * The original string may include duplicates and groups the user does not have
6501 * permission to see.
6502 *
6503 * @param CRM_Core_DAO $dao
6504 * @param string $val
6505 *
6506 * @return string
6507 */
6508 public function convertGroupIDStringToLabelString(&$dao, $val) {
6509 $groupIDs = explode(',', $val);
3875e6b6 6510 // Note that groups that the user does not have permission to will be excluded (good).
6d054a8e 6511 $groups = array_intersect_key(CRM_Core_PseudoConstant::group(), array_flip($groupIDs));
3875e6b6 6512 return implode(', ', $groups);
962f4484 6513
6514 }
6515
6516 /**
6517 * Set the qill and where properties for a field.
6518 *
6519 * This function is intended as a short-term function to encourage refactoring
6520 * & re-use - but really we should just have less special-casing.
6521 *
6522 * @param string $name
6523 * @param string $op
6524 * @param string|array $value
6525 * @param string $grouping
b832662c 6526 * @param array $field
6527 *
6528 * @throws \CRM_Core_Exception
962f4484 6529 */
6530 public function setQillAndWhere($name, $op, $value, $grouping, $field) {
6531 $this->_where[$grouping][] = self::buildClause("contact_a.{$name}", $op, $value);
6532 list($qillop, $qillVal) = CRM_Contact_BAO_Query::buildQillForFieldValue(NULL, $name, $value, $op);
be2fb01f 6533 $this->_qill[$grouping][] = ts("%1 %2 %3", [
962f4484 6534 1 => $field['title'],
6535 2 => $qillop,
6536 3 => $qillVal,
be2fb01f 6537 ]);
3875e6b6 6538 }
6539
86ab13b7 6540 /**
6541 * Has the pseudoconstant of the field been requested.
6542 *
6543 * For example if the field is payment_instrument_id then it
6544 * has been requested if either payment_instrument_id or payment_instrument
6545 * have been requested. Payment_instrument is the option groun name field value.
6546 *
6547 * @param array $field
7bd16b05 6548 * @param string $fieldName
6549 * The unique name of the field - ie. the one it will be aliased to in the query.
86ab13b7 6550 *
6551 * @return bool
6552 */
7bd16b05 6553 private function pseudoConstantNameIsInReturnProperties($field, $fieldName = NULL) {
124f3c1b 6554 $realField = $this->getMetadataForRealField($fieldName);
6555 if (!isset($realField['pseudoconstant'])) {
6556 return FALSE;
6557 }
6558 $pseudoConstant = $realField['pseudoconstant'];
6559 if (empty($pseudoConstant['optionGroupName']) &&
6560 CRM_Utils_Array::value('labelColumn', $pseudoConstant) !== 'name') {
6561 // We are increasing our pseudoconstant handling - but still very cautiously,
6562 // hence the check for labelColumn === name
86ab13b7 6563 return FALSE;
6564 }
86ab13b7 6565
f3acfdd9 6566 if (!empty($pseudoConstant['optionGroupName']) && !empty($this->_returnProperties[$pseudoConstant['optionGroupName']])) {
86ab13b7 6567 return TRUE;
6568 }
f3acfdd9 6569 if (!empty($this->_returnProperties[$fieldName])) {
7bd16b05 6570 return TRUE;
6571 }
6572 // Is this still required - the above goes off the unique name. Test with things like
5c9e101f 6573 // communication_preferences & prefix_id.
f3acfdd9 6574 if (!empty($this->_returnProperties[$field['name']])) {
86ab13b7 6575 return TRUE;
6576 }
6577 return FALSE;
6578 }
6579
f946d152 6580 /**
6581 * Get Select Clause.
6582 *
6583 * @return string
6584 */
6585 public function getSelect() {
b832662c 6586 $select = 'SELECT ';
f946d152 6587 if (isset($this->_distinctComponentClause)) {
6588 $select .= "{$this->_distinctComponentClause}, ";
6589 }
6590 $select .= implode(', ', $this->_select);
6591 return $select;
6592 }
6593
8ef6eb78 6594 /**
6595 * Add basic statistics to the summary.
6596 *
6597 * @param array $summary
6598 * @param string $where
6599 * @param string $from
6600 *
6601 * @return array
041ecc95 6602 * @throws \CRM_Core_Exception
8ef6eb78 6603 */
6604 protected function addBasicStatsToSummary(&$summary, $where, $from) {
fb75fcb0 6605 $summary['total']['count'] = 0;
6606 $summary['total']['amount'] = $summary['total']['avg'] = [];
8ef6eb78 6607
6608 $query = "
6609 SELECT COUNT( conts.total_amount ) as total_count,
6610 SUM( conts.total_amount ) as total_amount,
6611 AVG( conts.total_amount ) as total_avg,
6612 conts.currency as currency
6613 FROM (
6614 SELECT civicrm_contribution.total_amount, COUNT(civicrm_contribution.total_amount) as civicrm_contribution_total_amount_count,
6615 civicrm_contribution.currency
6616 $from
6617 $where AND civicrm_contribution.contribution_status_id = 1
6618 GROUP BY civicrm_contribution.id
6619 ) as conts
6620 GROUP BY currency";
6621
6622 $dao = CRM_Core_DAO::executeQuery($query);
6623
8ef6eb78 6624 while ($dao->fetch()) {
6625 $summary['total']['count'] += $dao->total_count;
6626 $summary['total']['amount'][] = CRM_Utils_Money::format($dao->total_amount, $dao->currency);
6627 $summary['total']['avg'][] = CRM_Utils_Money::format($dao->total_avg, $dao->currency);
6628 }
bfac1665 6629
261b72cf 6630 if (!empty($summary['total']['amount'])) {
6631 $summary['total']['amount'] = implode(',&nbsp;', $summary['total']['amount']);
6632 $summary['total']['avg'] = implode(',&nbsp;', $summary['total']['avg']);
6633 }
6634 else {
b64b7a9e 6635 $summary['total']['amount'] = $summary['total']['avg'] = 0;
261b72cf 6636 }
8ef6eb78 6637 return $summary;
6638 }
6639
6d68fd76 6640 /**
6641 * Add basic soft credit statistics to summary array.
6642 *
6643 * @param array $summary
6644 * @param string $where
6645 * @param string $from
b832662c 6646 *
6647 * @throws \CRM_Core_Exception
6d68fd76 6648 */
6649 protected function addBasicSoftCreditStatsToStats(&$summary, $where, $from) {
6650 $query = "
6651 SELECT COUNT( conts.total_amount ) as total_count,
6652 SUM( conts.total_amount ) as total_amount,
6653 AVG( conts.total_amount ) as total_avg,
6654 conts.currency as currency
6655 FROM (
6656 SELECT civicrm_contribution_soft.amount as total_amount, civicrm_contribution_soft.currency
6657 $from
6658 $where AND civicrm_contribution.contribution_status_id = 1 AND civicrm_contribution_soft.id IS NOT NULL
6659 GROUP BY civicrm_contribution_soft.id
6660 ) as conts
6661 GROUP BY currency";
6662
6663 $dao = CRM_Core_DAO::executeQuery($query);
6664 $summary['soft_credit']['count'] = 0;
6665 $summary['soft_credit']['amount'] = $summary['soft_credit']['avg'] = [];
6666 while ($dao->fetch()) {
6667 $summary['soft_credit']['count'] += $dao->total_count;
6668 $summary['soft_credit']['amount'][] = CRM_Utils_Money::format($dao->total_amount, $dao->currency);
6669 $summary['soft_credit']['avg'][] = CRM_Utils_Money::format($dao->total_avg, $dao->currency);
6670 }
6671 if (!empty($summary['soft_credit']['amount'])) {
6672 $summary['soft_credit']['amount'] = implode(',&nbsp;', $summary['soft_credit']['amount']);
6673 $summary['soft_credit']['avg'] = implode(',&nbsp;', $summary['soft_credit']['avg']);
6674 }
6675 else {
6676 $summary['soft_credit']['amount'] = $summary['soft_credit']['avg'] = 0;
6677 }
6678 }
6679
386fce20 6680 /**
6681 * Add basic stats about cancelled contributions to the summary.
6682 *
6683 * @param array $summary
6684 * @param string $where
6685 * @param string $from
b832662c 6686 *
6687 * @throws \CRM_Core_Exception
386fce20 6688 */
6689 protected function addBasicCancelStatsToSummary(&$summary, $where, $from) {
6690 $query = "
6691 SELECT COUNT( conts.total_amount ) as cancel_count,
6692 SUM( conts.total_amount ) as cancel_amount,
6693 AVG( conts.total_amount ) as cancel_avg,
6694 conts.currency as currency
6695 FROM (
6696 SELECT civicrm_contribution.total_amount, civicrm_contribution.currency
6697 $from
1a7029b8 6698 $where AND civicrm_contribution.cancel_date IS NOT NULL
386fce20 6699 GROUP BY civicrm_contribution.id
6700 ) as conts
6701 GROUP BY currency";
6702
6703 $dao = CRM_Core_DAO::executeQuery($query);
d54658f6 6704 $summary['cancel'] = ['count' => 0, 'amount' => 0, 'avg' => 0];
386fce20 6705 if ($dao->N <= 1) {
6706 if ($dao->fetch()) {
6707 $summary['cancel']['count'] = $dao->cancel_count;
6708 $summary['cancel']['amount'] = CRM_Utils_Money::format($dao->cancel_amount, $dao->currency);
6709 $summary['cancel']['avg'] = CRM_Utils_Money::format($dao->cancel_avg, $dao->currency);
6710 }
6711 }
6712 else {
6713 $summary['cancel']['count'] = 0;
6714 $summary['cancel']['amount'] = $summary['cancel']['avg'] = [];
6715 while ($dao->fetch()) {
6716 $summary['cancel']['count'] += $dao->cancel_count;
6717 $summary['cancel']['amount'][] = CRM_Utils_Money::format($dao->cancel_amount, $dao->currency);
6718 $summary['cancel']['avg'][] = CRM_Utils_Money::format($dao->cancel_avg, $dao->currency);
6719 }
6720 $summary['cancel']['amount'] = implode(',&nbsp;', $summary['cancel']['amount']);
6721 $summary['cancel']['avg'] = implode(',&nbsp;', $summary['cancel']['avg']);
6722 }
6723 }
6724
89d7bb76 6725 /**
89d7bb76 6726 * Create the sql query for an contact search.
6727 *
6728 * @param int $offset
6729 * The offset for the query.
6730 * @param int $rowCount
6731 * The number of rows to return.
6732 * @param string|CRM_Utils_Sort $sort
6733 * The order by string.
6734 * @param bool $count
6735 * Is this a count only query ?.
6736 * @param bool $includeContactIds
6737 * Should we include contact ids?.
6738 * @param bool $sortByChar
6739 * If true returns the distinct array of first characters for search results.
6740 * @param bool $groupContacts
6741 * If true, return only the contact ids.
6742 * @param string $additionalWhereClause
6743 * If the caller wants to further restrict the search (used for components).
6744 * @param null $sortOrder
6745 * @param string $additionalFromClause
6746 * Should be clause with proper joins, effective to reduce where clause load.
6747 *
6748 * @param bool $skipOrderAndLimit
9de9a433 6749 *
89d7bb76 6750 * @return string
9de9a433 6751 *
6752 * @throws \CRM_Core_Exception
89d7bb76 6753 */
6754 public function getSearchSQL(
6755 $offset = 0, $rowCount = 0, $sort = NULL,
6756 $count = FALSE, $includeContactIds = FALSE,
6757 $sortByChar = FALSE, $groupContacts = FALSE,
6758 $additionalWhereClause = NULL, $sortOrder = NULL,
6759 $additionalFromClause = NULL, $skipOrderAndLimit = FALSE) {
fe3416bf 6760
6761 $sqlParts = $this->getSearchSQLParts($offset, $rowCount, $sort, $count, $includeContactIds, $sortByChar, $groupContacts, $additionalWhereClause, $sortOrder, $additionalFromClause);
6762
caefed7d
MWMC
6763 if ($sortByChar) {
6764 CRM_Core_Error::deprecatedFunctionWarning('sort by char is deprecated - use alphabetQuery method');
6765 $sqlParts['order_by'] = 'ORDER BY sort_name asc';
6766 }
6767
fe3416bf 6768 if ($skipOrderAndLimit) {
6769 CRM_Core_Error::deprecatedFunctionWarning('skipOrderAndLimit is deprected - call getSearchSQLParts & construct it in the calling function');
6770 $query = "{$sqlParts['select']} {$sqlParts['from']} {$sqlParts['where']} {$sqlParts['having']} {$sqlParts['group_by']}";
6771 }
6772 else {
6773 $query = "{$sqlParts['select']} {$sqlParts['from']} {$sqlParts['where']} {$sqlParts['having']} {$sqlParts['group_by']} {$sqlParts['order_by']} {$sqlParts['limit']}";
6774 }
6775 return $query;
6776 }
6777
6778 /**
6779 * Get the component parts of the search query as an array.
6780 *
6781 * @param int $offset
6782 * The offset for the query.
6783 * @param int $rowCount
6784 * The number of rows to return.
6785 * @param string|CRM_Utils_Sort $sort
6786 * The order by string.
6787 * @param bool $count
6788 * Is this a count only query ?.
6789 * @param bool $includeContactIds
6790 * Should we include contact ids?.
6791 * @param bool $sortByChar
6792 * If true returns the distinct array of first characters for search results.
6793 * @param bool $groupContacts
6794 * If true, return only the contact ids.
6795 * @param string $additionalWhereClause
6796 * If the caller wants to further restrict the search (used for components).
6797 * @param null $sortOrder
6798 * @param string $additionalFromClause
6799 * Should be clause with proper joins, effective to reduce where clause load.
6800 *
6801 * @return array
b832662c 6802 * @throws \CRM_Core_Exception
fe3416bf 6803 */
6804 public function getSearchSQLParts($offset = 0, $rowCount = 0, $sort = NULL,
6805 $count = FALSE, $includeContactIds = FALSE,
6806 $sortByChar = FALSE, $groupContacts = FALSE,
6807 $additionalWhereClause = NULL, $sortOrder = NULL,
6808 $additionalFromClause = NULL) {
89d7bb76 6809 if ($includeContactIds) {
6810 $this->_includeContactIds = TRUE;
6811 $this->_whereClause = $this->whereClause();
6812 }
89d7bb76 6813 $onlyDeleted = in_array([
6814 'deleted_contacts',
6815 '=',
6816 '1',
6817 '0',
69078420 6818 '0',
89d7bb76 6819 ], $this->_params);
6820
6821 // if we’re explicitly looking for a certain contact’s contribs, events, etc.
6822 // and that contact happens to be deleted, set $onlyDeleted to true
6823 foreach ($this->_params as $values) {
9c1bc317
CW
6824 $name = $values[0] ?? NULL;
6825 $op = $values[1] ?? NULL;
6826 $value = $values[2] ?? NULL;
9de9a433 6827 if ($name === 'contact_id' and $op === '=') {
89d7bb76 6828 if (CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $value, 'is_deleted')) {
6829 $onlyDeleted = TRUE;
6830 }
6831 break;
6832 }
6833 }
6834
6835 // building the query string
6836 $groupBy = $groupByCols = NULL;
6837 if (!$count) {
6838 if (isset($this->_groupByComponentClause)) {
6839 $groupByCols = preg_replace('/^GROUP BY /', '', trim($this->_groupByComponentClause));
6840 $groupByCols = explode(', ', $groupByCols);
6841 }
6842 elseif ($this->_useGroupBy) {
6843 $groupByCols = ['contact_a.id'];
6844 }
6845 }
6846 if ($this->_mode & CRM_Contact_BAO_Query::MODE_ACTIVITY && (!$count)) {
6847 $groupByCols = ['civicrm_activity.id'];
6848 }
6849 if (!empty($groupByCols)) {
6850 $groupBy = " GROUP BY " . implode(', ', $groupByCols);
6851 }
6852
fe3416bf 6853 $order = $orderBy = '';
89d7bb76 6854 if (!$count) {
caefed7d 6855 if (!$sortByChar) {
59733b26 6856 $order = $this->prepareOrderBy($sort, $sortOrder);
caefed7d 6857 }
89d7bb76 6858 }
caefed7d
MWMC
6859 // Cases where we are disabling FGB (FULL_GROUP_BY_MODE):
6860 // 1. When GROUP BY columns are present then disable FGB otherwise it demands to add ORDER BY columns in GROUP BY and eventually in SELECT
89d7bb76 6861 // clause. This will impact the search query output.
caefed7d 6862 $disableFullGroupByMode = (!empty($groupBy) || $groupContacts);
89d7bb76 6863
6864 if ($disableFullGroupByMode) {
6865 CRM_Core_DAO::disableFullGroupByMode();
6866 }
6867
6868 // CRM-15231
6869 $this->_sort = $sort;
6870
6871 //CRM-15967
6872 $this->includePseudoFieldsJoin($sort);
6873
6874 list($select, $from, $where, $having) = $this->query($count, $sortByChar, $groupContacts, $onlyDeleted);
6875
6876 if ($additionalWhereClause) {
6877 $where = $where . ' AND ' . $additionalWhereClause;
6878 }
6879
6880 //additional from clause should be w/ proper joins.
6881 if ($additionalFromClause) {
6882 $from .= "\n" . $additionalFromClause;
6883 }
6884
6885 // if we are doing a transform, do it here
6886 // use the $from, $where and $having to get the contact ID
6887 if ($this->_displayRelationshipType) {
6888 $this->filterRelatedContacts($from, $where, $having);
6889 }
fe3416bf 6890 $limit = (!$count && $rowCount) ? " LIMIT " . CRM_Utils_Type::escape($offset, 'Int') . ", " . CRM_Utils_Type::escape($rowCount, 'Int') : '';
6891
6892 return [
6893 'select' => $select,
6894 'from' => $from,
6895 'where' => $where,
6896 'order_by' => $order,
6897 'group_by' => $groupBy,
6898 'having' => $having,
6899 'limit' => $limit,
6900 ];
89d7bb76 6901 }
6902
a0090e6b 6903 /**
6904 * Get the metadata for a given field.
6905 *
6906 * @param string $fieldName
6907 *
6908 * @return array
6909 */
6910 protected function getMetadataForField($fieldName) {
6911 if ($fieldName === 'contact_a.id') {
6912 // This seems to be the only anomaly.
6913 $fieldName = 'id';
6914 }
2e1f50d6
CW
6915 $pseudoField = $this->_pseudoConstantsSelect[$fieldName] ?? [];
6916 $field = $this->_fields[$fieldName] ?? $pseudoField;
a0090e6b 6917 $field = array_merge($field, $pseudoField);
6918 if (!empty($field) && empty($field['name'])) {
6919 // standardising field formatting here - over time we can phase out variants.
6920 // all paths using this currently unit tested
124f3c1b 6921 $field['name'] = CRM_Utils_Array::value('field_name', $field, CRM_Utils_Array::value('idCol', $field, $fieldName));
a0090e6b 6922 }
6923 return $field;
6924 }
6925
6926 /**
6927 * Get the metadata for a given field, returning the 'real field' if it is a pseudofield.
6928 *
6929 * @param string $fieldName
6930 *
6931 * @return array
6932 */
6b051312 6933 public function getMetadataForRealField($fieldName) {
a0090e6b 6934 $field = $this->getMetadataForField($fieldName);
124f3c1b 6935 if (!empty($field['is_pseudofield_for'])) {
6936 $field = $this->getMetadataForField($field['is_pseudofield_for']);
6937 $field['pseudofield_name'] = $fieldName;
6938 }
6939 elseif (!empty($field['pseudoconstant'])) {
6940 if (!empty($field['pseudoconstant']['optionGroupName'])) {
6941 $field['pseudofield_name'] = $field['pseudoconstant']['optionGroupName'];
6942 if (empty($field['table_name'])) {
6943 if (!empty($field['where'])) {
6944 $field['table_name'] = explode('.', $field['where'])[0];
6945 }
6946 else {
6947 $field['table_name'] = 'civicrm_contact';
6948 }
6949 }
6950 }
6951 }
6952 return $field;
a0090e6b 6953 }
6954
8df0c9e0 6955 /**
6956 * Get the field datatype, using the type in the database rather than the pseudofield, if a pseudofield.
6957 *
6958 * @param string $fieldName
6959 *
6960 * @return string
6961 */
6962 public function getDataTypeForRealField($fieldName) {
6963 return CRM_Utils_Type::typeToString($this->getMetadataForRealField($fieldName)['type']);
6964 }
6965
07f3c42b 6966 /**
6967 * If we have a field that is better rendered via the pseudoconstant handled them here.
6968 *
6969 * Rather than joining in the additional table we render the option value on output.
6970 *
6971 * @todo - so far this applies to a narrow range of pseudocontants. We are adding them
6972 * carefully with test coverage but aim to extend.
6973 *
07f3c42b 6974 * @param string $name
07f3c42b 6975 */
124f3c1b 6976 protected function addPseudoconstantFieldToSelect($name) {
6977 $field = $this->getMetadataForRealField($name);
6978 $realFieldName = $field['name'];
9c1bc317 6979 $pseudoFieldName = $field['pseudofield_name'] ?? NULL;
124f3c1b 6980 if ($pseudoFieldName) {
6981 // @todo - we don't really need to build this array now we have metadata more available with getMetadataForField fn.
6982 $this->_pseudoConstantsSelect[$pseudoFieldName] = [
6983 'pseudoField' => $pseudoFieldName,
6984 'idCol' => $realFieldName,
6985 'field_name' => $field['name'],
6986 'bao' => $field['bao'],
6987 'pseudoconstant' => $field['pseudoconstant'],
6988 ];
6989 }
6990
6991 $this->_tables[$field['table_name']] = 1;
6992 $this->_element[$realFieldName] = 1;
6993 $this->_select[$field['name']] = str_replace('civicrm_contact.', 'contact_a.', "{$field['where']} as `$realFieldName`");
6994 }
6995
6996 /**
6997 * Is this pseudofield a foreign key constraint.
6998 *
6999 * We are trying to cautiously expand our pseudoconstant handling. This check allows us
7000 * to extend to a narrowly defined type (and then only if the pseudofield is in the fields
7001 * array which is done for contributions which are mostly handled as pseudoconstants.
7002 *
7003 * @param $fieldSpec
7004 *
7005 * @return bool
7006 */
7007 protected function isPseudoFieldAnFK($fieldSpec) {
7008 if (empty($fieldSpec['FKClassName'])
7009 || CRM_Utils_Array::value('keyColumn', $fieldSpec['pseudoconstant']) !== 'id'
7010 || CRM_Utils_Array::value('labelColumn', $fieldSpec['pseudoconstant']) !== 'name') {
7011 return FALSE;
7012 }
7013 return TRUE;
07f3c42b 7014 }
7015
8fc9f99a 7016 /**
7017 * Is the field a relative date field.
7018 *
7019 * @param string $fieldName
7020 *
7021 * @return bool
7022 */
7023 protected function isARelativeDateField($fieldName) {
7024 if (substr($fieldName, -9, 9) !== '_relative') {
7025 return FALSE;
7026 }
7027 $realField = substr($fieldName, 0, strlen($fieldName) - 9);
7028 return isset($this->_fields[$realField]);
7029 }
7030
33a17d7e 7031 /**
7032 * Get the specifications for the field, if available.
7033 *
7034 * @param string $fieldName
7035 * Fieldname as displayed on the form.
7036 *
7037 * @return array
7038 */
7039 public function getFieldSpec($fieldName) {
7040 if (isset($this->_fields[$fieldName])) {
6b051312 7041 $fieldSpec = $this->_fields[$fieldName];
7042 if (!empty($fieldSpec['is_pseudofield_for'])) {
7043 $fieldSpec = array_merge($this->_fields[$fieldSpec['is_pseudofield_for']], $this->_fields[$fieldName]);
7044 }
7045 return $fieldSpec;
33a17d7e 7046 }
7047 $lowFieldName = str_replace('_low', '', $fieldName);
7048 if (isset($this->_fields[$lowFieldName])) {
7049 return array_merge($this->_fields[$lowFieldName], ['field_name' => $lowFieldName]);
7050 }
7051 $highFieldName = str_replace('_high', '', $fieldName);
7052 if (isset($this->_fields[$highFieldName])) {
7053 return array_merge($this->_fields[$highFieldName], ['field_name' => $highFieldName]);
7054 }
7055 return [];
7056 }
7057
7058 public function buildWhereForDate() {
7059
7060 }
7061
7062 /**
7063 * Is the field a relative date field.
7064 *
7065 * @param string $fieldName
7066 *
7067 * @return bool
7068 */
7069 protected function isADateRangeField($fieldName) {
7070 if (substr($fieldName, -4, 4) !== '_low' && substr($fieldName, -5, 5) !== '_high') {
7071 return FALSE;
7072 }
7073 return !empty($this->getFieldSpec($fieldName));
7074 }
7075
8fc9f99a 7076 /**
7077 * @param $values
7078 */
7079 protected function buildRelativeDateQuery(&$values) {
9c1bc317 7080 $value = $values[2] ?? NULL;
8fc9f99a 7081 if (empty($value)) {
7082 return;
7083 }
7084 $fieldName = substr($values[0], 0, strlen($values[0]) - 9);
7085 $fieldSpec = $this->_fields[$fieldName];
7086 $tableName = $fieldSpec['table_name'];
7087 $filters = CRM_Core_OptionGroup::values('relative_date_filters');
9c1bc317 7088 $grouping = $values[3] ?? NULL;
7f175707 7089 // If the table value is already set for a custom field it will be more nuanced than just '1'.
7090 $this->_tables[$tableName] = $this->_tables[$tableName] ?? 1;
7091 $this->_whereTables[$tableName] = $this->_whereTables[$tableName] ?? 1;
8fc9f99a 7092
7093 $dates = CRM_Utils_Date::getFromTo($value, NULL, NULL);
936ededf 7094 // Where end would be populated only if we are handling one of the weird ones with different from & to fields.
7095 $secondWhere = $fieldSpec['where_end'] ?? $fieldSpec['where'];
6245de60
JG
7096
7097 $where = $fieldSpec['where'];
7098 if ($fieldSpec['table_name'] === 'civicrm_contact') {
7099 // Special handling for contact table as it has a known alias in advanced search.
7100 $where = str_replace('civicrm_contact.', 'contact_a.', $where);
7101 $secondWhere = str_replace('civicrm_contact.', 'contact_a.', $secondWhere);
7102 }
7103
c47a2365 7104 $this->_qill[$grouping][] = $this->getQillForRelativeDateRange($dates[0], $dates[1], $fieldSpec['title'], $filters[$value]);
7105 if ($fieldName === 'relation_active_period_date') {
7106 // Hack this to fix regression https://lab.civicrm.org/dev/core/issues/1592
7107 // Not sure the 'right' fix.
7108 $this->_where[$grouping] = [self::getRelationshipActivePeriodClauses($dates[0], $dates[1], TRUE)];
7109 return;
7110 }
7111
8fc9f99a 7112 if (empty($dates[0])) {
7113 // ie. no start date we only have end date
936ededf 7114 $this->_where[$grouping][] = $secondWhere . " <= '{$dates[1]}'";
8fc9f99a 7115 }
7116 elseif (empty($dates[1])) {
936ededf 7117
8fc9f99a 7118 // ie. no end date we only have start date
6245de60 7119 $this->_where[$grouping][] = $where . " >= '{$dates[0]}'";
8fc9f99a 7120 }
7121 else {
7122 // we have start and end dates.
6245de60
JG
7123 if ($secondWhere !== $where) {
7124 $this->_where[$grouping][] = $where . ">= '{$dates[0]}' AND $secondWhere <='{$dates[1]}'";
936ededf 7125 }
7126 else {
7127 $this->_where[$grouping][] = $where . " BETWEEN '{$dates[0]}' AND '{$dates[1]}'";
7128 }
8fc9f99a 7129 }
7130 }
7131
33a17d7e 7132 /**
7133 * Build the query for a date field if it is a _high or _low field.
7134 *
7135 * @param $values
7136 *
7137 * @return bool
936ededf 7138 * @throws \CRM_Core_Exception
33a17d7e 7139 */
7140 public function buildDateRangeQuery($values) {
7141 if ($this->isADateRangeField($values[0])) {
7142 $fieldSpec = $this->getFieldSpec($values[0]);
7143 $title = empty($fieldSpec['unique_title']) ? $fieldSpec['title'] : $fieldSpec['unique_title'];
7144 $this->dateQueryBuilder($values, $fieldSpec['table_name'], $fieldSpec['field_name'], $fieldSpec['name'], $title);
7145 return TRUE;
7146 }
7147 return FALSE;
7148 }
7149
708ce91f 7150 /**
7151 * Add the address table into the query.
7152 *
7153 * @param string $tableKey
7154 * @param string $joinCondition
7155 *
7156 * @return array
7157 * - alias name
7158 * - address join.
7159 */
7160 protected function addAddressTable($tableKey, $joinCondition) {
7161 $tName = "$tableKey-address";
7162 $aName = "`$tableKey-address`";
7163 $this->_select["{$tName}_id"] = "`$tName`.id as `{$tName}_id`";
7164 $this->_element["{$tName}_id"] = 1;
7165 $addressJoin = "\nLEFT JOIN civicrm_address $aName ON ($aName.contact_id = contact_a.id AND $aName.$joinCondition)";
7166 $this->_tables[$tName] = $addressJoin;
7167
7168 return [
7169 $aName,
69078420 7170 $addressJoin,
708ce91f 7171 ];
7172 }
7173
d7570a7f 7174 /**
7175 * Get the clause for group status.
7176 *
7177 * @param int $grouping
7178 *
7179 * @return string
7180 */
7181 protected function getGroupStatusClause($grouping) {
7182 $statuses = $this->getSelectedGroupStatuses($grouping);
7183 return "status IN (" . implode(', ', $statuses) . ")";
7184 }
7185
7186 /**
7187 * Get an array of the statuses that have been selected.
7188 *
7189 * @param string $grouping
7190 *
7191 * @return array
b832662c 7192 *
7193 * @throws \CRM_Core_Exception
d7570a7f 7194 */
7195 protected function getSelectedGroupStatuses($grouping) {
7196 $statuses = [];
7197 $gcsValues = $this->getWhereValues('group_contact_status', $grouping);
7198 if ($gcsValues &&
7199 is_array($gcsValues[2])
7200 ) {
7201 foreach ($gcsValues[2] as $k => $v) {
7202 if ($v) {
7203 $statuses[] = "'" . CRM_Utils_Type::escape($k, 'String') . "'";
7204 }
7205 }
7206 }
7207 else {
7208 $statuses[] = "'Added'";
7209 }
7210 return $statuses;
7211 }
7212
9178793e 7213 /**
7214 * Get the qill value for the field.
7215 *
a43deb74 7216 * @param string $name
9178793e 7217 * @param array|int|string $value
a43deb74 7218 * @param string $op
7219 * @param array $fieldSpec
7220 * @param string $labelOverride
7221 * Label override, if required.
9178793e 7222 *
7223 * @return string
7224 */
a43deb74 7225 public function getQillForField($name, $value, $op, $fieldSpec = [], $labelOverride = NULL): string {
7226 list($qillop, $qillVal) = CRM_Contact_BAO_Query::buildQillForFieldValue($fieldSpec['bao'] ?? NULL, $name, $value, $op);
9178793e 7227 return (string) ts("%1 %2 %3", [
a43deb74 7228 1 => $labelOverride ?? $fieldSpec['title'],
9178793e 7229 2 => $qillop,
7230 3 => $qillVal,
7231 ]);
7232 }
7233
a43deb74 7234 /**
7235 * Where handling for any field with adequately defined metadata.
7236 *
7237 * @param array $fieldSpec
7238 * @param string $name
7239 * @param string|array|int $value
7240 * @param string $op
7241 * @param string|int $grouping
7242 *
7243 * @throws \CRM_Core_Exception
7244 */
7245 public function handleWhereFromMetadata($fieldSpec, $name, $value, $op, $grouping = 0) {
7246 $this->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause($fieldSpec['where'], $op, $value, CRM_Utils_Type::typeToString($fieldSpec['type']));
7247 $this->_qill[$grouping][] = $this->getQillForField($name, $value, $op, $fieldSpec);
b4d8c550 7248 if (!isset($this->_tables[$fieldSpec['table_name']])) {
a43deb74 7249 $this->_tables[$fieldSpec['table_name']] = 1;
7250 }
b4d8c550 7251 if (!isset($this->_whereTables[$fieldSpec['table_name']])) {
a43deb74 7252 $this->_whereTables[$fieldSpec['table_name']] = 1;
7253 }
7254 }
7255
c47a2365 7256 /**
7257 * Get the qill for the relative date range.
7258 *
7259 * @param string|null $from
7260 * @param string|null $to
7261 * @param string $fieldTitle
7262 * @param string $relativeRange
7263 *
7264 * @return string
7265 */
7266 protected function getQillForRelativeDateRange($from, $to, string $fieldTitle, string $relativeRange): string {
7267 if (!$from) {
7268 return ts('%1 is ', [$fieldTitle]) . $relativeRange . ' (' . ts('to %1', [CRM_Utils_Date::customFormat($to)]) . ')';
7269 }
7270 if (!$to) {
7271 return ts('%1 is ', [$fieldTitle]) . $relativeRange . ' (' . ts('from %1', [CRM_Utils_Date::customFormat($from)]) . ')';
7272 }
7273 return ts('%1 is ', [$fieldTitle]) . $relativeRange . ' (' . ts('between %1 and %2', [
7274 CRM_Utils_Date::customFormat($from),
7275 CRM_Utils_Date::customFormat($to),
7276 ]) . ')';
7277 }
7278
e7830dbe 7279}