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