CRM-12495 - cleanup civicrm_task / task_status / project
[civicrm-core.git] / CRM / Contact / BAO / Query.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2013
32 * $Id$
33 *
34 */
35
36 /**
37 * This class is a heart of search query building mechanism.
38 */
39 class CRM_Contact_BAO_Query {
40
41 /**
42 * The various search modes
43 *
44 * @var int
45 */
46 CONST
47 MODE_CONTACTS = 1,
48 MODE_CONTRIBUTE = 2,
49 MODE_MEMBER = 8,
50 MODE_EVENT = 16,
51 MODE_GRANT = 128,
52 MODE_PLEDGEBANK = 256,
53 MODE_PLEDGE = 512,
54 MODE_CASE = 2048,
55 MODE_ALL = 17407,
56 MODE_ACTIVITY = 4096,
57 MODE_CAMPAIGN = 8192,
58 MODE_MAILING = 16384;
59
60 /**
61 * the default set of return properties
62 *
63 * @var array
64 * @static
65 */
66 static $_defaultReturnProperties = NULL;
67
68 /**
69 * the default set of hier return properties
70 *
71 * @var array
72 * @static
73 */
74 static $_defaultHierReturnProperties;
75
76 /**
77 * the set of input params
78 *
79 * @var array
80 */
81 public $_params;
82
83 public $_cfIDs;
84
85 public $_paramLookup;
86
87 /**
88 * the set of output params
89 *
90 * @var array
91 */
92 public $_returnProperties;
93
94 /**
95 * the select clause
96 *
97 * @var array
98 */
99 public $_select;
100
101 /**
102 * the name of the elements that are in the select clause
103 * used to extract the values
104 *
105 * @var array
106 */
107 public $_element;
108
109 /**
110 * the tables involved in the query
111 *
112 * @var array
113 */
114 public $_tables;
115
116 /**
117 * the table involved in the where clause
118 *
119 * @var array
120 */
121 public $_whereTables;
122
123 /**
124 * the where clause
125 *
126 * @var array
127 */
128 public $_where;
129
130 /**
131 * the where string
132 *
133 * @var string
134 *
135 */
136 public $_whereClause;
137
138 /**
139 * additional permission Where Clause
140 *
141 * @var string
142 *
143 */
144 public $_permissionWhereClause;
145 /**
146 * the from string
147 *
148 * @var string
149 *
150 */
151 public $_fromClause;
152
153 /**
154 * additional permission from clause
155 *
156 * @var string
157 *
158 */
159 public $_permissionFromClause;
160
161 /**
162 * the from clause for the simple select and alphabetical
163 * select
164 *
165 * @var string
166 */
167 public $_simpleFromClause;
168
169 /**
170 * the having values
171 *
172 * @var string
173 *
174 */
175 public $_having;
176
177 /**
178 * The english language version of the query
179 *
180 * @var array
181 */
182 public $_qill;
183
184 /**
185 * All the fields that could potentially be involved in
186 * this query
187 *
188 * @var array
189 */
190 public $_fields;
191
192 /**
193 * The cache to translate the option values into labels
194 *
195 * @var array
196 */
197 public $_options;
198
199 /**
200 * are we in search mode
201 *
202 * @var boolean
203 */
204 public $_search = TRUE;
205
206 /**
207 * should we skip permission checking
208 *
209 * @var boolean
210 */
211 public $_skipPermission = FALSE;
212
213 /**
214 * should we skip adding of delete clause
215 *
216 * @var boolean
217 */
218 public $_skipDeleteClause = FALSE;
219
220 /**
221 * are we in strict mode (use equality over LIKE)
222 *
223 * @var boolean
224 */
225 public $_strict = FALSE;
226
227 /**
228 * What operator to use to group the clauses
229 *
230 * @var string
231 */
232 public $_operator = 'AND';
233
234 public $_mode = 1;
235
236 /**
237 * Should we only search on primary location
238 *
239 * @var boolean
240 */
241 public $_primaryLocation = TRUE;
242
243 /**
244 * are contact ids part of the query
245 *
246 * @var boolean
247 */
248 public $_includeContactIds = FALSE;
249
250 /**
251 * Should we use the smart group cache
252 *
253 * @var boolean
254 */
255 public $_smartGroupCache = TRUE;
256
257 /**
258 * Should we display contacts with a specific relationship type
259 *
260 * @var string
261 */
262 public $_displayRelationshipType = NULL;
263
264 /**
265 * reference to the query object for custom values
266 *
267 * @var Object
268 */
269 public $_customQuery;
270
271 /**
272 * should we enable the distinct clause, used if we are including
273 * more than one group
274 *
275 * @var boolean
276 */
277 public $_useDistinct = FALSE;
278
279 /**
280 * Should we just display one contact record
281 */
282 public $_useGroupBy = FALSE;
283
284 /**
285 * the relationship type direction
286 *
287 * @var array
288 * @static
289 */
290 static $_relType;
291
292 /**
293 * the activity role
294 *
295 * @var array
296 * @static
297 */
298 static $_activityRole;
299
300 /**
301 * Consider the component activity type
302 * during activity search.
303 *
304 * @var array
305 * @static
306 */
307 static $_considerCompActivities;
308
309 /**
310 * Consider with contact activities only,
311 * during activity search.
312 *
313 * @var array
314 * @static
315 */
316 static $_withContactActivitiesOnly;
317
318 /**
319 * use distinct component clause for component searches
320 *
321 * @var string
322 */
323 public $_distinctComponentClause;
324
325 /**
326 * use groupBy component clause for component searches
327 *
328 * @var string
329 */
330 public $_groupByComponentClause;
331
332 /**
333 * Track open panes, useful in advance search
334 *
335 * @var array
336 * @static
337 */
338 public static $_openedPanes = array();
339
340 /**
341 * The tables which have a dependency on location and/or address
342 *
343 * @var array
344 * @static
345 */
346 static $_dependencies = array(
347 'civicrm_state_province' => 1,
348 'civicrm_country' => 1,
349 'civicrm_county' => 1,
350 'civicrm_address' => 1,
351 'civicrm_location_type' => 1,
352 );
353
354 /**
355 * List of location specific fields
356 */
357 static $_locationSpecificFields = array(
358 'street_address',
359 'street_number',
360 'street_name',
361 'street_unit',
362 'supplemental_address_1',
363 'supplemental_address_2',
364 'city',
365 'postal_code',
366 'postal_code_suffix',
367 'geo_code_1',
368 'geo_code_2',
369 'state_province',
370 'country',
371 'county',
372 'phone',
373 'email',
374 'im',
375 'address_name',
376 );
377
378 /**
379 * Rememeber if we handle either end of a number or date range
380 * so we can skip the other
381 */
382 protected $_rangeCache = array();
383
384 /**
385 * class constructor which also does all the work
386 *
387 * @param array $params
388 * @param array $returnProperties
389 * @param array $fields
390 * @param boolean $includeContactIds
391 * @param boolean $strict
392 * @param boolean $mode - mode the search is operating on
393 *
394 * @return Object
395 * @access public
396 */
397 function __construct(
398 $params = NULL, $returnProperties = NULL, $fields = NULL,
399 $includeContactIds = FALSE, $strict = FALSE, $mode = 1,
400 $skipPermission = FALSE, $searchDescendentGroups = TRUE,
401 $smartGroupCache = TRUE, $displayRelationshipType = NULL,
402 $operator = 'AND'
403 ) {
404 $this->_params = &$params;
405 if ($this->_params == NULL) {
406 $this->_params = array();
407 }
408
409 if (empty($returnProperties)) {
410 $this->_returnProperties = self::defaultReturnProperties($mode);
411 }
412 else {
413 $this->_returnProperties = &$returnProperties;
414 }
415
416 $this->_includeContactIds = $includeContactIds;
417 $this->_strict = $strict;
418 $this->_mode = $mode;
419 $this->_skipPermission = $skipPermission;
420 $this->_smartGroupCache = $smartGroupCache;
421 $this->_displayRelationshipType = $displayRelationshipType;
422 $this->setOperator($operator);
423
424 if ($fields) {
425 $this->_fields = &$fields;
426 $this->_search = FALSE;
427 $this->_skipPermission = TRUE;
428 }
429 else {
430 $this->_fields = CRM_Contact_BAO_Contact::exportableFields('All', FALSE, TRUE, TRUE);
431
432 $fields = CRM_Core_Component::getQueryFields();
433 unset($fields['note']);
434 $this->_fields = array_merge($this->_fields, $fields);
435
436 // add activity fields
437 $fields = CRM_Activity_BAO_Activity::exportableFields();
438 $this->_fields = array_merge($this->_fields, $fields);
439 }
440
441 // basically do all the work once, and then reuse it
442 $this->initialize();
443 }
444
445 /**
446 * function which actually does all the work for the constructor
447 *
448 * @return void
449 * @access private
450 */
451 function initialize() {
452 $this->_select = array();
453 $this->_element = array();
454 $this->_tables = array();
455 $this->_whereTables = array();
456 $this->_where = array();
457 $this->_qill = array();
458 $this->_options = array();
459 $this->_cfIDs = array();
460 $this->_paramLookup = array();
461 $this->_having = array();
462
463 $this->_customQuery = NULL;
464
465 // reset cached static variables - CRM-5803
466 self::$_activityRole = NULL;
467 self::$_considerCompActivities = NULL;
468 self::$_withContactActivitiesOnly = NULL;
469
470 $this->_select['contact_id'] = 'contact_a.id as contact_id';
471 $this->_element['contact_id'] = 1;
472 $this->_tables['civicrm_contact'] = 1;
473
474 if (!empty($this->_params)) {
475 $this->buildParamsLookup();
476 }
477
478 $this->_whereTables = $this->_tables;
479
480 $this->selectClause();
481 $this->_whereClause = $this->whereClause();
482
483 $this->_fromClause = self::fromClause($this->_tables, NULL, NULL, $this->_primaryLocation, $this->_mode);
484 $this->_simpleFromClause = self::fromClause($this->_whereTables, NULL, NULL, $this->_primaryLocation, $this->_mode);
485
486 $this->openedSearchPanes(TRUE);
487 }
488
489 function buildParamsLookup() {
490 // first fix and handle contact deletion nicely
491 // this code is primarily for search builder use case
492 // where different clauses can specify if they want deleted
493 // contacts or not
494 // CRM-11971
495 $trashParamExists = FALSE;
496 $paramByGroup = array();
497 foreach ( $this->_params as $k => $param ) {
498 if (!empty($param[0]) && $param[0] == 'contact_is_deleted' ) {
499 $trashParamExists = TRUE;
500 }
501 if (!empty($param[3])) {
502 $paramByGroup[$param[3]][$k] = $param;
503 }
504 }
505
506 if ( $trashParamExists ) {
507 $this->_skipDeleteClause = TRUE;
508
509 //cycle through group sets and explicitly add trash param if not set
510 foreach ( $paramByGroup as $setID => $set ) {
511 if (
512 !in_array(array('contact_is_deleted', '=', '1', $setID, '0'), $this->_params) &&
513 !in_array(array('contact_is_deleted', '=', '0', $setID, '0'), $this->_params) ) {
514 $this->_params[] = array(
515 'contact_is_deleted',
516 '=',
517 '0',
518 $setID,
519 '0',
520 );
521 }
522 }
523 }
524
525 foreach ($this->_params as $value) {
526 if (!CRM_Utils_Array::value(0, $value)) {
527 continue;
528 }
529 $cfID = CRM_Core_BAO_CustomField::getKeyID($value[0]);
530 if ($cfID) {
531 if (!array_key_exists($cfID, $this->_cfIDs)) {
532 $this->_cfIDs[$cfID] = array();
533 }
534 $this->_cfIDs[$cfID][] = $value;
535 }
536
537 if (!array_key_exists($value[0], $this->_paramLookup)) {
538 $this->_paramLookup[$value[0]] = array();
539 }
540 $this->_paramLookup[$value[0]][] = $value;
541 }
542 }
543
544 /**
545 * Some composite fields do not appear in the fields array
546 * hack to make them part of the query
547 *
548 * @return void
549 * @access public
550 */
551 function addSpecialFields() {
552 static $special = array('contact_type', 'contact_sub_type', 'sort_name', 'display_name');
553 foreach ($special as $name) {
554 if (CRM_Utils_Array::value($name, $this->_returnProperties)) {
555 $this->_select[$name] = "contact_a.{$name} as $name";
556 $this->_element[$name] = 1;
557 }
558 }
559 }
560
561 /**
562 * Given a list of conditions in params and a list of desired
563 * return Properties generate the required select and from
564 * clauses. Note that since the where clause introduces new
565 * tables, the initial attempt also retrieves all variables used
566 * in the params list
567 *
568 * @return void
569 * @access public
570 */
571 function selectClause() {
572 $properties = array();
573
574 $this->addSpecialFields();
575
576 foreach ($this->_fields as $name => $field) {
577
578 // skip component fields
579 // there are done by the alter query below
580 // and need not be done on every field
581 if ((substr($name, 0, 12) == 'participant_') ||
582 (substr($name, 0, 7) == 'pledge_') ||
583 (substr($name, 0, 5) == 'case_')
584 ) {
585 continue;
586 }
587
588 // redirect to activity select clause
589 if (substr($name, 0, 9) == 'activity_') {
590 CRM_Activity_BAO_Query::select($this);
591 continue;
592 }
593
594 // if this is a hierarchical name, we ignore it
595 $names = explode('-', $name);
596 if (count($names > 1) && isset($names[1]) && is_numeric($names[1])) {
597 continue;
598 }
599
600 $cfID = CRM_Core_BAO_CustomField::getKeyID($name);
601
602 if (CRM_Utils_Array::value($name, $this->_paramLookup) ||
603 CRM_Utils_Array::value($name, $this->_returnProperties)
604 ) {
605
606 if ($cfID) {
607 // add to cfIDs array if not present
608 if (!array_key_exists($cfID, $this->_cfIDs)) {
609 $this->_cfIDs[$cfID] = array();
610 }
611 }
612 elseif (isset($field['where'])) {
613 list($tableName, $fieldName) = explode('.', $field['where'], 2);
614 if (isset($tableName)) {
615
616 if (CRM_Utils_Array::value($tableName, self::$_dependencies)) {
617 $this->_tables['civicrm_address'] = 1;
618 $this->_select['address_id'] = 'civicrm_address.id as address_id';
619 $this->_element['address_id'] = 1;
620 }
621
622 if ($tableName == 'gender' || $tableName == 'individual_prefix'
623 || $tableName == 'individual_suffix' || $tableName == 'im_provider'
624 || $tableName == 'email_greeting' || $tableName == 'postal_greeting'
625 || $tableName == 'addressee'
626 ) {
627 CRM_Core_OptionValue::select($this);
628 if (in_array($tableName, array(
629 'email_greeting', 'postal_greeting', 'addressee'))) {
630 //get display
631 $greetField = "{$name}_display";
632 $this->_select[$greetField] = "contact_a.{$greetField} as {$greetField}";
633 $this->_element[$greetField] = 1;
634 //get custom
635 $greetField = "{$name}_custom";
636 $this->_select[$greetField] = "contact_a.{$greetField} as {$greetField}";
637 $this->_element[$greetField] = 1;
638 }
639 }
640 else {
641 $this->_tables[$tableName] = 1;
642
643 // also get the id of the tableName
644 $tName = substr($tableName, 8);
645
646 if ($tName != 'contact') {
647 $this->_select["{$tName}_id"] = "{$tableName}.id as {$tName}_id";
648 $this->_element["{$tName}_id"] = 1;
649 }
650
651 //special case for phone
652 if ($name == 'phone') {
653 $this->_select['phone_type_id'] = "civicrm_phone.phone_type_id as phone_type_id";
654 $this->_element['phone_type_id'] = 1;
655 }
656
657 // if IM then select provider_id also
658 // to get "IM Service Provider" in a file to be exported, CRM-3140
659 if ($name == 'im') {
660 $this->_select['provider_id'] = "civicrm_im.provider_id as provider_id";
661 $this->_element['provider_id'] = 1;
662 }
663
664 if ($name == 'state_province') {
665 $this->_select[$name] = "civicrm_state_province.abbreviation as `$name`, civicrm_state_province.name as state_province_name";
666 $this->_element['state_province_name'] = 1;
667 }
668 elseif ($tName == 'contact') {
669 // special case, when current employer is set for Individual contact
670 if ($fieldName == 'organization_name') {
671 $this->_select[$name] = "IF ( contact_a.contact_type = 'Individual', NULL, contact_a.organization_name ) as organization_name";
672 }
673 elseif ($fieldName != 'id') {
674 $this->_select[$name] = "contact_a.{$fieldName} as `$name`";
675 }
676 }
677 else {
678 $this->_select[$name] = "{$field['where']} as `$name`";
679 }
680 $this->_element[$name] = 1;
681 }
682 }
683 }
684 elseif ($name === 'tags') {
685 $this->_useGroupBy = TRUE;
686 $this->_select[$name] = "GROUP_CONCAT(DISTINCT(civicrm_tag.name)) as tags";
687 $this->_element[$name] = 1;
688 $this->_tables['civicrm_tag'] = 1;
689 $this->_tables['civicrm_entity_tag'] = 1;
690 }
691 elseif ($name === 'groups') {
692 $this->_useGroupBy = TRUE;
693 $this->_select[$name] = "GROUP_CONCAT(DISTINCT(civicrm_group.title)) as groups";
694 $this->_element[$name] = 1;
695 $this->_tables['civicrm_group'] = 1;
696 }
697 elseif ($name === 'notes') {
698 $this->_useGroupBy = TRUE;
699 $this->_select[$name] = "GROUP_CONCAT(DISTINCT(civicrm_note.note)) as notes";
700 $this->_element[$name] = 1;
701 $this->_tables['civicrm_note'] = 1;
702 }
703 elseif ($name === 'current_employer') {
704 $this->_select[$name] = "IF ( contact_a.contact_type = 'Individual', contact_a.organization_name, NULL ) as current_employer";
705 $this->_element[$name] = 1;
706 }
707 }
708
709 if ($cfID &&
710 CRM_Utils_Array::value('is_search_range', $field)
711 ) {
712 // this is a custom field with range search enabled, so we better check for two/from values
713 if (CRM_Utils_Array::value($name . '_from', $this->_paramLookup)) {
714 if (!array_key_exists($cfID, $this->_cfIDs)) {
715 $this->_cfIDs[$cfID] = array();
716 }
717 foreach ($this->_paramLookup[$name . '_from'] as $pID => $p) {
718 // search in the cdID array for the same grouping
719 $fnd = FALSE;
720 foreach ($this->_cfIDs[$cfID] as $cID => $c) {
721 if ($c[3] == $p[3]) {
722 $this->_cfIDs[$cfID][$cID][2]['from'] = $p[2];
723 $fnd = TRUE;
724 }
725 }
726 if (!$fnd) {
727 $p[2] = array('from' => $p[2]);
728 $this->_cfIDs[$cfID][] = $p;
729 }
730 }
731 }
732 if (CRM_Utils_Array::value($name . '_to', $this->_paramLookup)) {
733 if (!array_key_exists($cfID, $this->_cfIDs)) {
734 $this->_cfIDs[$cfID] = array();
735 }
736 foreach ($this->_paramLookup[$name . '_to'] as $pID => $p) {
737 // search in the cdID array for the same grouping
738 $fnd = FALSE;
739 foreach ($this->_cfIDs[$cfID] as $cID => $c) {
740 if ($c[4] == $p[4]) {
741 $this->_cfIDs[$cfID][$cID][2]['to'] = $p[2];
742 $fnd = TRUE;
743 }
744 }
745 if (!$fnd) {
746 $p[2] = array('to' => $p[2]);
747 $this->_cfIDs[$cfID][] = $p;
748 }
749 }
750 }
751 }
752 }
753
754 // add location as hierarchical elements
755 $this->addHierarchicalElements();
756
757 // add multiple field like website
758 $this->addMultipleElements();
759
760 //fix for CRM-951
761 CRM_Core_Component::alterQuery($this, 'select');
762
763 if (!empty($this->_cfIDs)) {
764 $this->_customQuery = new CRM_Core_BAO_CustomQuery($this->_cfIDs, TRUE);
765 $this->_customQuery->query();
766 $this->_select = array_merge($this->_select, $this->_customQuery->_select);
767 $this->_element = array_merge($this->_element, $this->_customQuery->_element);
768 $this->_tables = array_merge($this->_tables, $this->_customQuery->_tables);
769 $this->_whereTables = array_merge($this->_whereTables, $this->_customQuery->_whereTables);
770 $this->_options = $this->_customQuery->_options;
771 }
772 }
773
774 /**
775 * If the return Properties are set in a hierarchy, traverse the hierarchy to get
776 * the return values
777 *
778 * @return void
779 * @access public
780 */
781 function addHierarchicalElements() {
782 if (!CRM_Utils_Array::value('location', $this->_returnProperties)) {
783 return;
784 }
785 if (!is_array($this->_returnProperties['location'])) {
786 return;
787 }
788
789 $locationTypes = CRM_Core_PseudoConstant::locationType();
790 $processed = array();
791 $index = 0;
792
793 $addressCustomFields = CRM_Core_BAO_CustomField::getFieldsForImport('Address');
794 $addressCustomFieldIds = array();
795
796 foreach ($this->_returnProperties['location'] as $name => $elements) {
797 $lCond = self::getPrimaryCondition($name);
798
799 if (!$lCond) {
800 $locationTypeId = array_search($name, $locationTypes);
801 if ($locationTypeId === FALSE) {
802 continue;
803 }
804 $lCond = "location_type_id = $locationTypeId";
805 $this->_useDistinct = TRUE;
806
807 //commented for CRM-3256
808 $this->_useGroupBy = TRUE;
809 }
810
811 $name = str_replace(' ', '_', $name);
812
813 $tName = "$name-location_type";
814 $ltName = "`$name-location_type`";
815 $this->_select["{$tName}_id"] = "`$tName`.id as `{$tName}_id`";
816 $this->_select["{$tName}"] = "`$tName`.name as `{$tName}`";
817 $this->_element["{$tName}_id"] = 1;
818 $this->_element["{$tName}"] = 1;
819
820 $locationTypeName = $tName;
821 $locationTypeJoin = array();
822
823 $addAddress = FALSE;
824 $addWhereCount = 0;
825 foreach ($elements as $elementFullName => $dontCare) {
826 $index++;
827 $elementName = $elementCmpName = $elementFullName;
828
829 if (substr($elementCmpName, 0, 5) == 'phone') {
830 $elementCmpName = 'phone';
831 }
832
833 if (in_array($elementCmpName, array_keys($addressCustomFields))) {
834 if ($cfID = CRM_Core_BAO_CustomField::getKeyID($elementCmpName)) {
835 $addressCustomFieldIds[$cfID][$name] = 1;
836 }
837 }
838 //add address table only once
839 if ((in_array($elementCmpName, self::$_locationSpecificFields) || !empty($addressCustomFieldIds))
840 && !$addAddress
841 && !in_array($elementCmpName, array('email', 'phone', 'im', 'openid'))
842 ) {
843 $tName = "$name-address";
844 $aName = "`$name-address`";
845 $this->_select["{$tName}_id"] = "`$tName`.id as `{$tName}_id`";
846 $this->_element["{$tName}_id"] = 1;
847 $addressJoin = "\nLEFT JOIN civicrm_address $aName ON ($aName.contact_id = contact_a.id AND $aName.$lCond)";
848 $this->_tables[$tName] = $addressJoin;
849 $locationTypeJoin[$tName] = " ( $aName.location_type_id = $ltName.id ) ";
850 $processed[$aName] = 1;
851 $addAddress = TRUE;
852 }
853
854 $cond = $elementType = '';
855 if (strpos($elementName, '-') !== FALSE) {
856 // this is either phone, email or IM
857 list($elementName, $elementType) = explode('-', $elementName);
858
859
860 if (($elementName != 'phone') && ($elementName != 'im')) {
861 $cond = self::getPrimaryCondition($elementType);
862 }
863 if ((!$cond) && ($elementName == 'phone')) {
864 $cond = "phone_type_id = '$elementType'";
865 }
866 elseif ((!$cond) && ($elementName == 'im')) {
867 // IM service provider id, CRM-3140
868 $cond = "provider_id = '$elementType'";
869 }
870 $elementType = '-' . $elementType;
871 }
872
873 $field = CRM_Utils_Array::value($elementName, $this->_fields);
874
875 // hack for profile, add location id
876 if (!$field) {
877 if ($elementType &&
878 // fix for CRM-882( to handle phone types )
879 !is_numeric($elementType)
880 ) {
881 if (is_numeric($name)) {
882 $field = CRM_Utils_Array::value($elementName . "-Primary$elementType", $this->_fields);
883 }
884 else {
885 $field = CRM_Utils_Array::value($elementName . "-$locationTypeId$elementType", $this->_fields);
886 }
887 }
888 elseif (is_numeric($name)) {
889 //this for phone type to work
890 if (in_array($elementName, array('phone', 'phone_ext'))) {
891 $field = CRM_Utils_Array::value($elementName . "-Primary" . $elementType, $this->_fields);
892 }
893 else {
894 $field = CRM_Utils_Array::value($elementName . "-Primary", $this->_fields);
895 }
896 }
897 else {
898 //this is for phone type to work for profile edit
899 if (in_array($elementName, array('phone', 'phone_ext'))) {
900 $field = CRM_Utils_Array::value($elementName . "-$locationTypeId$elementType", $this->_fields);
901 }
902 else {
903 $field = CRM_Utils_Array::value($elementName . "-$locationTypeId", $this->_fields);
904 }
905 }
906 }
907
908 // check if there is a value, if so also add to where Clause
909 $addWhere = FALSE;
910 if ($this->_params) {
911 $nm = $elementName;
912 if (isset($locationTypeId)) {
913 $nm .= "-$locationTypeId";
914 }
915 if (!is_numeric($elementType)) {
916 $nm .= "$elementType";
917 }
918
919 foreach ($this->_params as $id => $values) {
920 if ($values[0] == $nm ||
921 (in_array($elementName, array('phone', 'im'))
922 && (strpos($values[0], $nm) !== FALSE)
923 )
924 ) {
925 $addWhere = TRUE;
926 $addWhereCount++;
927 break;
928 }
929 }
930 }
931
932 if ($field && isset($field['where'])) {
933 list($tableName, $fieldName) = explode('.', $field['where'], 2);
934 $tName = $name . '-' . substr($tableName, 8) . $elementType;
935 if (isset($tableName)) {
936 $this->_select["{$tName}_id"] = "`$tName`.id as `{$tName}_id`";
937 $this->_element["{$tName}_id"] = 1;
938 if (substr($tName, -15) == '-state_province') {
939 // FIXME: hack to fix CRM-1900
940 $a = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::SYSTEM_PREFERENCES_NAME,
941 'address_format'
942 );
943
944 if (substr_count($a, 'state_province_name') > 0) {
945 $this->_select["{$name}-{$elementFullName}"] = "`$tName`.name as `{$name}-{$elementFullName}`";
946 }
947 else {
948 $this->_select["{$name}-{$elementFullName}"] = "`$tName`.abbreviation as `{$name}-{$elementFullName}`";
949 }
950 }
951 else {
952 if (substr($elementFullName, 0, 2) == 'im') {
953 $provider = "{$name}-{$elementFullName}-provider_id";
954 $this->_select[$provider] = "`$tName`.provider_id as `{$name}-{$elementFullName}-provider_id`";
955 $this->_element[$provider] = 1;
956 }
957
958 $this->_select["{$name}-{$elementFullName}"] = "`$tName`.$fieldName as `{$name}-{$elementFullName}`";
959 }
960
961 $this->_element["{$name}-{$elementFullName}"] = 1;
962 if (!CRM_Utils_Array::value("`$tName`", $processed)) {
963 $processed["`$tName`"] = 1;
964 $newName = $tableName . '_' . $index;
965 switch ($tableName) {
966 case 'civicrm_phone':
967 case 'civicrm_email':
968 case 'civicrm_im':
969 case 'civicrm_openid':
970
971 $this->_tables[$tName] = "\nLEFT JOIN $tableName `$tName` ON contact_a.id = `$tName`.contact_id AND `$tName`.$lCond";
972 // this special case to add phone type
973 if ($cond) {
974 $phoneTypeCondition = " AND `$tName`.$cond ";
975 //gross hack to pickup corrupted data also, CRM-7603
976 if (strpos($cond, 'phone_type_id') !== FALSE) {
977 $phoneTypeCondition = " AND ( `$tName`.$cond OR `$tName`.phone_type_id IS NULL ) ";
978 }
979 $this->_tables[$tName] .= $phoneTypeCondition;
980 }
981
982 //build locationType join
983 $locationTypeJoin[$tName] = " ( `$tName`.location_type_id = $ltName.id )";
984
985 if ($addWhere) {
986 $this->_whereTables[$tName] = $this->_tables[$tName];
987 }
988 break;
989
990 case 'civicrm_state_province':
991 $this->_tables[$tName] = "\nLEFT JOIN $tableName `$tName` ON `$tName`.id = $aName.state_province_id";
992 if ($addWhere) {
993 $this->_whereTables["{$name}-address"] = $addressJoin;
994 $this->_whereTables[$tName] = $this->_tables[$tName];
995 }
996 break;
997
998 case 'civicrm_country':
999 $this->_tables[$newName] = "\nLEFT JOIN $tableName `$tName` ON `$tName`.id = $aName.country_id";
1000 if ($addWhere) {
1001 $this->_whereTables["{$name}-address"] = $addressJoin;
1002 $this->_whereTables[$newName] = $this->_tables[$newName];
1003 }
1004 break;
1005
1006 case 'civicrm_county':
1007 $this->_tables[$newName] = "\nLEFT JOIN $tableName `$tName` ON `$tName`.id = $aName.county_id";
1008 if ($addWhere) {
1009 $this->_whereTables["{$name}-address"] = $addressJoin;
1010 $this->_whereTables[$newName] = $this->_tables[$newName];
1011 }
1012 break;
1013
1014 default:
1015 if ($addWhere) {
1016 $this->_whereTables["{$name}-address"] = $addressJoin;
1017 }
1018 break;
1019 }
1020 }
1021 }
1022 }
1023 }
1024
1025 // add location type join
1026 $ltypeJoin = "\nLEFT JOIN civicrm_location_type $ltName ON ( " . implode('OR', $locationTypeJoin) . " )";
1027 $this->_tables[$locationTypeName] = $ltypeJoin;
1028
1029 // table should be present in $this->_whereTables,
1030 // to add its condition in location type join, CRM-3939.
1031 if ($addWhereCount) {
1032 $locClause = array();
1033 foreach ($this->_whereTables as $tableName => $clause) {
1034 if (CRM_Utils_Array::value($tableName, $locationTypeJoin)) {
1035 $locClause[] = $locationTypeJoin[$tableName];
1036 }
1037 }
1038
1039 if (!empty($locClause)) {
1040 $this->_whereTables[$locationTypeName] = "\nLEFT JOIN civicrm_location_type $ltName ON ( " . implode('OR', $locClause) . " )";
1041 }
1042 }
1043 }
1044
1045 if (!empty($addressCustomFieldIds)) {
1046 $cfIDs = $addressCustomFieldIds;
1047 $customQuery = new CRM_Core_BAO_CustomQuery($cfIDs);
1048 foreach ($addressCustomFieldIds as $cfID => $locTypeName) {
1049 foreach ($locTypeName as $name => $dnc) {
1050 $fieldName = "$name-custom_{$cfID}";
1051 $tName = "$name-address-custom-{$cfID}";
1052 $aName = "`$name-address-custom-{$cfID}`";
1053 $this->_select["{$tName}_id"] = "`$tName`.id as `{$tName}_id`";
1054 $this->_element["{$tName}_id"] = 1;
1055 $this->_select[$fieldName] = "`$tName`.{$customQuery->_fields[$cfID]['column_name']} as `{$fieldName}`";
1056 $this->_element[$fieldName] = 1;
1057 $this->_tables[$tName] = "\nLEFT JOIN {$customQuery->_fields[$cfID]['table_name']} $aName ON ($aName.entity_id = `$name-address`.id)";
1058 }
1059 }
1060 }
1061 }
1062
1063 /**
1064 * If the return Properties are set in a hierarchy, traverse the hierarchy to get
1065 * the return values
1066 *
1067 * @return void
1068 * @access public
1069 */
1070 function addMultipleElements() {
1071 if (!CRM_Utils_Array::value('website', $this->_returnProperties)) {
1072 return;
1073 }
1074 if (!is_array($this->_returnProperties['website'])) {
1075 return;
1076 }
1077
1078 foreach ($this->_returnProperties['website'] as $key => $elements) {
1079 foreach ($elements as $elementFullName => $dontCare) {
1080 $tName = "website-{$key}-{$elementFullName}";
1081 $this->_select["{$tName}_id"] = "`$tName`.id as `{$tName}_id`";
1082 $this->_select["{$tName}"] = "`$tName`.url as `{$tName}`";
1083 $this->_element["{$tName}_id"] = 1;
1084 $this->_element["{$tName}"] = 1;
1085
1086 $type = "website-{$key}-website_type_id";
1087 $this->_select[$type] = "`$tName`.website_type_id as `{$type}`";
1088 $this->_element[$type] = 1;
1089 $this->_tables[$tName] = "\nLEFT JOIN civicrm_website `$tName` ON (`$tName`.contact_id = contact_a.id )";
1090 }
1091 }
1092 }
1093
1094 /**
1095 * generate the query based on what type of query we need
1096 *
1097 * @param boolean $count
1098 * @param boolean $sortByChar
1099 * @param boolean $groupContacts
1100 *
1101 * @return the sql string for that query (this will most likely
1102 * change soon)
1103 * @access public
1104 */
1105 function query($count = FALSE, $sortByChar = FALSE, $groupContacts = FALSE) {
1106 if ($count) {
1107 if (isset($this->_distinctComponentClause)) {
1108 // we add distinct to get the right count for components
1109 // for the more complex result set, we use GROUP BY the same id
1110 // CRM-9630
1111 $select = "SELECT count( DISTINCT {$this->_distinctComponentClause} )";
1112 }
1113 else {
1114 $select = 'SELECT count(DISTINCT contact_a.id) as rowCount';
1115 }
1116 $from = $this->_simpleFromClause;
1117 if ($this->_useDistinct) {
1118 $this->_useGroupBy = TRUE;
1119 }
1120 }
1121 elseif ($sortByChar) {
1122 $select = 'SELECT DISTINCT UPPER(LEFT(contact_a.sort_name, 1)) as sort_name';
1123 $from = $this->_simpleFromClause;
1124 }
1125 elseif ($groupContacts) {
1126 $select = 'SELECT contact_a.id as id';
1127 if ($this->_useDistinct) {
1128 $this->_useGroupBy = TRUE;
1129 }
1130 $from = $this->_simpleFromClause;
1131 }
1132 else {
1133 if (CRM_Utils_Array::value('group', $this->_paramLookup)) {
1134 // make sure there is only one element
1135 // this is used when we are running under smog and need to know
1136 // how the contact was added (CRM-1203)
1137 if ((count($this->_paramLookup['group']) == 1) &&
1138 (count($this->_paramLookup['group'][0][2]) == 1)
1139 ) {
1140 $groups = array_keys($this->_paramLookup['group'][0][2]);
1141 $groupId = $groups[0];
1142
1143 //check if group is saved search
1144 $group = new CRM_Contact_BAO_Group();
1145 $group->id = $groupId;
1146 $group->find(TRUE);
1147
1148 if (!isset($group->saved_search_id)) {
1149 $tbName = "`civicrm_group_contact-{$groupId}`";
1150 $this->_select['group_contact_id'] = "$tbName.id as group_contact_id";
1151 $this->_element['group_contact_id'] = 1;
1152 $this->_select['status'] = "$tbName.status as status";
1153 $this->_element['status'] = 1;
1154 $this->_tables[$tbName] = 1;
1155 }
1156 }
1157 $this->_useGroupBy = TRUE;
1158 }
1159 if ($this->_useDistinct && !isset($this->_distinctComponentClause)) {
1160 if (!($this->_mode & CRM_Contact_BAO_Query::MODE_ACTIVITY)) {
1161 // CRM-5954
1162 $this->_select['contact_id'] = 'contact_a.id as contact_id';
1163 $this->_useDistinct = FALSE;
1164 $this->_useGroupBy = TRUE;
1165 }
1166 }
1167
1168 $select = "SELECT ";
1169 if (isset($this->_distinctComponentClause)) {
1170 $select .= "{$this->_distinctComponentClause}, ";
1171 }
1172 $select .= implode(', ', $this->_select);
1173 $from = $this->_fromClause;
1174 }
1175
1176 $where = '';
1177 if (!empty($this->_whereClause)) {
1178 $where = "WHERE {$this->_whereClause}";
1179 }
1180
1181 $having = '';
1182 if (!empty($this->_having)) {
1183 foreach ($this->_having as $havingsets) {
1184 foreach ($havingsets as $havingset) {
1185 $havingvalue[] = $havingset;
1186 }
1187 }
1188 $having = ' HAVING ' . implode(' AND ', $havingvalue);
1189 }
1190
1191 // if we are doing a transform, do it here
1192 // use the $from, $where and $having to get the contact ID
1193 if ($this->_displayRelationshipType) {
1194 $this->filterRelatedContacts($from, $where, $having);
1195 }
1196
1197 return array($select, $from, $where, $having);
1198 }
1199
1200 function &getWhereValues($name, $grouping) {
1201 $result = NULL;
1202 foreach ($this->_params as $id => $values) {
1203 if ($values[0] == $name && $values[3] == $grouping) {
1204 return $values;
1205 }
1206 }
1207
1208 return $result;
1209 }
1210
1211 static function fixDateValues($relative, &$from, &$to) {
1212 if ($relative) {
1213 list($from, $to) = CRM_Utils_Date::getFromTo($relative, $from, $to);
1214 }
1215 }
1216
1217 static function convertFormValues(&$formValues, $wildcard = 0, $useEquals = FALSE) {
1218 $params = array();
1219 if (empty($formValues)) {
1220 return $params;
1221 }
1222
1223 foreach ($formValues as $id => $values) {
1224 if ($id == 'privacy') {
1225 if (is_array($formValues['privacy'])) {
1226 $op = CRM_Utils_Array::value('do_not_toggle', $formValues['privacy']) ? '=' : '!=';
1227 foreach ($formValues['privacy'] as $key => $value) {
1228 if ($value) {
1229 $params[] = array($key, $op, $value, 0, 0);
1230 }
1231 }
1232 }
1233 }
1234 elseif ($id == 'email_on_hold') {
1235 if ($formValues['email_on_hold']['on_hold']) {
1236 $params[] = array('on_hold', '=', $formValues['email_on_hold']['on_hold'], 0, 0);
1237 }
1238 }
1239 elseif (preg_match('/_date_relative$/', $id) ||
1240 $id == 'event_relative' ||
1241 $id == 'case_from_relative' ||
1242 $id == 'case_to_relative'
1243 ) {
1244 if ($id == 'event_relative') {
1245 $fromRange = 'event_start_date_low';
1246 $toRange = 'event_end_date_high';
1247 }
1248 else if ($id == 'case_from_relative') {
1249 $fromRange = 'case_from_start_date_low';
1250 $toRange = 'case_from_start_date_high';
1251 }
1252 else if ($id == 'case_to_relative') {
1253 $fromRange = 'case_to_end_date_low';
1254 $toRange = 'case_to_end_date_high';
1255 }
1256 else {
1257 $dateComponent = explode('_date_relative', $id);
1258 $fromRange = "{$dateComponent[0]}_date_low";
1259 $toRange = "{$dateComponent[0]}_date_high";
1260 }
1261
1262 if (array_key_exists($fromRange, $formValues) && array_key_exists($toRange, $formValues)) {
1263 CRM_Contact_BAO_Query::fixDateValues($formValues[$id], $formValues[$fromRange], $formValues[$toRange]);
1264 continue;
1265 }
1266 }
1267 else {
1268 $values = CRM_Contact_BAO_Query::fixWhereValues($id, $values, $wildcard, $useEquals);
1269
1270 if (!$values) {
1271 continue;
1272 }
1273 $params[] = $values;
1274 }
1275 }
1276 return $params;
1277 }
1278
1279 static function &fixWhereValues($id, &$values, $wildcard = 0, $useEquals = FALSE) {
1280 // skip a few search variables
1281 static $skipWhere = NULL;
1282 static $arrayValues = NULL;
1283 static $likeNames = NULL;
1284 $result = NULL;
1285
1286 if (CRM_Utils_System::isNull($values)) {
1287 return $result;
1288 }
1289
1290 if (!$skipWhere) {
1291 $skipWhere = array(
1292 'task', 'radio_ts', 'uf_group_id',
1293 'component_mode', 'qfKey', 'operator',
1294 'display_relationship_type',
1295 );
1296 }
1297
1298 if (in_array($id, $skipWhere) ||
1299 substr($id, 0, 4) == '_qf_' ||
1300 substr($id, 0, 7) == 'hidden_'
1301 ) {
1302 return $result;
1303 }
1304
1305 if (!$likeNames) {
1306 $likeNames = array('sort_name', 'email', 'note', 'display_name');
1307 }
1308
1309 // email comes in via advanced search
1310 // so use wildcard always
1311 if ($id == 'email') {
1312 $wildcard = 1;
1313 }
1314
1315 if (!$useEquals && in_array($id, $likeNames)) {
1316 $result = array($id, 'LIKE', $values, 0, 1);
1317 }
1318 elseif (is_string($values) && strpos($values, '%') !== FALSE) {
1319 $result = array($id, 'LIKE', $values, 0, 0);
1320 }
1321 elseif ($id == 'group') {
1322 if (is_array($values)) {
1323 foreach ($values as $groupIds => $val) {
1324 $matches = array();
1325 if (preg_match('/-(\d+)$/', $groupIds, $matches)) {
1326 if (strlen($matches[1]) > 0) {
1327 $values[$matches[1]] = 1;
1328 unset($values[$groupIds]);
1329 }
1330 }
1331 }
1332 }
1333 else {
1334 $groupIds = explode(',', $values);
1335 unset($values);
1336 foreach ($groupIds as $groupId) {
1337 $values[$groupId] = 1;
1338 }
1339 }
1340
1341 $result = array($id, 'IN', $values, 0, 0);
1342 }
1343 elseif ($id == 'contact_tags' || $id == 'tag') {
1344 if (!is_array($values)) {
1345 $tagIds = explode(',', $values);
1346 unset($values);
1347 foreach ($tagIds as $tagId) {
1348 $values[$tagId] = 1;
1349 }
1350 }
1351 $result = array($id, 'IN', $values, 0, 0);
1352 }
1353 else {
1354 $result = array($id, '=', $values, 0, $wildcard);
1355 }
1356
1357 return $result;
1358 }
1359
1360 function whereClauseSingle(&$values) {
1361 // do not process custom fields or prefixed contact ids or component params
1362 if (CRM_Core_BAO_CustomField::getKeyID($values[0]) ||
1363 (substr($values[0], 0, CRM_Core_Form::CB_PREFIX_LEN) == CRM_Core_Form::CB_PREFIX) ||
1364 (substr($values[0], 0, 13) == 'contribution_') ||
1365 (substr($values[0], 0, 6) == 'event_') ||
1366 (substr($values[0], 0, 12) == 'participant_') ||
1367 (substr($values[0], 0, 7) == 'member_') ||
1368 (substr($values[0], 0, 6) == 'grant_') ||
1369 (substr($values[0], 0, 7) == 'pledge_') ||
1370 (substr($values[0], 0, 5) == 'case_') ||
1371 (substr($values[0], 0, 10) == 'financial_')
1372 ) {
1373 return;
1374 }
1375
1376 switch ($values[0]) {
1377 case 'deleted_contacts':
1378 $this->deletedContacts($values);
1379 return;
1380
1381 case 'contact_type':
1382 $this->contactType($values);
1383 return;
1384
1385 case 'contact_sub_type':
1386 $this->contactSubType($values);
1387 return;
1388
1389 case 'group':
1390 list($name, $op, $value, $grouping, $wildcard) = $values;
1391 $this->group($values);
1392 return;
1393 case 'group_type':
1394 // so we resolve this into a list of groups & proceed as if they had been
1395 // handed in
1396 list($name, $op, $value, $grouping, $wildcard) = $values;
1397 $values[0] = 'group';
1398 $values[1] = 'IN';
1399 $this->_paramLookup['group'][0][0] ='group';
1400 $this->_paramLookup['group'][0][1] = 'IN';
1401 $this->_paramLookup['group'][0][2] = $values[2] = $this->getGroupsFromTypeCriteria($value);
1402 $this->group($values);
1403 return;
1404 // case tag comes from find contacts
1405
1406 case 'tag_search':
1407 $this->tagSearch($values);
1408 return;
1409
1410 case 'tag':
1411 case 'contact_tags':
1412 $this->tag($values);
1413 return;
1414
1415 case 'note':
1416 case 'note_body':
1417 case 'note_subject':
1418 $this->notes($values);
1419 return;
1420
1421 case 'uf_user':
1422 $this->ufUser($values);
1423 return;
1424
1425 case 'sort_name':
1426 case 'display_name':
1427 $this->sortName($values);
1428 return;
1429
1430 case 'email':
1431 $this->email($values);
1432 return;
1433
1434 case 'phone_numeric':
1435 $this->phone_numeric($values);
1436 return;
1437
1438 case 'phone_phone_type_id':
1439 case 'phone_location_type_id':
1440 $this->phone_option_group($values);
1441 return;
1442
1443 case 'street_address':
1444 $this->street_address($values);
1445 return;
1446
1447 case 'street_number':
1448 $this->street_number($values);
1449 return;
1450
1451 case 'sortByCharacter':
1452 $this->sortByCharacter($values);
1453 return;
1454
1455 case 'location_type':
1456 $this->locationType($values);
1457 return;
1458
1459 case 'county':
1460 $this->county($values);
1461 return;
1462
1463 case 'state_province':
1464 $this->stateProvince($values);
1465 return;
1466
1467 case 'country':
1468 $this->country($values, FALSE);
1469 return;
1470
1471 case 'postal_code':
1472 case 'postal_code_low':
1473 case 'postal_code_high':
1474 $this->postalCode($values);
1475 return;
1476
1477 case 'activity_date':
1478 case 'activity_date_low':
1479 case 'activity_date_high':
1480 case 'activity_role':
1481 case 'activity_status':
1482 case 'activity_subject':
1483 case 'test_activities':
1484 case 'activity_type_id':
1485 case 'activity_survey_id':
1486 case 'activity_tags':
1487 case 'activity_taglist':
1488 case 'activity_test':
1489 case 'activity_contact_name':
1490 case 'activity_campaign_id':
1491 case 'activity_engagement_level':
1492 case 'activity_id':
1493 case 'source_contact':
1494 CRM_Activity_BAO_Query::whereClauseSingle($values, $this);
1495 return;
1496
1497 case 'birth_date_low':
1498 case 'birth_date_high':
1499 case 'deceased_date_low':
1500 case 'deceased_date_high':
1501 $this->demographics($values);
1502 return;
1503
1504 case 'log_date_low':
1505 case 'log_date_high':
1506 $this->modifiedDates($values);
1507 return;
1508
1509 case 'changed_by':
1510 $this->changeLog($values);
1511 return;
1512
1513 case 'do_not_phone':
1514 case 'do_not_email':
1515 case 'do_not_mail':
1516 case 'do_not_sms':
1517 case 'do_not_trade':
1518 case 'is_opt_out':
1519 $this->privacy($values);
1520 return;
1521
1522 case 'privacy_options':
1523 $this->privacyOptions($values);
1524 return;
1525
1526 case 'privacy_operator':
1527 case 'privacy_toggle':
1528 // these are handled by privacy options
1529 return;
1530
1531 case 'preferred_communication_method':
1532 $this->preferredCommunication($values);
1533 return;
1534
1535 case 'relation_type_id':
1536 $this->relationship($values);
1537 return;
1538
1539 case 'relation_target_name':
1540 case 'relation_status':
1541 case 'relation_date_low':
1542 case 'relation_date_high':
1543 // since this case is handled with the above
1544 return;
1545
1546 case 'task_status_id':
1547 $this->task($values);
1548 return;
1549
1550 case 'task_id':
1551 // since this case is handled with the above
1552 return;
1553
1554 case 'prox_distance':
1555 CRM_Contact_BAO_ProximityQuery::process($this, $values);
1556 return;
1557
1558 case 'prox_street_address':
1559 case 'prox_city':
1560 case 'prox_postal_code':
1561 case 'prox_state_province_id':
1562 case 'prox_country_id':
1563 // handled by the proximity_distance clause
1564 return;
1565
1566 default:
1567 $this->restWhere($values);
1568 return;
1569 }
1570 }
1571
1572 /**
1573 * Given a list of conditions in params generate the required
1574 * where clause
1575 *
1576 * @return void
1577 * @access public
1578 */
1579 function whereClause() {
1580 $this->_where[0] = array();
1581 $this->_qill[0] = array();
1582
1583 $config = CRM_Core_Config::singleton();
1584
1585 $this->includeContactIds();
1586 if (!empty($this->_params)) {
1587
1588 foreach (array_keys($this->_params) as $id) {
1589 if (!CRM_Utils_Array::value(0, $this->_params[$id])) {
1590 continue;
1591 }
1592 // check for both id and contact_id
1593 if ($this->_params[$id][0] == 'id' || $this->_params[$id][0] == 'contact_id') {
1594 if (
1595 $this->_params[$id][1] == 'IS NULL' ||
1596 $this->_params[$id][1] == 'IS NOT NULL'
1597 ) {
1598 $this->_where[0][] = "contact_a.id {$this->_params[$id][1]}";
1599 }
1600 elseif (is_array($this->_params[$id][2])) {
1601 $idList = implode("','", $this->_params[$id][2]);
1602 $this->_where[0][] = "contact_a.id IN ({$idList})";
1603 }
1604 else {
1605 $this->_where[0][] = "contact_a.id {$this->_params[$id][1]} {$this->_params[$id][2]}";
1606 }
1607 }
1608 else {
1609 $this->whereClauseSingle($this->_params[$id]);
1610 }
1611 }
1612
1613 CRM_Core_Component::alterQuery($this, 'where');
1614 }
1615
1616 if ($this->_customQuery) {
1617 // Added following if condition to avoid the wrong value diplay for 'myaccount' / any UF info.
1618 // Hope it wont affect the other part of civicrm.. if it does please remove it.
1619 if (!empty($this->_customQuery->_where)) {
1620 $this->_where = CRM_Utils_Array::crmArrayMerge($this->_where, $this->_customQuery->_where);
1621 }
1622
1623 $this->_qill = CRM_Utils_Array::crmArrayMerge($this->_qill, $this->_customQuery->_qill);
1624 }
1625
1626 $clauses = array();
1627 $andClauses = array();
1628
1629 $validClauses = 0;
1630 if (!empty($this->_where)) {
1631 foreach ($this->_where as $grouping => $values) {
1632 if ($grouping > 0 && !empty($values)) {
1633 $clauses[$grouping] = ' ( ' . implode(" {$this->_operator} ", $values) . ' ) ';
1634 $validClauses++;
1635 }
1636 }
1637
1638 if (!empty($this->_where[0])) {
1639 $andClauses[] = ' ( ' . implode(" {$this->_operator} ", $this->_where[0]) . ' ) ';
1640 }
1641 if (!empty($clauses)) {
1642 $andClauses[] = ' ( ' . implode(' OR ', $clauses) . ' ) ';
1643 }
1644
1645 if ($validClauses > 1) {
1646 $this->_useDistinct = TRUE;
1647 }
1648 }
1649
1650 return implode(' AND ', $andClauses);
1651 }
1652
1653 function restWhere(&$values) {
1654 $name = CRM_Utils_Array::value(0, $values);
1655 $op = CRM_Utils_Array::value(1, $values);
1656 $value = CRM_Utils_Array::value(2, $values);
1657 $grouping = CRM_Utils_Array::value(3, $values);
1658 $wildcard = CRM_Utils_Array::value(4, $values);
1659
1660 if (isset($grouping) && !CRM_Utils_Array::value($grouping, $this->_where)) {
1661 $this->_where[$grouping] = array();
1662 }
1663
1664 $multipleFields = array('url');
1665
1666 //check if the location type exits for fields
1667 $lType = '';
1668 $locType = explode('-', $name);
1669
1670 if (!in_array($locType[0], $multipleFields)) {
1671 //add phone type if exists
1672 if (isset($locType[2]) && $locType[2]) {
1673 $locType[2] = CRM_Core_DAO::escapeString($locType[2]);
1674 }
1675 }
1676
1677 $field = CRM_Utils_Array::value($name, $this->_fields);
1678
1679 if (!$field) {
1680 $field = CRM_Utils_Array::value($locType[0], $this->_fields);
1681
1682 if (!$field) {
1683 return;
1684 }
1685 }
1686
1687 $setTables = TRUE;
1688
1689 $strtolower = function_exists('mb_strtolower') ? 'mb_strtolower' : 'strtolower';
1690
1691 if (substr($name, 0, 14) === 'state_province') {
1692 if (isset($locType[1]) && is_numeric($locType[1])) {
1693 $setTables = FALSE;
1694
1695 list($tName, $fldName) = self::getLocationTableName($field['where'], $locType);
1696 $this->_whereTables[$tName] = $this->_tables[$tName];
1697 $where = "`$tName`.$fldName";
1698 }
1699 else {
1700 $where = $field['where'];
1701 }
1702
1703 if (is_numeric($value)) {
1704 $where = str_replace('.name', '.id', $where);
1705 $this->_where[$grouping][] = self::buildClause($where, $op, $value, 'Positive');
1706 $states = CRM_Core_PseudoConstant::stateProvince();
1707 $value = $states[(int ) $value];
1708 }
1709 else {
1710 $wc = self::caseImportant($op) ? "LOWER($where)" : $where;
1711 $this->_where[$grouping][] = self::buildClause($wc, $op, $value, 'String');
1712 }
1713 if (!$lType) {
1714 $this->_qill[$grouping][] = ts('State') . " $op '$value'";
1715 }
1716 else {
1717 $this->_qill[$grouping][] = ts('State') . " ($lType) $op '$value'";
1718 }
1719 }
1720 elseif (substr($name, 0, 7) === 'country') {
1721 if (isset($locType[1]) && is_numeric($locType[1])) {
1722 $setTables = FALSE;
1723
1724 list($tName, $fldName) = self::getLocationTableName($field['where'], $locType);
1725 $this->_whereTables[$tName] = $this->_tables[$tName];
1726 $where = "`$tName`.$fldName";
1727 }
1728 else {
1729 $where = $field['where'];
1730 }
1731
1732 if (is_numeric($value)) {
1733 $where = str_replace('.name', '.id', $where);
1734 $this->_where[$grouping][] = self::buildClause($where, $op, $value, 'Positive');
1735 $countries = CRM_Core_PseudoConstant::country();
1736 $value = $countries[(int ) $value];
1737 }
1738 else {
1739 $wc = self::caseImportant($op) ? "LOWER($where)" : $where;
1740 $this->_where[$grouping][] = self::buildClause($wc, $op, $value, 'String');
1741 }
1742 if (!$lType) {
1743 $this->_qill[$grouping][] = ts('Country') . " $op '$value'";
1744 }
1745 else {
1746 $this->_qill[$grouping][] = ts('Country') . " ($lType) $op '$value'";
1747 }
1748 }
1749 elseif (substr($name, 0, 6) === 'county') {
1750 if (isset($locType[1]) && is_numeric($locType[1])) {
1751 $setTables = FALSE;
1752
1753 list($tName, $fldName) = self::getLocationTableName($field['where'], $locType);
1754 $this->_whereTables[$tName] = $this->_tables[$tName];
1755 $where = "`$tName`.$fldName";
1756 }
1757 else {
1758 $where = $field['where'];
1759 }
1760 if (is_numeric($value)) {
1761 $where = str_replace('.name', '.id', $where);
1762 $this->_where[$grouping][] = self::buildClause($where, $op, $value, 'Positive');
1763 $counties = CRM_Core_PseudoConstant::county();
1764 $value = $counties[(int ) $value];
1765 }
1766 else {
1767 $wc = self::caseImportant($op) ? "LOWER($where)" : $where;
1768 $this->_where[$grouping][] = self::buildClause($wc, $op, $value, 'String');
1769 }
1770
1771 if (!$lType) {
1772 $this->_qill[$grouping][] = ts('County') . " $op '$value'";
1773 }
1774 else {
1775 $this->_qill[$grouping][] = ts('County') . " ($lType) $op '$value'";
1776 }
1777 }
1778 elseif ($name === 'world_region') {
1779 $this->optionValueQuery(
1780 $name, $op, $value, $grouping,
1781 CRM_Core_PseudoConstant::worldRegion(),
1782 $field,
1783 ts('World Region')
1784 );
1785 }
1786 elseif ($name === 'individual_prefix') {
1787 $this->optionValueQuery(
1788 $name, $op, $value, $grouping,
1789 CRM_Core_PseudoConstant::individualPrefix(),
1790 $field,
1791 ts('Individual Prefix')
1792 );
1793 }
1794 elseif ($name === 'individual_suffix') {
1795 $this->optionValueQuery(
1796 $name, $op, $value, $grouping,
1797 CRM_Core_PseudoConstant::individualSuffix(),
1798 $field,
1799 ts('Individual Suffix')
1800 );
1801 }
1802 elseif ($name === 'gender') {
1803 $this->optionValueQuery(
1804 $name, $op, $value, $grouping,
1805 CRM_Core_PseudoConstant::gender(),
1806 $field,
1807 ts('Gender')
1808 );
1809 self::$_openedPanes[ts('Demographics')] = TRUE;
1810 }
1811 elseif ($name === 'birth_date') {
1812 $date = CRM_Utils_Date::processDate($value);
1813 $this->_where[$grouping][] = self::buildClause("contact_a.{$name}", $op, $date);
1814
1815 if ($date) {
1816 $date = CRM_Utils_Date::customFormat($date);
1817 $this->_qill[$grouping][] = "$field[title] $op \"$date\"";
1818 }
1819 else {
1820 $this->_qill[$grouping][] = "$field[title] $op";
1821 }
1822 self::$_openedPanes[ts('Demographics')] = TRUE;
1823 }
1824 elseif ($name === 'deceased_date') {
1825 $date = CRM_Utils_Date::processDate($value);
1826 $this->_where[$grouping][] = self::buildClause("contact_a.{$name}", $op, $date);
1827 if ($date) {
1828 $date = CRM_Utils_Date::customFormat($date);
1829 $this->_qill[$grouping][] = "$field[title] $op \"$date\"";
1830 }
1831 else {
1832 $this->_qill[$grouping][] = "$field[title] $op";
1833 }
1834 self::$_openedPanes[ts('Demographics')] = TRUE;
1835 }
1836 elseif ($name === 'is_deceased') {
1837 $this->_where[$grouping][] = self::buildClause("contact_a.{$name}", $op, $value);
1838 $this->_qill[$grouping][] = "$field[title] $op \"$value\"";
1839 self::$_openedPanes[ts('Demographics')] = TRUE;
1840 }
1841 elseif ($name === 'contact_id') {
1842 if (is_int($value)) {
1843 $this->_where[$grouping][] = self::buildClause($field['where'], $op, $value);
1844 $this->_qill[$grouping][] = "$field[title] $op $value";
1845 }
1846 }
1847 elseif ($name === 'name') {
1848 $value = $strtolower(CRM_Core_DAO::escapeString($value));
1849 if ($wildcard) {
1850 $value = "%$value%";
1851 $op = 'LIKE';
1852 }
1853 $wc = self::caseImportant($op) ? "LOWER({$field['where']})" : "{$field['where']}";
1854 $this->_where[$grouping][] = self::buildClause($wc, $op, "'$value'");
1855 $this->_qill[$grouping][] = "$field[title] $op \"$value\"";
1856 }
1857 elseif ($name === 'current_employer') {
1858 $value = $strtolower(CRM_Core_DAO::escapeString($value));
1859 if ($wildcard) {
1860 $value = "%$value%";
1861 $op = 'LIKE';
1862 }
1863 $wc = self::caseImportant($op) ? "LOWER(contact_a.organization_name)" : "contact_a.organization_name";
1864 $this->_where[$grouping][] = self::buildClause($wc, $op,
1865 "'$value' AND contact_a.contact_type ='Individual'"
1866 );
1867 $this->_qill[$grouping][] = "$field[title] $op \"$value\"";
1868 }
1869 elseif ($name === 'email_greeting') {
1870 $filterCondition = array('greeting_type' => 'email_greeting');
1871 $this->optionValueQuery(
1872 $name, $op, $value, $grouping,
1873 CRM_Core_PseudoConstant::greeting($filterCondition),
1874 $field,
1875 ts('Email Greeting')
1876 );
1877 }
1878 elseif ($name === 'postal_greeting') {
1879 $filterCondition = array('greeting_type' => 'postal_greeting');
1880 $this->optionValueQuery(
1881 $name, $op, $value, $grouping,
1882 CRM_Core_PseudoConstant::greeting($filterCondition),
1883 $field,
1884 ts('Postal Greeting')
1885 );
1886 }
1887 elseif ($name === 'addressee') {
1888 $filterCondition = array('greeting_type' => 'addressee');
1889 $this->optionValueQuery(
1890 $name, $op, $value, $grouping,
1891 CRM_Core_PseudoConstant::greeting($filterCondition),
1892 $field,
1893 ts('Addressee')
1894 );
1895 }
1896 elseif (substr($name, 0, 4) === 'url-') {
1897 $tName = 'civicrm_website';
1898 $this->_whereTables[$tName] = $this->_tables[$tName] = "\nLEFT JOIN civicrm_website ON ( civicrm_website.contact_id = contact_a.id )";
1899 $value = $strtolower(CRM_Core_DAO::escapeString($value));
1900 if ($wildcard) {
1901 $value = "%$value%";
1902 $op = 'LIKE';
1903 }
1904
1905 $wc = 'civicrm_website.url';
1906 $this->_where[$grouping][] = self::buildClause($wc, $op, "'$value'");
1907 $this->_qill[$grouping][] = "$field[title] $op \"$value\"";
1908 }
1909 elseif ($name === 'contact_is_deleted') {
1910 $this->_where[$grouping][] = self::buildClause("contact_a.is_deleted", $op, $value);
1911 $this->_qill[$grouping][] = "$field[title] $op \"$value\"";
1912 }
1913 else {
1914 // sometime the value is an array, need to investigate and fix
1915 if (is_array($value)) {
1916 CRM_Core_Error::fatal();
1917 }
1918
1919 if (!empty($field['where'])) {
1920 if ($op != 'IN') {
1921 $value = $strtolower($value);
1922 }
1923 if ($wildcard) {
1924 $value = "%$value%";
1925 $op = 'LIKE';
1926 }
1927
1928 if (isset($locType[1]) &&
1929 is_numeric($locType[1])
1930 ) {
1931 $setTables = FALSE;
1932
1933 //get the location name
1934 $locationType = CRM_Core_PseudoConstant::locationType();
1935 list($tName, $fldName) = self::getLocationTableName($field['where'], $locType);
1936
1937 $where = "`$tName`.$fldName";
1938
1939 $this->_where[$grouping][] = self::buildClause("LOWER($where)", $op, $value);
1940 $this->_whereTables[$tName] = $this->_tables[$tName];
1941 $this->_qill[$grouping][] = "$field[title] $op '$value'";
1942 }
1943 else {
1944 list($tableName, $fieldName) = explode('.', $field['where'], 2);
1945 if ($tableName == 'civicrm_contact') {
1946 $fieldName = "LOWER(contact_a.{$fieldName})";
1947 }
1948 else {
1949 if ($op != 'IN' && !is_numeric($value)) {
1950 $fieldName = "LOWER({$field['where']})";
1951 }
1952 else {
1953 $fieldName = "{$field['where']}";
1954 }
1955 }
1956
1957 $type = NULL;
1958 if (CRM_Utils_Array::value('type', $field)) {
1959 $type = CRM_Utils_Type::typeToString($field['type']);
1960 }
1961
1962 $this->_where[$grouping][] = self::buildClause($fieldName, $op, $value, $type);
1963 $this->_qill[$grouping][] = "$field[title] $op $value";
1964 }
1965 }
1966 }
1967
1968 if ($setTables && isset($field['where'])) {
1969 list($tableName, $fieldName) = explode('.', $field['where'], 2);
1970 if (isset($tableName)) {
1971 $this->_tables[$tableName] = 1;
1972 $this->_whereTables[$tableName] = 1;
1973 }
1974 }
1975 }
1976
1977
1978 static function getLocationTableName(&$where, &$locType) {
1979 if (isset($locType[1]) && is_numeric($locType[1])) {
1980 list($tbName, $fldName) = explode(".", $where);
1981
1982 //get the location name
1983 $locationType = CRM_Core_PseudoConstant::locationType();
1984 $specialFields = array('email', 'im', 'phone', 'openid', 'phone_ext');
1985 if (in_array($locType[0], $specialFields)) {
1986 //hack to fix / special handing for phone_ext
1987 if ($locType[0] == 'phone_ext') {
1988 $locType[0] = 'phone';
1989 }
1990 if (isset($locType[2]) && $locType[2]) {
1991 $tName = "{$locationType[$locType[1]]}-{$locType[0]}-{$locType[2]}";
1992 }
1993 else {
1994 $tName = "{$locationType[$locType[1]]}-{$locType[0]}";
1995 }
1996 }
1997 elseif (in_array($locType[0],
1998 array(
1999 'address_name', 'street_address', 'supplemental_address_1', 'supplemental_address_2',
2000 'city', 'postal_code', 'postal_code_suffix', 'geo_code_1', 'geo_code_2',
2001 )
2002 )) {
2003 //fix for search by profile with address fields.
2004 $tName = "{$locationType[$locType[1]]}-address";
2005 }
2006 elseif ($locType[0] == 'on_hold') {
2007 $tName = "{$locationType[$locType[1]]}-email";
2008 }
2009 else {
2010 $tName = "{$locationType[$locType[1]]}-{$locType[0]}";
2011 }
2012 $tName = str_replace(' ', '_', $tName);
2013 return array($tName, $fldName);
2014 }
2015 CRM_Core_Error::fatal();
2016 }
2017
2018 /**
2019 * Given a result dao, extract the values and return that array
2020 *
2021 * @param Object $dao
2022 *
2023 * @return array values for this query
2024 */
2025 function store($dao) {
2026 $value = array();
2027
2028 foreach ($this->_element as $key => $dontCare) {
2029 if (property_exists($dao, $key)) {
2030 if (strpos($key, '-') !== FALSE) {
2031 $values = explode('-', $key);
2032 $lastElement = array_pop($values);
2033 $current = &$value;
2034 $cnt = count($values);
2035 $count = 1;
2036 foreach ($values as $v) {
2037 if (!array_key_exists($v, $current)) {
2038 $current[$v] = array();
2039 }
2040 //bad hack for im_provider
2041 if ($lastElement == 'provider_id') {
2042 if ($count < $cnt) {
2043 $current = &$current[$v];
2044 }
2045 else {
2046 $lastElement = "{$v}_{$lastElement}";
2047 }
2048 }
2049 else {
2050 $current = &$current[$v];
2051 }
2052 $count++;
2053 }
2054
2055 $current[$lastElement] = $dao->$key;
2056 }
2057 else {
2058 $value[$key] = $dao->$key;
2059 }
2060 }
2061 }
2062 return $value;
2063 }
2064
2065 /**
2066 * getter for tables array
2067 *
2068 * @return array
2069 * @access public
2070 */
2071 function tables() {
2072 return $this->_tables;
2073 }
2074
2075 function whereTables() {
2076 return $this->_whereTables;
2077 }
2078
2079 /**
2080 * generate the where clause (used in match contacts and permissions)
2081 *
2082 * @param array $params
2083 * @param array $fields
2084 * @param array $tables
2085 * @param boolean $strict
2086 *
2087 * @return string
2088 * @access public
2089 * @static
2090 */
2091 static function getWhereClause($params, $fields, &$tables, &$whereTables, $strict = FALSE) {
2092 $query = new CRM_Contact_BAO_Query($params, NULL, $fields,
2093 FALSE, $strict
2094 );
2095
2096 $tables = array_merge($query->tables(), $tables);
2097 $whereTables = array_merge($query->whereTables(), $whereTables);
2098
2099 return $query->_whereClause;
2100 }
2101
2102 /**
2103 * create the from clause
2104 *
2105 * @param array $tables tables that need to be included in this from clause
2106 * if null, return mimimal from clause (i.e. civicrm_contact)
2107 * @param array $inner tables that should be inner-joined
2108 * @param array $right tables that should be right-joined
2109 *
2110 * @return string the from clause
2111 * @access public
2112 * @static
2113 */
2114 static function fromClause(&$tables, $inner = NULL, $right = NULL, $primaryLocation = TRUE, $mode = 1) {
2115
2116 $from = ' FROM civicrm_contact contact_a';
2117 if (empty($tables)) {
2118 return $from;
2119 }
2120
2121 if (CRM_Utils_Array::value('civicrm_worldregion', $tables)) {
2122 $tables = array_merge(array('civicrm_country' => 1), $tables);
2123 }
2124
2125 if ((CRM_Utils_Array::value('civicrm_state_province', $tables) ||
2126 CRM_Utils_Array::value('civicrm_country', $tables) ||
2127 CRM_Utils_Array::value('civicrm_county', $tables)
2128 ) &&
2129 !CRM_Utils_Array::value('civicrm_address', $tables)
2130 ) {
2131 $tables = array_merge(array('civicrm_address' => 1),
2132 $tables
2133 );
2134 }
2135
2136 // add group_contact table if group table is present
2137 if (CRM_Utils_Array::value('civicrm_group', $tables) &&
2138 !CRM_Utils_Array::value('civicrm_group_contact', $tables)
2139 ) {
2140 $tables['civicrm_group_contact'] = " LEFT JOIN civicrm_group_contact ON civicrm_group_contact.contact_id = contact_a.id AND civicrm_group_contact.status = 'Added'";
2141 }
2142
2143 // add group_contact and group table is subscription history is present
2144 if (CRM_Utils_Array::value('civicrm_subscription_history', $tables)
2145 && !CRM_Utils_Array::value('civicrm_group', $tables)
2146 ) {
2147 $tables = array_merge(array(
2148 'civicrm_group' => 1,
2149 'civicrm_group_contact' => 1,
2150 ),
2151 $tables
2152 );
2153 }
2154
2155 // to handle table dependencies of components
2156 CRM_Core_Component::tableNames($tables);
2157
2158 //format the table list according to the weight
2159 $info = CRM_Core_TableHierarchy::info();
2160
2161 foreach ($tables as $key => $value) {
2162 $k = 99;
2163 if (strpos($key, '-') !== FALSE) {
2164 $keyArray = explode('-', $key);
2165 $k = CRM_Utils_Array::value('civicrm_' . $keyArray[1], $info, 99);
2166 }
2167 elseif (strpos($key, '_') !== FALSE) {
2168 $keyArray = explode('_', $key);
2169 if (is_numeric(array_pop($keyArray))) {
2170 $k = CRM_Utils_Array::value(implode('_', $keyArray), $info, 99);
2171 }
2172 else {
2173 $k = CRM_Utils_Array::value($key, $info, 99);
2174 }
2175 }
2176 else {
2177 $k = CRM_Utils_Array::value($key, $info, 99);
2178 }
2179 $tempTable[$k . ".$key"] = $key;
2180 }
2181 ksort($tempTable);
2182 $newTables = array();
2183 foreach ($tempTable as $key) {
2184 $newTables[$key] = $tables[$key];
2185 }
2186
2187 $tables = $newTables;
2188
2189 foreach ($tables as $name => $value) {
2190 if (!$value) {
2191 continue;
2192 }
2193
2194 if (CRM_Utils_Array::value($name, $inner)) {
2195 $side = 'INNER';
2196 }
2197 elseif (CRM_Utils_Array::value($name, $right)) {
2198 $side = 'RIGHT';
2199 }
2200 else {
2201 $side = 'LEFT';
2202 }
2203
2204 if ($value != 1) {
2205 // if there is already a join statement in value, use value itself
2206 if (strpos($value, 'JOIN')) {
2207 $from .= " $value ";
2208 }
2209 else {
2210 $from .= " $side JOIN $name ON ( $value ) ";
2211 }
2212 continue;
2213 }
2214 switch ($name) {
2215 case 'civicrm_address':
2216 if ($primaryLocation) {
2217 $from .= " $side JOIN civicrm_address ON ( contact_a.id = civicrm_address.contact_id AND civicrm_address.is_primary = 1 )";
2218 }
2219 else {
2220 $from .= " $side JOIN civicrm_address ON ( contact_a.id = civicrm_address.contact_id ) ";
2221 }
2222 continue;
2223
2224 case 'civicrm_phone':
2225 $from .= " $side JOIN civicrm_phone ON (contact_a.id = civicrm_phone.contact_id AND civicrm_phone.is_primary = 1) ";
2226 continue;
2227
2228 case 'civicrm_email':
2229 $from .= " $side JOIN civicrm_email ON (contact_a.id = civicrm_email.contact_id AND civicrm_email.is_primary = 1) ";
2230 continue;
2231
2232 case 'civicrm_im':
2233 $from .= " $side JOIN civicrm_im ON (contact_a.id = civicrm_im.contact_id AND civicrm_im.is_primary = 1) ";
2234 continue;
2235
2236 case 'im_provider':
2237 $from .= " $side JOIN civicrm_im ON (contact_a.id = civicrm_im.contact_id) ";
2238 $from .= " $side JOIN civicrm_option_group option_group_imProvider ON option_group_imProvider.name = 'instant_messenger_service'";
2239 $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)";
2240 continue;
2241
2242 case 'civicrm_openid':
2243 $from .= " $side JOIN civicrm_openid ON ( civicrm_openid.contact_id = contact_a.id AND civicrm_openid.is_primary = 1 )";
2244 continue;
2245
2246 case 'civicrm_state_province':
2247 $from .= " $side JOIN civicrm_state_province ON civicrm_address.state_province_id = civicrm_state_province.id ";
2248 continue;
2249
2250 case 'civicrm_country':
2251 $from .= " $side JOIN civicrm_country ON civicrm_address.country_id = civicrm_country.id ";
2252 continue;
2253
2254 case 'civicrm_worldregion':
2255 $from .= " $side JOIN civicrm_worldregion ON civicrm_country.region_id = civicrm_worldregion.id ";
2256 continue;
2257
2258 case 'civicrm_county':
2259 $from .= " $side JOIN civicrm_county ON civicrm_address.county_id = civicrm_county.id ";
2260 continue;
2261
2262 case 'civicrm_location_type':
2263 $from .= " $side JOIN civicrm_location_type ON civicrm_address.location_type_id = civicrm_location_type.id ";
2264 continue;
2265
2266 case 'civicrm_group':
2267 $from .= " $side JOIN civicrm_group ON civicrm_group.id = civicrm_group_contact.group_id ";
2268 continue;
2269
2270 case 'civicrm_group_contact':
2271 $from .= " $side JOIN civicrm_group_contact ON contact_a.id = civicrm_group_contact.contact_id ";
2272 continue;
2273
2274 case 'civicrm_activity':
2275 case 'civicrm_activity_tag':
2276 case 'activity_type':
2277 case 'activity_status':
2278 case 'civicrm_activity_contact':
2279 case 'source_contact':
2280 $from .= CRM_Activity_BAO_Query::from($name, $mode, $side);
2281 continue;
2282
2283 case 'civicrm_entity_tag':
2284 $from .= " $side JOIN civicrm_entity_tag ON ( civicrm_entity_tag.entity_table = 'civicrm_contact' AND
2285 civicrm_entity_tag.entity_id = contact_a.id ) ";
2286 continue;
2287
2288 case 'civicrm_note':
2289 $from .= " $side JOIN civicrm_note ON ( civicrm_note.entity_table = 'civicrm_contact' AND
2290 contact_a.id = civicrm_note.entity_id ) ";
2291 continue;
2292
2293 case 'civicrm_subscription_history':
2294 $from .= " $side JOIN civicrm_subscription_history
2295 ON civicrm_group_contact.contact_id = civicrm_subscription_history.contact_id
2296 AND civicrm_group_contact.group_id = civicrm_subscription_history.group_id";
2297 continue;
2298
2299 case 'individual_prefix':
2300 $from .= " $side JOIN civicrm_option_group option_group_prefix ON (option_group_prefix.name = 'individual_prefix')";
2301 $from .= " $side JOIN civicrm_option_value individual_prefix ON (contact_a.prefix_id = individual_prefix.value AND option_group_prefix.id = individual_prefix.option_group_id ) ";
2302 continue;
2303
2304 case 'individual_suffix':
2305 $from .= " $side JOIN civicrm_option_group option_group_suffix ON (option_group_suffix.name = 'individual_suffix')";
2306 $from .= " $side JOIN civicrm_option_value individual_suffix ON (contact_a.suffix_id = individual_suffix.value AND option_group_suffix.id = individual_suffix.option_group_id ) ";
2307 continue;
2308
2309 case 'gender':
2310 $from .= " $side JOIN civicrm_option_group option_group_gender ON (option_group_gender.name = 'gender')";
2311 $from .= " $side JOIN civicrm_option_value gender ON (contact_a.gender_id = gender.value AND option_group_gender.id = gender.option_group_id) ";
2312 continue;
2313
2314 case 'civicrm_relationship':
2315 if (self::$_relType == 'reciprocal') {
2316 $from .= " $side JOIN civicrm_relationship ON (civicrm_relationship.contact_id_b = contact_a.id OR civicrm_relationship.contact_id_a = contact_a.id)";
2317 $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)";
2318 }
2319 elseif (self::$_relType == 'b') {
2320 $from .= " $side JOIN civicrm_relationship ON (civicrm_relationship.contact_id_b = contact_a.id )";
2321 $from .= " $side JOIN civicrm_contact contact_b ON (civicrm_relationship.contact_id_a = contact_b.id )";
2322 }
2323 else {
2324 $from .= " $side JOIN civicrm_relationship ON (civicrm_relationship.contact_id_a = contact_a.id )";
2325 $from .= " $side JOIN civicrm_contact contact_b ON (civicrm_relationship.contact_id_b = contact_b.id )";
2326 }
2327 continue;
2328
2329 case 'civicrm_log':
2330 $from .= " $side JOIN civicrm_log ON (civicrm_log.entity_id = contact_a.id AND civicrm_log.entity_table = 'civicrm_contact')";
2331 $from .= " $side JOIN civicrm_contact contact_b_log ON (civicrm_log.modified_id = contact_b_log.id)";
2332 continue;
2333
2334 case 'civicrm_tag':
2335 $from .= " $side JOIN civicrm_tag ON civicrm_entity_tag.tag_id = civicrm_tag.id ";
2336 continue;
2337
2338 case 'civicrm_grant':
2339 $from .= CRM_Grant_BAO_Query::from($name, $mode, $side);
2340 continue;
2341
2342 //build fromClause for email greeting, postal greeting, addressee CRM-4575
2343
2344 case 'email_greeting':
2345 $from .= " $side JOIN civicrm_option_group option_group_email_greeting ON (option_group_email_greeting.name = 'email_greeting')";
2346 $from .= " $side 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 ) ";
2347 continue;
2348
2349 case 'postal_greeting':
2350 $from .= " $side JOIN civicrm_option_group option_group_postal_greeting ON (option_group_postal_greeting.name = 'postal_greeting')";
2351 $from .= " $side 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 ) ";
2352 continue;
2353
2354 case 'addressee':
2355 $from .= " $side JOIN civicrm_option_group option_group_addressee ON (option_group_addressee.name = 'addressee')";
2356 $from .= " $side JOIN civicrm_option_value addressee ON (contact_a.addressee_id = addressee.value AND option_group_addressee.id = addressee.option_group_id ) ";
2357 continue;
2358
2359 case 'civicrm_website':
2360 $from .= " $side JOIN civicrm_website ON contact_a.id = civicrm_website.contact_id ";
2361 continue;
2362
2363 default:
2364 $from .= CRM_Core_Component::from($name, $mode, $side);
2365 continue;
2366 }
2367 }
2368
2369 return $from;
2370 }
2371
2372 /**
2373 * WHERE / QILL clause for deleted_contacts
2374 *
2375 * @return void
2376 */
2377 function deletedContacts($values) {
2378 list($_, $_, $value, $grouping, $_) = $values;
2379 if ($value) {
2380 // *prepend* to the relevant grouping as this is quite an important factor
2381 array_unshift($this->_qill[$grouping], ts('Search in Trash'));
2382 }
2383 }
2384
2385 /**
2386 * where / qill clause for contact_type
2387 *
2388 * @return void
2389 * @access public
2390 */
2391 function contactType(&$values) {
2392 list($name, $op, $value, $grouping, $wildcard) = $values;
2393
2394 $subTypes = array();
2395 $clause = array();
2396
2397 // account for search builder mapping multiple values
2398 if (!is_array($value)) {
2399 $values = self::parseSearchBuilderString($value, 'String');
2400 if (is_array($values)) {
2401 $value = array_flip($values);
2402 }
2403 }
2404
2405 if (is_array($value)) {
2406 foreach ($value as $k => $v) {
2407 // fix for CRM-771
2408 if ($k) {
2409 $subType = NULL;
2410 $contactType = $k;
2411 if (strpos($k, CRM_Core_DAO::VALUE_SEPARATOR)) {
2412 list($contactType, $subType) = explode(CRM_Core_DAO::VALUE_SEPARATOR, $k, 2);
2413 }
2414
2415 if (!empty($subType)) {
2416 $subTypes[$subType] = 1;
2417 }
2418 $clause[$contactType] = "'" . CRM_Utils_Type::escape($contactType, 'String') . "'";
2419 }
2420 }
2421 }
2422 else {
2423 $contactTypeANDSubType = explode(CRM_Core_DAO::VALUE_SEPARATOR, $value, 2);
2424 $contactType = $contactTypeANDSubType[0];
2425 $subType = CRM_Utils_Array::value(1, $contactTypeANDSubType);
2426 if (!empty($subType)) {
2427 $subTypes[$subType] = 1;
2428 }
2429 $clause[$contactType] = "'" . CRM_Utils_Type::escape($contactType, 'String') . "'";
2430 }
2431
2432 // fix for CRM-771
2433 if (!empty($clause)) {
2434 $this->_where[$grouping][] = 'contact_a.contact_type IN (' . implode(',', $clause) . ')';
2435 $this->_qill[$grouping][] = ts('Contact Type') . ' - ' . implode(' ' . ts('or') . ' ', $clause);
2436
2437 if (!empty($subTypes)) {
2438 $this->includeContactSubTypes($subTypes, $grouping);
2439 }
2440 }
2441 }
2442
2443 /**
2444 * where / qill clause for contact_sub_type
2445 *
2446 * @return void
2447 * @access public
2448 */
2449 function contactSubType(&$values) {
2450 list($name, $op, $value, $grouping, $wildcard) = $values;
2451 $this->includeContactSubTypes($value, $grouping);
2452 }
2453
2454 function includeContactSubTypes($value, $grouping) {
2455
2456 $clause = array();
2457 $alias = "contact_a.contact_sub_type";
2458
2459 if (is_array($value)) {
2460 foreach ($value as $k => $v) {
2461 if (!empty($k)) {
2462 $clause[$k] = "($alias like '%" . CRM_Core_DAO::VALUE_SEPARATOR . CRM_Utils_Type::escape($k, 'String') . CRM_Core_DAO::VALUE_SEPARATOR . "%')";
2463 }
2464 }
2465 }
2466 else {
2467 $clause[$value] = "($alias like '%" . CRM_Core_DAO::VALUE_SEPARATOR . CRM_Utils_Type::escape($value, 'String') . CRM_Core_DAO::VALUE_SEPARATOR . "%')";
2468 }
2469
2470 if (!empty($clause)) {
2471 $this->_where[$grouping][] = "( " . implode(' OR ', $clause) . " )";
2472 $this->_qill[$grouping][] = ts('Contact Subtype') . ' - ' . implode(' ' . ts('or') . ' ', array_keys($clause));
2473 }
2474 }
2475
2476 /**
2477 * where / qill clause for groups
2478 *
2479 * @return void
2480 * @access public
2481 */
2482 function group(&$values) {
2483 list($name, $op, $value, $grouping, $wildcard) = $values;
2484
2485 if (count($value) > 1) {
2486 $this->_useDistinct = TRUE;
2487 }
2488
2489 $groupNames = CRM_Core_PseudoConstant::group();
2490 $groupIds = implode(',', array_keys($value));
2491
2492 $names = array();
2493 foreach ($value as $id => $dontCare) {
2494 if (array_key_exists($id, $groupNames) && $dontCare) {
2495 $names[] = $groupNames[$id];
2496 }
2497 }
2498
2499 $statii = array();
2500 $in = FALSE;
2501 $gcsValues = &$this->getWhereValues('group_contact_status', $grouping);
2502 if ($gcsValues &&
2503 is_array($gcsValues[2])
2504 ) {
2505 foreach ($gcsValues[2] as $k => $v) {
2506 if ($v) {
2507 if ($k == 'Added') {
2508 $in = TRUE;
2509 }
2510 $statii[] = "'" . CRM_Utils_Type::escape($k, 'String') . "'";
2511 }
2512 }
2513 }
2514 else {
2515 $statii[] = '"Added"';
2516 $in = TRUE;
2517 }
2518
2519 $skipGroup = FALSE;
2520 if (count($value) == 1 &&
2521 count($statii) == 1 &&
2522 $statii[0] == '"Added"'
2523 ) {
2524 // check if smart group, if so we can get rid of that one additional
2525 // left join
2526 $groupIDs = array_keys($value);
2527
2528 if (CRM_Utils_Array::value(0, $groupIDs) &&
2529 CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Group',
2530 $groupIDs[0],
2531 'saved_search_id'
2532 )
2533 ) {
2534 $skipGroup = TRUE;
2535 }
2536 }
2537
2538 if (!$skipGroup) {
2539 $gcTable = "`civicrm_group_contact-{$groupIds}`";
2540 $this->_tables[$gcTable] = $this->_whereTables[$gcTable] = " LEFT JOIN civicrm_group_contact {$gcTable} ON contact_a.id = {$gcTable}.contact_id ";
2541 }
2542
2543 $qill = ts('Contacts %1', array(1 => $op));
2544 $qill .= ' ' . implode(' ' . ts('or') . ' ', $names);
2545
2546 $groupClause = NULL;
2547
2548 if (!$skipGroup) {
2549 $groupClause = "{$gcTable}.group_id $op ( $groupIds )";
2550 if (!empty($statii)) {
2551 $groupClause .= " AND {$gcTable}.status IN (" . implode(', ', $statii) . ")";
2552 $qill .= " " . ts('AND') . " " . ts('Group Status') . ' - ' . implode(' ' . ts('or') . ' ', $statii);
2553 }
2554 }
2555
2556 if ($in) {
2557 $ssClause = $this->savedSearch($values);
2558 if ($ssClause) {
2559 if ($groupClause) {
2560 $groupClause = "( ( $groupClause ) OR ( $ssClause ) )";
2561 }
2562 else {
2563 $groupClause = $ssClause;
2564 }
2565 }
2566 }
2567
2568 $this->_where[$grouping][] = $groupClause;
2569 $this->_qill[$grouping][] = $qill;
2570 }
2571 /*
2572 * Function translates selection of group type into a list of groups
2573 */
2574 function getGroupsFromTypeCriteria($value){
2575 $groupIds = array();
2576 foreach ($value as $groupTypeValue) {
2577 $groupList = CRM_Core_PseudoConstant::group($groupTypeValue);
2578 $groupIds = ($groupIds + $groupList);
2579 }
2580 return $groupIds;
2581 }
2582
2583 /**
2584 * where / qill clause for smart groups
2585 *
2586 * @return void
2587 * @access public
2588 */
2589 function savedSearch(&$values) {
2590 list($name, $op, $value, $grouping, $wildcard) = $values;
2591 return $this->addGroupContactCache(array_keys($value));
2592 }
2593
2594 function addGroupContactCache($groups, $tableAlias = NULL, $joinTable = "contact_a") {
2595 $config = CRM_Core_Config::singleton();
2596
2597 // find all the groups that are part of a saved search
2598 $groupIDs = implode(',', $groups);
2599 if (empty($groupIDs)) {
2600 return NULL;
2601 }
2602
2603 $sql = "
2604 SELECT id, cache_date, saved_search_id, children
2605 FROM civicrm_group
2606 WHERE id IN ( $groupIDs )
2607 AND ( saved_search_id != 0
2608 OR saved_search_id IS NOT NULL
2609 OR children IS NOT NULL )
2610 ";
2611 $group = CRM_Core_DAO::executeQuery($sql);
2612 $ssWhere = array();
2613 while ($group->fetch()) {
2614 if ($tableAlias == NULL) {
2615 $alias = "`civicrm_group_contact_cache_{$group->id}`";
2616 }
2617 else {
2618 $alias = $tableAlias;
2619 }
2620
2621 $this->_useDistinct = TRUE;
2622
2623 if (!$this->_smartGroupCache || $group->cache_date == NULL) {
2624 CRM_Contact_BAO_GroupContactCache::load($group);
2625 }
2626
2627 $this->_tables[$alias] = $this->_whereTables[$alias] = " LEFT JOIN civicrm_group_contact_cache {$alias} ON {$joinTable}.id = {$alias}.contact_id ";
2628 $ssWhere[] = "{$alias}.group_id = {$group->id}";
2629 }
2630
2631 if (!empty($ssWhere)) {
2632 return implode(' OR ', $ssWhere);
2633 }
2634 return NULL;
2635 }
2636
2637 /**
2638 * where / qill clause for cms users
2639 *
2640 * @return void
2641 * @access public
2642 */
2643 function ufUser(&$values) {
2644 list($name, $op, $value, $grouping, $wildcard) = $values;
2645
2646 if ($value == 1) {
2647 $this->_tables['civicrm_uf_match'] = $this->_whereTables['civicrm_uf_match'] = ' INNER JOIN civicrm_uf_match ON civicrm_uf_match.contact_id = contact_a.id ';
2648
2649 $this->_qill[$grouping][] = ts('CMS User');
2650 }
2651 elseif ($value == 0) {
2652 $this->_tables['civicrm_uf_match'] = $this->_whereTables['civicrm_uf_match'] = ' LEFT JOIN civicrm_uf_match ON civicrm_uf_match.contact_id = contact_a.id ';
2653
2654 $this->_where[$grouping][] = " civicrm_uf_match.contact_id IS NULL";
2655 $this->_qill[$grouping][] = ts('Not a CMS User');
2656 }
2657 }
2658
2659 /**
2660 * all tag search specific
2661 *
2662 * @return void
2663 * @access public
2664 */
2665 function tagSearch(&$values) {
2666 list($name, $op, $value, $grouping, $wildcard) = $values;
2667
2668 $op = "LIKE";
2669 $value = "%{$value}%";
2670
2671
2672 $useAllTagTypes = $this->getWhereValues('all_tag_types', $grouping);
2673 $tagTypesText = $this->getWhereValues('tag_types_text', $grouping);
2674
2675 $etTable = "`civicrm_entity_tag-" . $value . "`";
2676 $tTable = "`civicrm_tag-" . $value . "`";
2677
2678 if ($useAllTagTypes[2]) {
2679 $this->_tables[$etTable] =
2680 $this->_whereTables[$etTable] =
2681 " LEFT JOIN civicrm_entity_tag {$etTable} ON ( {$etTable}.entity_id = contact_a.id)
2682 LEFT JOIN civicrm_tag {$tTable} ON ( {$etTable}.tag_id = {$tTable}.id )";
2683
2684 // search tag in cases
2685 $etCaseTable = "`civicrm_entity_case_tag-" . $value . "`";
2686 $tCaseTable = "`civicrm_case_tag-" . $value . "`";
2687 $this->_tables[$etCaseTable] =
2688 $this->_whereTables[$etCaseTable] =
2689 " LEFT JOIN civicrm_case_contact ON civicrm_case_contact.contact_id = contact_a.id
2690 LEFT JOIN civicrm_case
2691 ON (civicrm_case_contact.case_id = civicrm_case.id
2692 AND civicrm_case.is_deleted = 0 )
2693 LEFT JOIN civicrm_entity_tag {$etCaseTable} ON ( {$etCaseTable}.entity_table = 'civicrm_case' AND {$etCaseTable}.entity_id = civicrm_case.id )
2694 LEFT JOIN civicrm_tag {$tCaseTable} ON ( {$etCaseTable}.tag_id = {$tCaseTable}.id )";
2695 // search tag in activities
2696 $etActTable = "`civicrm_entity_act_tag-" . $value . "`";
2697 $tActTable = "`civicrm_act_tag-" . $value . "`";
2698 $activityContacts = CRM_Core_PseudoConstant::activityContacts('name');
2699 $targetID = CRM_Utils_Array::key('Activity Targets', $activityContacts);
2700
2701 $this->_tables[$etActTable] =
2702 $this->_whereTables[$etActTable] =
2703 " LEFT JOIN civicrm_activity_contact
2704 ON ( civicrm_activity_contact.contact_id = contact_a.id AND civicrm_activity_contact.record_type_id = {$targetID} )
2705 LEFT JOIN civicrm_activity
2706 ON ( civicrm_activity.id = civicrm_activity_contact.activity_id
2707 AND civicrm_activity.is_deleted = 0 AND civicrm_activity.is_current_revision = 1 )
2708 LEFT JOIN civicrm_entity_tag as {$etActTable} ON ( {$etActTable}.entity_table = 'civicrm_activity' AND {$etActTable}.entity_id = civicrm_activity.id )
2709 LEFT JOIN civicrm_tag {$tActTable} ON ( {$etActTable}.tag_id = {$tActTable}.id )";
2710
2711 $this->_where[$grouping][] = "({$tTable}.name $op '". $value . "' OR {$tCaseTable}.name $op '". $value . "' OR {$tActTable}.name $op '". $value . "')";
2712 $this->_qill[$grouping][] = ts('Tag %1 %2 ', array(1 => $tagTypesText[2], 2 => $op)) . ' ' . $value;
2713 } else {
2714 $etTable = "`civicrm_entity_tag-" . $value . "`";
2715 $tTable = "`civicrm_tag-" . $value . "`";
2716 $this->_tables[$etTable] = $this->_whereTables[$etTable] = " LEFT JOIN civicrm_entity_tag {$etTable} ON ( {$etTable}.entity_id = contact_a.id AND
2717 {$etTable}.entity_table = 'civicrm_contact' )
2718 LEFT JOIN civicrm_tag {$tTable} ON ( {$etTable}.tag_id = {$tTable}.id ) ";
2719
2720 $this->_where[$grouping][] = self::buildClause("{$tTable}.name", $op, $value, 'String');
2721 $this->_qill[$grouping][] = ts('Tagged %1', array(1 => $op)) . ' ' . $value;
2722 }
2723 }
2724
2725 /**
2726 * where / qill clause for tag
2727 *
2728 * @return void
2729 * @access public
2730 */
2731 function tag(&$values) {
2732 list($name, $op, $value, $grouping, $wildcard) = $values;
2733
2734 $tagNames = CRM_Core_PseudoConstant::tag();
2735 if (is_array($value)) {
2736 if (count($value) > 1) {
2737 $this->_useDistinct = TRUE;
2738 }
2739 foreach ($value as $id => $dontCare) {
2740 $names[] = CRM_Utils_Array::value($id, $tagNames);
2741 }
2742 $names = implode(' ' . ts('or') . ' ', $names);
2743 $value = implode(',', array_keys($value));
2744 }
2745 else {
2746 $names = CRM_Utils_Array::value($value, $tagNames);
2747 }
2748
2749
2750 $useAllTagTypes = $this->getWhereValues('all_tag_types', $grouping);
2751 $tagTypesText = $this->getWhereValues('tag_types_text', $grouping);
2752
2753 $etTable = "`civicrm_entity_tag-" . $value . "`";
2754
2755 if ($useAllTagTypes[2]) {
2756 $this->_tables[$etTable] =
2757 $this->_whereTables[$etTable] =
2758 " LEFT JOIN civicrm_entity_tag {$etTable} ON ( {$etTable}.entity_id = contact_a.id AND {$etTable}.entity_table = 'civicrm_contact') ";
2759
2760 // search tag in cases
2761 $etCaseTable = "`civicrm_entity_case_tag-" . $value . "`";
2762 $activityContacts = CRM_Core_PseudoConstant::activityContacts('name');
2763 $targetID = CRM_Utils_Array::key('Activity Targets', $activityContacts);
2764
2765 $this->_tables[$etCaseTable] =
2766 $this->_whereTables[$etCaseTable] =
2767 " LEFT JOIN civicrm_case_contact ON civicrm_case_contact.contact_id = contact_a.id
2768 LEFT JOIN civicrm_case
2769 ON (civicrm_case_contact.case_id = civicrm_case.id
2770 AND civicrm_case.is_deleted = 0 )
2771 LEFT JOIN civicrm_entity_tag {$etCaseTable} ON ( {$etCaseTable}.entity_table = 'civicrm_case' AND {$etCaseTable}.entity_id = civicrm_case.id ) ";
2772 // search tag in activities
2773 $etActTable = "`civicrm_entity_act_tag-" . $value . "`";
2774 $this->_tables[$etActTable] =
2775 $this->_whereTables[$etActTable] =
2776 " LEFT JOIN civicrm_activity_contact
2777 ON ( civicrm_activity_contact.contact_id = contact_a.id AND civicrm_activity_contact.record_type_id = {$targetID} )
2778 LEFT JOIN civicrm_activity
2779 ON ( civicrm_activity.id = civicrm_activity_contact.activity_id
2780 AND civicrm_activity.is_deleted = 0 AND civicrm_activity.is_current_revision = 1 )
2781 LEFT JOIN civicrm_entity_tag as {$etActTable} ON ( {$etActTable}.entity_table = 'civicrm_activity' AND {$etActTable}.entity_id = civicrm_activity.id ) ";
2782
2783 // CRM-10338
2784 if ( in_array( $op, array( 'IS NULL', 'IS NOT NULL', 'IS EMPTY', 'IS NOT EMPTY' ) ) ) {
2785 $this->_where[$grouping][] = "({$etTable}.tag_id $op OR {$etCaseTable}.tag_id $op OR {$etActTable}.tag_id $op)";
2786 }
2787 else {
2788 $this->_where[$grouping][] = "({$etTable}.tag_id $op (". $value . ") OR {$etCaseTable}.tag_id $op (". $value . ") OR {$etActTable}.tag_id $op (". $value . "))";
2789 }
2790 $this->_qill[$grouping][] = ts('Tag %1 %2', array(1 => $op, 2 => $tagTypesText[2])) . ' ' . $names;
2791 } else {
2792 $this->_tables[$etTable] =
2793 $this->_whereTables[$etTable] =
2794 " LEFT JOIN civicrm_entity_tag {$etTable} ON ( {$etTable}.entity_id = contact_a.id AND {$etTable}.entity_table = 'civicrm_contact') ";
2795
2796 // CRM-10338
2797 if ( in_array( $op, array( 'IS NULL', 'IS NOT NULL', 'IS EMPTY', 'IS NOT EMPTY' ) ) ) {
2798 // this converts IS (NOT)? EMPTY to IS (NOT)? NULL
2799 $op = str_replace('EMPTY', 'NULL', $op);
2800 $this->_where[$grouping][] = "{$etTable}.tag_id $op";
2801 }
2802 else {
2803 $this->_where[$grouping][] = "{$etTable}.tag_id $op (" . $value . ')';
2804 }
2805 $this->_qill[$grouping][] = ts('Tagged %1', array( 1 => $op)) . ' ' . $names;
2806 }
2807
2808 }
2809
2810 /**
2811 * where/qill clause for notes
2812 *
2813 * @return void
2814 * @access public
2815 */
2816 function notes(&$values) {
2817 list($name, $op, $value, $grouping, $wildcard) = $values;
2818
2819 $noteOptionValues = $this->getWhereValues('note_option', $grouping);
2820 $noteOption = CRM_Utils_Array::value('2', $noteOptionValues, '6');
2821 $noteOption = ($name == 'note_body') ? 2 : (($name == 'note_subject') ? 3 : $noteOption);
2822
2823 $this->_useDistinct = TRUE;
2824
2825 $this->_tables['civicrm_note'] =
2826 $this->_whereTables['civicrm_note'] =
2827 " LEFT JOIN civicrm_note ON ( civicrm_note.entity_table = 'civicrm_contact' AND contact_a.id = civicrm_note.entity_id ) ";
2828
2829 $strtolower = function_exists('mb_strtolower') ? 'mb_strtolower' : 'strtolower';
2830 $n = trim($value);
2831 $value = $strtolower(CRM_Core_DAO::escapeString($n));
2832 if ($wildcard || $op == 'LIKE') {
2833 if (strpos($value, '%') === FALSE) {
2834 $value = "%$value%";
2835 }
2836 $op = 'LIKE';
2837 }
2838 elseif ($op == 'IS NULL' || $op == 'IS NOT NULL') {
2839 $value = NULL;
2840 }
2841
2842 $label = NULL;
2843 $clauses = array();
2844 if ( $noteOption % 2 == 0 ) {
2845 $clauses[] = self::buildClause('civicrm_note.note', $op, $value, 'String');
2846 $label = ts('Note: Body Only');
2847 }
2848 if ( $noteOption % 3 == 0 ) {
2849 $clauses[] = self::buildClause('civicrm_note.subject', $op, $value, 'String');
2850 $label = $label ? ts('Note: Body and Subject') : ts('Note: Subject Only');
2851 }
2852 $this->_where[$grouping][] = "( " . implode(' OR ', $clauses) . " )";
2853 $this->_qill[$grouping][] = $label . " $op - '$n'";
2854 }
2855
2856 function nameNullOrEmptyOp($name, $op, $grouping) {
2857 switch ( $op ) {
2858 case 'IS NULL':
2859 case 'IS NOT NULL':
2860 $this->_where[$grouping][] = "contact_a.$name $op";
2861 $this->_qill[$grouping][] = ts('Name') . ' ' . $op;
2862 return true;
2863
2864 case 'IS EMPTY':
2865 $this->_where[$grouping][] = "(contact_a.$name IS NULL OR contact_a.$name = '')";
2866 $this->_qill[$grouping][] = ts('Name') . ' ' . $op;
2867 return true;
2868
2869 case 'IS NOT EMPTY':
2870 $this->_where[$grouping][] = "(contact_a.$name IS NOT NULL AND contact_a.$name <> '')";
2871 $this->_qill[$grouping][] = ts('Name') . ' ' . $op;
2872 return true;
2873
2874 default:
2875 return false;
2876 }
2877 }
2878
2879 /**
2880 * where / qill clause for sort_name
2881 *
2882 * @return void
2883 * @access public
2884 */
2885 function sortName(&$values) {
2886 list($name, $op, $value, $grouping, $wildcard) = $values;
2887
2888 // handle IS NULL / IS NOT NULL / IS EMPTY / IS NOT EMPTY
2889 if ( $this->nameNullOrEmptyOp( $name, $op, $grouping ) ) {
2890 return;
2891 }
2892
2893 $newName = $name;
2894 $name = trim($value);
2895
2896 if (empty($name)) {
2897 return;
2898 }
2899
2900 $config = CRM_Core_Config::singleton();
2901
2902 $sub = array();
2903
2904 //By default, $sub elements should be joined together with OR statements (don't change this variable).
2905 $subGlue = ' OR ';
2906
2907 $strtolower = function_exists('mb_strtolower') ? 'mb_strtolower' : 'strtolower';
2908
2909 if (substr($name, 0, 1) == '"' &&
2910 substr($name, -1, 1) == '"'
2911 ) {
2912 //If name is encased in double quotes, the value should be taken to be the string in entirety and the
2913 $value = substr($name, 1, -1);
2914 $value = $strtolower(CRM_Core_DAO::escapeString($value));
2915 $wc = ($newName == 'sort_name') ? 'LOWER(contact_a.sort_name)' : 'LOWER(contact_a.display_name)';
2916 $sub[] = " ( $wc = '$value' ) ";
2917 if ($config->includeEmailInName) {
2918 $sub[] = " ( civicrm_email.email = '$value' ) ";
2919 }
2920 }
2921 elseif (strpos($name, ',') !== FALSE) {
2922 // if we have a comma in the string, search for the entire string
2923 $value = $strtolower(CRM_Core_DAO::escapeString($name));
2924 if ($wildcard) {
2925 if ($config->includeWildCardInName) {
2926 $value = "'%$value%'";
2927 }
2928 else {
2929 $value = "'$value%'";
2930 }
2931 $op = 'LIKE';
2932 }
2933 else {
2934 $value = "'$value'";
2935 }
2936 if ($newName == 'sort_name') {
2937 $wc = self::caseImportant($op) ? "LOWER(contact_a.sort_name)" : "contact_a.sort_name";
2938 }
2939 else {
2940 $wc = self::caseImportant($op) ? "LOWER(contact_a.display_name)" : "contact_a.display_name";
2941 }
2942 $sub[] = " ( $wc $op $value )";
2943 if ($config->includeNickNameInName) {
2944 $wc = self::caseImportant($op) ? "LOWER(contact_a.nick_name)" : "contact_a.nick_name";
2945 $sub[] = " ( $wc $op $value )";
2946 }
2947 if ($config->includeEmailInName) {
2948 $sub[] = " ( civicrm_email.email $op $value ) ";
2949 }
2950 }
2951 else {
2952 // the string should be treated as a series of keywords to be matched with match ANY OR
2953 // match ALL depending on Civi config settings (see CiviAdmin)
2954
2955 // The Civi configuration setting can be overridden if the string *starts* with the case
2956 // insenstive strings 'AND:' or 'OR:'TO THINK ABOUT: what happens when someone searches
2957 // for the following "AND: 'a string in quotes'"? - probably nothing - it would make the
2958 // AND OR variable reduntant because there is only one search string?
2959
2960 // Check to see if the $subGlue is overridden in the search text
2961 if (strtolower(substr($name, 0, 4)) == 'and:') {
2962 $name = substr($name, 4);
2963 $subGlue = ' AND ';
2964 }
2965 if (strtolower(substr($name, 0, 3)) == 'or:') {
2966 $name = substr($name, 3);
2967 $subGlue = ' OR ';
2968 }
2969
2970 $firstChar = substr($name, 0, 1);
2971 $lastChar = substr($name, -1, 1);
2972 $quotes = array("'", '"');
2973 if ((strlen($name) > 2) && in_array($firstChar, $quotes) &&
2974 in_array($lastChar, $quotes)
2975 ) {
2976 $name = substr($name, 1);
2977 $name = substr($name, 0, -1);
2978 $pieces = array($name);
2979 }
2980 else {
2981 $pieces = explode(' ', $name);
2982 }
2983 foreach ($pieces as $piece) {
2984 $value = $strtolower(CRM_Core_DAO::escapeString(trim($piece)));
2985 if (strlen($value)) {
2986 // Added If as a sanitization - without it, when you do an OR search, any string with
2987 // double spaces (i.e. " ") or that has a space after the keyword (e.g. "OR: ") will
2988 // return all contacts because it will include a condition similar to "OR contact
2989 // name LIKE '%'". It might be better to replace this with array_filter.
2990 $fieldsub = array();
2991 if ($wildcard) {
2992 if ($config->includeWildCardInName) {
2993 $value = "'%$value%'";
2994 }
2995 else {
2996 $value = "'$value%'";
2997 }
2998 $op = 'LIKE';
2999 }
3000 else {
3001 $value = "'$value'";
3002 }
3003 if ($newName == 'sort_name') {
3004 $wc = self::caseImportant($op) ? "LOWER(contact_a.sort_name)" : "contact_a.sort_name";
3005 }
3006 else {
3007 $wc = self::caseImportant($op) ? "LOWER(contact_a.display_name)" : "contact_a.display_name";
3008 }
3009 $fieldsub[] = " ( $wc $op $value )";
3010 if ($config->includeNickNameInName) {
3011 $wc = self::caseImportant($op) ? "LOWER(contact_a.nick_name)" : "contact_a.nick_name";
3012 $fieldsub[] = " ( $wc $op $value )";
3013 }
3014 if ($config->includeEmailInName) {
3015 $fieldsub[] = " ( civicrm_email.email $op $value ) ";
3016 }
3017 $sub[] = ' ( ' . implode(' OR ', $fieldsub) . ' ) ';
3018 // I seperated the glueing in two. The first stage should always be OR because we are searching for matches in *ANY* of these fields
3019 }
3020 }
3021 }
3022
3023 $sub = ' ( ' . implode($subGlue, $sub) . ' ) ';
3024
3025 $this->_where[$grouping][] = $sub;
3026 if ($config->includeEmailInName) {
3027 $this->_tables['civicrm_email'] = $this->_whereTables['civicrm_email'] = 1;
3028 $this->_qill[$grouping][] = ts('Name or Email ') . "$op - '$name'";
3029 }
3030 else {
3031 $this->_qill[$grouping][] = ts('Name like') . " - '$name'";
3032 }
3033 }
3034
3035 /**
3036 * where / qill clause for email
3037 *
3038 * @return void
3039 * @access public
3040 */
3041 function email(&$values) {
3042 list($name, $op, $value, $grouping, $wildcard) = $values;
3043
3044 $n = trim($value);
3045 if ($n) {
3046 $config = CRM_Core_Config::singleton();
3047
3048 if (substr($n, 0, 1) == '"' &&
3049 substr($n, -1, 1) == '"'
3050 ) {
3051 $n = substr($n, 1, -1);
3052 $value = strtolower(CRM_Core_DAO::escapeString($n));
3053 $value = "'$value'";
3054 $op = '=';
3055 }
3056 else {
3057 $value = strtolower($n);
3058 if ($wildcard) {
3059 if (strpos($value, '%') === FALSE) {
3060 $value = "%{$value}%";
3061 }
3062 $op = 'LIKE';
3063 }
3064 }
3065 $this->_qill[$grouping][] = ts('Email') . " $op '$n'";
3066 $this->_where[$grouping][] = self::buildClause('civicrm_email.email', $op, $value, 'String');
3067 }
3068 else {
3069 $this->_qill[$grouping][] = ts('Email') . " $op ";
3070 $this->_where[$grouping][] = self::buildClause('civicrm_email.email', $op, NULL, 'String');
3071 }
3072
3073 $this->_tables['civicrm_email'] = $this->_whereTables['civicrm_email'] = 1;
3074 }
3075
3076 /**
3077 * where / qill clause for phone number
3078 *
3079 * @return void
3080 * @access public
3081 */
3082 function phone_numeric(&$values) {
3083 list($name, $op, $value, $grouping, $wildcard) = $values;
3084 // Strip non-numeric characters
3085 $number = preg_replace('/[^\d]/', '', $value);
3086 if ($number) {
3087 $this->_qill[$grouping][] = ts('Phone number contains') . " $number";
3088 $this->_where[$grouping][] = self::buildClause('civicrm_phone.phone_numeric', 'LIKE', "%$number%", 'String');
3089 $this->_tables['civicrm_phone'] = $this->_whereTables['civicrm_phone'] = 1;
3090 }
3091 }
3092
3093 /**
3094 * where / qill clause for phone type/location
3095 *
3096 * @return void
3097 * @access public
3098 */
3099 function phone_option_group($values) {
3100 list($name, $op, $value, $grouping, $wildcard) = $values;
3101 $option = $name == 'phone_phone_type_id' ? 'phoneType' : 'locationType';
3102 $options = CRM_Core_PseudoConstant::$option();
3103 $optionName = $options[$value];
3104 $this->_qill[$grouping][] = ts('Phone') . ' ' . ($name == 'phone_phone_type_id' ? ts('type') : ('location')) . " $op $optionName";
3105 $this->_where[$grouping][] = self::buildClause('civicrm_phone.' . substr($name, 6), $op, $value, 'Integer');
3106 $this->_tables['civicrm_phone'] = $this->_whereTables['civicrm_phone'] = 1;
3107 }
3108
3109 /**
3110 * where / qill clause for street_address
3111 *
3112 * @return void
3113 * @access public
3114 */
3115 function street_address(&$values) {
3116 list($name, $op, $value, $grouping, $wildcard) = $values;
3117
3118 if (!$op) {
3119 $op = 'LIKE';
3120 }
3121
3122 $n = trim($value);
3123
3124 if ($n) {
3125 $value = strtolower($n);
3126 if (strpos($value, '%') === FALSE) {
3127 // only add wild card if not there
3128 $value = "%{$value}%";
3129 }
3130 $op = 'LIKE';
3131 $this->_where[$grouping][] = self::buildClause('LOWER(civicrm_address.street_address)', $op, $value, 'String');
3132 $this->_qill[$grouping][] = ts('Street') . " $op '$n'";
3133 }
3134 else {
3135 $this->_where[$grouping][] = self::buildClause('civicrm_address.street_address', $op, NULL, 'String');
3136 $this->_qill[$grouping][] = ts('Street') . " $op ";
3137 }
3138
3139 $this->_tables['civicrm_address'] = $this->_whereTables['civicrm_address'] = 1;
3140 }
3141
3142 /**
3143 * where / qill clause for street_unit
3144 *
3145 * @return void
3146 * @access public
3147 */
3148 function street_number(&$values) {
3149 list($name, $op, $value, $grouping, $wildcard) = $values;
3150
3151 if (!$op) {
3152 $op = '=';
3153 }
3154
3155 $n = trim($value);
3156
3157 if (strtolower($n) == 'odd') {
3158 $this->_where[$grouping][] = " ( civicrm_address.street_number % 2 = 1 )";
3159 $this->_qill[$grouping][] = ts('Street Number is odd');
3160 }
3161 elseif (strtolower($n) == 'even') {
3162 $this->_where[$grouping][] = " ( civicrm_address.street_number % 2 = 0 )";
3163 $this->_qill[$grouping][] = ts('Street Number is even');
3164 }
3165 else {
3166 $value = strtolower($n);
3167
3168 $this->_where[$grouping][] = self::buildClause('LOWER(civicrm_address.street_number)', $op, $value, 'String');
3169 $this->_qill[$grouping][] = ts('Street Number') . " $op '$n'";
3170 }
3171
3172 $this->_tables['civicrm_address'] = $this->_whereTables['civicrm_address'] = 1;
3173 }
3174
3175 /**
3176 * where / qill clause for sorting by character
3177 *
3178 * @return void
3179 * @access public
3180 */
3181 function sortByCharacter(&$values) {
3182 list($name, $op, $value, $grouping, $wildcard) = $values;
3183
3184 $name = trim($value);
3185 $cond = " contact_a.sort_name LIKE '" . strtolower(CRM_Core_DAO::escapeWildCardString($name)) . "%'";
3186 $this->_where[$grouping][] = $cond;
3187 $this->_qill[$grouping][] = ts('Showing only Contacts starting with: \'%1\'', array(1 => $name));
3188 }
3189
3190 /**
3191 * where / qill clause for including contact ids
3192 *
3193 * @return void
3194 * @access public
3195 */
3196 function includeContactIDs() {
3197 if (!$this->_includeContactIds || empty($this->_params)) {
3198 return;
3199 }
3200
3201 $contactIds = array();
3202 foreach ($this->_params as $id => $values) {
3203 if (substr($values[0], 0, CRM_Core_Form::CB_PREFIX_LEN) == CRM_Core_Form::CB_PREFIX) {
3204 $contactIds[] = substr($values[0], CRM_Core_Form::CB_PREFIX_LEN);
3205 }
3206 }
3207 if (!empty($contactIds)) {
3208 $this->_where[0][] = " ( contact_a.id IN (" . implode(',', $contactIds) . " ) ) ";
3209 }
3210 }
3211
3212 /**
3213 * where / qill clause for postal code
3214 *
3215 * @return void
3216 * @access public
3217 */
3218 function postalCode(&$values) {
3219 // skip if the fields dont have anything to do with postal_code
3220 if (!CRM_Utils_Array::value('postal_code', $this->_fields)) {
3221 return;
3222 }
3223
3224 list($name, $op, $value, $grouping, $wildcard) = $values;
3225
3226 // Handle numeric postal code range searches properly by casting the column as numeric
3227 if (is_numeric($value)) {
3228 $field = 'ROUND(civicrm_address.postal_code)';
3229 $val = CRM_Utils_Type::escape($value, 'Integer');
3230 }
3231 else {
3232 $field = 'civicrm_address.postal_code';
3233 $val = CRM_Utils_Type::escape($value, 'String');
3234 }
3235
3236 $this->_tables['civicrm_address'] = $this->_whereTables['civicrm_address'] = 1;
3237
3238 if ($name == 'postal_code') {
3239 $this->_where[$grouping][] = self::buildClause($field, $op, $val, 'String');
3240 $this->_qill[$grouping][] = ts('Postal code') . " {$op} {$value}";
3241 }
3242 elseif ($name == 'postal_code_low') {
3243 $this->_where[$grouping][] = " ( $field >= '$val' ) ";
3244 $this->_qill[$grouping][] = ts('Postal code greater than or equal to \'%1\'', array(1 => $value));
3245 }
3246 elseif ($name == 'postal_code_high') {
3247 $this->_where[$grouping][] = " ( $field <= '$val' ) ";
3248 $this->_qill[$grouping][] = ts('Postal code less than or equal to \'%1\'', array(1 => $value));
3249 }
3250 }
3251
3252 /**
3253 * where / qill clause for location type
3254 *
3255 * @return void
3256 * @access public
3257 */
3258 function locationType(&$values, $status = NULL) {
3259 list($name, $op, $value, $grouping, $wildcard) = $values;
3260
3261 if (is_array($value)) {
3262 $this->_where[$grouping][] = 'civicrm_address.location_type_id IN (' . implode(',', array_keys($value)) . ')';
3263 $this->_tables['civicrm_address'] = 1;
3264 $this->_whereTables['civicrm_address'] = 1;
3265
3266 $locationType = CRM_Core_PseudoConstant::locationType();
3267 $names = array();
3268 foreach (array_keys($value) as $id) {
3269 $names[] = $locationType[$id];
3270 }
3271
3272 $this->_primaryLocation = FALSE;
3273
3274 if (!$status) {
3275 $this->_qill[$grouping][] = ts('Location Type') . ' - ' . implode(' ' . ts('or') . ' ', $names);
3276 }
3277 else {
3278 return implode(' ' . ts('or') . ' ', $names);
3279 }
3280 }
3281 }
3282
3283 function country(&$values, $fromStateProvince = TRUE) {
3284 list($name, $op, $value, $grouping, $wildcard) = $values;
3285
3286 if (!$fromStateProvince) {
3287 $stateValues = $this->getWhereValues('state_province', $grouping);
3288 if (!empty($stateValues)) {
3289 // return back to caller if there are state province values
3290 // since that handles this case
3291 return;
3292 }
3293 }
3294
3295 $countryClause = $countryQill = NULL;
3296 if (
3297 $values &&
3298 !empty($value)
3299 ) {
3300 $this->_tables['civicrm_country'] = 1;
3301 $this->_whereTables['civicrm_country'] = 1;
3302
3303 $countries = CRM_Core_PseudoConstant::country();
3304 if (is_numeric($value)) {
3305 $countryClause = self::buildClause(
3306 'civicrm_country.id',
3307 $op,
3308 $value,
3309 'Positive'
3310 );
3311 $countryName = $countries[(int ) $value];
3312 }
3313
3314 else {
3315 $intValues = self::parseSearchBuilderString($value);
3316 if ($intValues && ($op == 'IN' || $op == 'NOT IN')) {
3317 $countryClause = self::buildClause(
3318 'civicrm_country.id',
3319 $op,
3320 $intValues,
3321 'Positive'
3322 );
3323 $countryNames = array();
3324 foreach ($intValues as $v) {
3325 $countryNames[] = $countries[$v];
3326 }
3327 $countryName = implode(',', $countryNames);
3328 }
3329 else {
3330 $wc = ($op != 'LIKE') ? "LOWER('civicrm_country.name')" : 'civicrm_country.name';
3331 $countryClause = self::buildClause(
3332 'civicrm_country.name',
3333 $op,
3334 $value,
3335 'String'
3336 );
3337 $countryName = $value;
3338 }
3339 }
3340 $countryQill = ts('Country') . " {$op} '$countryName'";
3341
3342 if (!$fromStateProvince) {
3343 $this->_where[$grouping][] = $countryClause;
3344 $this->_qill[$grouping][] = $countryQill;
3345 }
3346 }
3347
3348 if ($fromStateProvince) {
3349 if (!empty($countryClause)) {
3350 return array(
3351 $countryClause,
3352 " ...AND... " . $countryQill,
3353 );
3354 }
3355 else {
3356 return array(NULL, NULL);
3357 }
3358 }
3359 }
3360
3361 /**
3362 * where / qill clause for county (if present)
3363 *
3364 * @return void
3365 * @access public
3366 */
3367 function county(&$values, $status = null) {
3368 list($name, $op, $value, $grouping, $wildcard) = $values;
3369
3370 if (! is_array($value)) {
3371 // force the county to be an array
3372 $value = array($value);
3373 }
3374
3375 // check if the values are ids OR names of the counties
3376 $inputFormat = 'id';
3377 foreach ($value as $v) {
3378 if (!is_numeric($v)) {
3379 $inputFormat = 'name';
3380 break;
3381 }
3382 }
3383 $names = array();
3384 if ($inputFormat == 'id') {
3385 $clause = 'civicrm_county.id IN (' . implode(',', $value) . ')';
3386
3387 $county = CRM_Core_PseudoConstant::county();
3388 foreach ($value as $id) {
3389 $names[] = CRM_Utils_Array::value($id, $county);
3390 }
3391 }
3392 else {
3393 $inputClause = array();
3394 foreach ($value as $name) {
3395 $name = trim($name);
3396 $inputClause[] = "'$name'";
3397 }
3398 $clause = 'civicrm_county.name IN (' . implode(',', $inputClause) . ')';
3399 $names = $value;
3400 }
3401 $this->_tables['civicrm_county'] = 1;
3402 $this->_whereTables['civicrm_county'] = 1;
3403
3404 $this->_where[$grouping][] = $clause;
3405 if (! $status) {
3406 $this->_qill[$grouping][] = ts('County') . ' - ' . implode(' ' . ts('or') . ' ', $names);
3407 } else {
3408 return implode(' ' . ts('or') . ' ', $names);
3409 }
3410 }
3411
3412 /**
3413 * where / qill clause for state/province AND country (if present)
3414 *
3415 * @return void
3416 * @access public
3417 */
3418 function stateProvince(&$values, $status = NULL) {
3419 list($name, $op, $value, $grouping, $wildcard) = $values;
3420
3421 // quick escape for IS NULL
3422 if ( in_array( $op, array( 'IS NULL', 'IS NOT NULL', 'IS EMPTY', 'IS NOT EMPTY' ) ) ) {
3423 $value = NULL;
3424 }
3425 else if (!is_array($value)) {
3426 // force the state to be an array
3427 // check if its in the mapper format!
3428 $values = self::parseSearchBuilderString($value);
3429 if (is_array($values)) {
3430 $value = $values;
3431 }
3432 else {
3433 $value = array($value);
3434 }
3435 }
3436
3437 // check if the values are ids OR names of the states
3438 $inputFormat = 'id';
3439 if ($value) {
3440 foreach ($value as $v) {
3441 if (!is_numeric($v)) {
3442 $inputFormat = 'name';
3443 break;
3444 }
3445 }
3446 }
3447
3448 $names = array();
3449 if ($op == '=') {
3450 $op = 'IN';
3451 }
3452 else if ($op == '!=') {
3453 $op = 'NOT IN';
3454 }
3455 else {
3456 // this converts IS (NOT)? EMPTY to IS (NOT)? NULL
3457 $op = str_replace('EMPTY', 'NULL', $op);
3458 }
3459 if ( in_array( $op, array( 'IS NULL', 'IS NOT NULL', 'IS EMPTY', 'IS NOT EMPTY' ) ) ) {
3460 $stateClause = "civicrm_state_province.id $op";
3461 }
3462 else if ($inputFormat == 'id') {
3463 if ($op != 'NOT IN') {
3464 $op = 'IN';
3465 }
3466 $stateClause = "civicrm_state_province.id $op (" . implode(',', $value) . ')';
3467
3468 $stateProvince = CRM_Core_PseudoConstant::stateProvince();
3469 foreach ($value as $id) {
3470 $names[] = CRM_Utils_Array::value($id, $stateProvince);
3471 }
3472 }
3473 else {
3474 $inputClause = array();
3475 foreach ($value as $name) {
3476 $name = trim($name);
3477 $inputClause[] = "'$name'";
3478 }
3479 $stateClause = "civicrm_state_province.name $op (" . implode(',', $inputClause) . ')';
3480 $names = $value;
3481 }
3482
3483 $this->_tables['civicrm_state_province'] = 1;
3484 $this->_whereTables['civicrm_state_province'] = 1;
3485
3486 $countryValues = $this->getWhereValues('country', $grouping);
3487 list($countryClause, $countryQill) = $this->country($countryValues, TRUE);
3488
3489 if ($countryClause) {
3490 $clause = "( $stateClause AND $countryClause )";
3491 }
3492 else {
3493 $clause = $stateClause;
3494 }
3495
3496 $this->_where[$grouping][] = $clause;
3497 if (!$status) {
3498 $this->_qill[$grouping][] = ts('State/Province') . " $op " . implode(' ' . ts('or') . ' ', $names) . $countryQill;
3499 }
3500 else {
3501 return implode(' ' . ts('or') . ' ', $names) . $countryQill;;
3502 }
3503 }
3504
3505 /**
3506 * where / qill clause for change log
3507 *
3508 * @return void
3509 * @access public
3510 */
3511 function changeLog(&$values) {
3512 list($name, $op, $value, $grouping, $wildcard) = $values;
3513
3514 $targetName = $this->getWhereValues('changed_by', $grouping);
3515 if (!$targetName) {
3516 return;
3517 }
3518
3519 $name = trim($targetName[2]);
3520 $name = strtolower(CRM_Core_DAO::escapeString($name));
3521 $name = $targetName[4] ? "%$name%" : $name;
3522 $this->_where[$grouping][] = "contact_b_log.sort_name LIKE '%$name%'";
3523 $this->_tables['civicrm_log'] = $this->_whereTables['civicrm_log'] = 1;
3524 $this->_qill[$grouping][] = ts('Changed by') . ": $name";
3525 }
3526
3527 function modifiedDates($values) {
3528 $this->_useDistinct = TRUE;
3529
3530 // CRM-11281, default to added date if not set
3531 $fieldTitle = ts('Added Date');
3532
3533 foreach (array_keys($this->_params) as $id) {
3534 if ($this->_params[$id][0] == 'log_date') {
3535 if ($this->_params[$id][2] == 2) {
3536 $fieldTitle = ts('Modified Date');
3537 }
3538 }
3539 }
3540
3541 $this->dateQueryBuilder($values,
3542 'civicrm_log', 'log_date', 'modified_date', $fieldTitle
3543 );
3544 }
3545
3546 function demographics(&$values) {
3547 list($name, $op, $value, $grouping, $wildcard) = $values;
3548
3549 if (($name == 'birth_date_low') || ($name == 'birth_date_high')) {
3550
3551 $this->dateQueryBuilder($values,
3552 'contact_a', 'birth_date', 'birth_date', ts('Birth Date')
3553 );
3554 }
3555 elseif (($name == 'deceased_date_low') || ($name == 'deceased_date_high')) {
3556
3557 $this->dateQueryBuilder($values,
3558 'contact_a', 'deceased_date', 'deceased_date', ts('Deceased Date')
3559 );
3560 }
3561
3562 self::$_openedPanes[ts('Demographics')] = TRUE;
3563 }
3564
3565 function privacy(&$values) {
3566 list($name, $op, $value, $grouping, $wildcard) = $values;
3567 //fixed for profile search listing CRM-4633
3568 if (strpbrk($value, "[")) {
3569 $value = "'{$value}'";
3570 $op = "!{$op}";
3571 $this->_where[$grouping][] = "contact_a.{$name} $op $value";
3572 }
3573 else {
3574 $this->_where[$grouping][] = "contact_a.{$name} $op $value";
3575 }
3576 $field = CRM_Utils_Array::value($name, $this->_fields);
3577 $title = $field ? $field['title'] : $name;
3578 $this->_qill[$grouping][] = "$title $op $value";
3579 }
3580
3581 function privacyOptions($values) {
3582 list($name, $op, $value, $grouping, $wildcard) = $values;
3583
3584 if (empty($value) ||
3585 !is_array($value)
3586 ) {
3587 continue;
3588 }
3589
3590 // get the operator and toggle values
3591 $opValues = $this->getWhereValues('privacy_operator', $grouping);
3592 $operator = 'OR';
3593 if ($opValues &&
3594 strtolower($opValues[2] == 'AND')
3595 ) {
3596 $operator = 'AND';
3597 }
3598
3599 $toggleValues = $this->getWhereValues('privacy_toggle', $grouping);
3600 $compareOP = '!=';
3601 if ($toggleValues &&
3602 $toggleValues[2] == 2
3603 ) {
3604 $compareOP = '=';
3605 }
3606
3607 $clauses = array();
3608 $qill = array();
3609 foreach ($value as $dontCare => $pOption) {
3610 $clauses[] = " ( contact_a.{$pOption} $compareOP 1 ) ";
3611 $field = CRM_Utils_Array::value($pOption, $this->_fields);
3612 $title = $field ? $field['title'] : $pOption;
3613 $qill[] = " $title $compareOP 1 ";
3614 }
3615
3616 $this->_where[$grouping][] = '( ' . implode($operator, $clauses) . ' )';
3617 $this->_qill[$grouping][] = implode($operator, $qill);
3618 }
3619
3620 function preferredCommunication(&$values) {
3621 list($name, $op, $value, $grouping, $wildcard) = $values;
3622
3623 $pref = array();
3624 if (!is_array($value)) {
3625 $v = array();
3626 $value = trim($value, ' ()');
3627 if (strpos($value, CRM_Core_DAO::VALUE_SEPARATOR) !== FALSE) {
3628 $v = explode(CRM_Core_DAO::VALUE_SEPARATOR, $value);
3629 }
3630 else {
3631 $v = explode(",", $value);
3632 }
3633
3634 foreach ($v as $item) {
3635 if ($item) {
3636 $pref[] = $item;
3637 }
3638 }
3639 }
3640 else {
3641 foreach ($value as $key => $checked) {
3642 if ($checked) {
3643 $pref[] = $key;
3644 }
3645 }
3646 }
3647
3648 $commPref = CRM_Core_PseudoConstant::pcm();
3649
3650 $sqlValue = array();
3651 $sql = "contact_a.preferred_communication_method";
3652 foreach ($pref as $val) {
3653 $sqlValue[] = "( $sql like '%" . CRM_Core_DAO::VALUE_SEPARATOR . $val . CRM_Core_DAO::VALUE_SEPARATOR . "%' ) ";
3654 $showValue[] = $commPref[$val];
3655 }
3656 $this->_where[$grouping][] = "( " . implode(' OR ', $sqlValue) . " )";
3657 $this->_qill[$grouping][] = ts('Preferred Communication Method') . " $op " . implode(' ' . ts('or') . ' ', $showValue);
3658 }
3659
3660 /**
3661 * where / qill clause for relationship
3662 *
3663 * @return void
3664 * @access public
3665 */
3666 function relationship(&$values) {
3667 list($name, $op, $value, $grouping, $wildcard) = $values;
3668
3669 // also get values array for relation_target_name
3670 // for relatinship search we always do wildcard
3671 $targetName = $this->getWhereValues('relation_target_name', $grouping);
3672 $relStatus = $this->getWhereValues('relation_status', $grouping);
3673 $targetGroup = $this->getWhereValues('relation_target_group', $grouping);
3674 $start = $this->getWhereValues('relation_date_low', $grouping);
3675 $end = $this->getWhereValues('relation_date_high', $grouping);
3676
3677 $nameClause = $name = NULL;
3678 if ($targetName) {
3679 $name = trim($targetName[2]);
3680 if (substr($name, 0, 1) == '"' &&
3681 substr($name, -1, 1) == '"'
3682 ) {
3683 $name = substr($name, 1, -1);
3684 $name = strtolower(CRM_Core_DAO::escapeString($name));
3685 $nameClause = "= '$name'";
3686 }
3687 else {
3688 $name = strtolower(CRM_Core_DAO::escapeString($name));
3689 $nameClause = "LIKE '%{$name}%'";
3690 }
3691 }
3692
3693 $rel = explode('_', $value);
3694
3695 self::$_relType = $rel[1];
3696
3697 $params = array('id' => $rel[0]);
3698 $rTypeValues = array();
3699 $rType = CRM_Contact_BAO_RelationshipType::retrieve($params, $rTypeValues);
3700 if (!$rType) {
3701 return;
3702 }
3703
3704 if ($rTypeValues['name_a_b'] == $rTypeValues['name_b_a']) {
3705 self::$_relType = 'reciprocal';
3706 }
3707
3708 if ($nameClause) {
3709 $this->_where[$grouping][] = "( contact_b.sort_name $nameClause AND contact_b.id != contact_a.id )";
3710 }
3711
3712 $relTypeInd = CRM_Contact_BAO_Relationship::getContactRelationshipType(NULL, 'null', NULL, 'Individual');
3713 $relTypeOrg = CRM_Contact_BAO_Relationship::getContactRelationshipType(NULL, 'null', NULL, 'Organization');
3714 $relTypeHou = CRM_Contact_BAO_Relationship::getContactRelationshipType(NULL, 'null', NULL, 'Household');
3715 $allRelationshipType = array();
3716 $allRelationshipType = array_merge($relTypeInd, $relTypeOrg);
3717 $allRelationshipType = array_merge($allRelationshipType, $relTypeHou);
3718
3719 if ($nameClause || !$targetGroup) {
3720 $this->_qill[$grouping][] = "$allRelationshipType[$value] $name";
3721 }
3722
3723
3724 //check to see if the target contact is in specified group
3725 if ($targetGroup) {
3726 //add contacts from static groups
3727 $this->_tables['civicrm_relationship_group_contact'] =
3728 $this->_whereTables['civicrm_relationship_group_contact'] =
3729 " LEFT JOIN civicrm_group_contact civicrm_relationship_group_contact ON civicrm_relationship_group_contact.contact_id = contact_b.id";
3730 $groupWhere[] = "( civicrm_relationship_group_contact.group_id IN (" . implode(",", $targetGroup[2]) . ") )";
3731
3732 //add contacts from saved searches
3733 $ssWhere = $this->addGroupContactCache($targetGroup[2], "civicrm_relationship_group_contact_cache", "contact_b");
3734
3735 //set the group where clause
3736 if ($ssWhere) {
3737 $groupWhere[] = "( " . $ssWhere . " )";
3738 }
3739 $this->_where[$grouping][] = "( " . implode(" OR ", $groupWhere) . " )";
3740
3741 //Get the names of the target groups for the qill
3742 $groupNames = &CRM_Core_PseudoConstant::group();
3743 $qillNames = array();
3744 foreach ($targetGroup[2] as $groupId) {
3745 if (array_key_exists($groupId, $groupNames)) {
3746 $qillNames[] = $groupNames[$groupId];
3747 }
3748 }
3749 $this->_qill[$grouping][] = "$allRelationshipType[$value] ( " . implode(", ", $qillNames) . " )";
3750 }
3751
3752
3753 //check for active, inactive and all relation status
3754 if ($relStatus[2] == 0) {
3755 $this->_where[$grouping][] = "(
3756 civicrm_relationship.is_active = 1 AND
3757 ( civicrm_relationship.end_date IS NULL OR civicrm_relationship.end_date >= CURDATE() ) AND
3758 ( civicrm_relationship.start_date IS NULL OR civicrm_relationship.start_date <= CURDATE() )
3759 )";
3760 $this->_qill[$grouping][] = ts('Relationship - Active and Current');
3761 }
3762 elseif ($relStatus[2] == 1) {
3763 $this->_where[$grouping][] = "(
3764 civicrm_relationship.is_active = 0 OR
3765 civicrm_relationship.end_date < CURDATE() OR
3766 civicrm_relationship.start_date > CURDATE()
3767 )";
3768 $this->_qill[$grouping][] = ts('Relationship - Inactive or not Current');
3769 }
3770
3771 // Search by dates
3772 if ($start || $end) {
3773 foreach (array('start' => '>=', 'end' => '<=') as $d => $op) {
3774 if (!empty(${$d}[2])) {
3775 $date = date('Ymd', strtotime(${$d}[2]));
3776 $this->_where[$grouping][] = "civicrm_relationship.{$d}_date $op $date";
3777 $this->_qill[$grouping][] = ($d == 'end' ? ts('Relationship Ended by') : ts('Relationship Started On or After')) . " " . CRM_Utils_Date::customFormat($date);
3778 }
3779 }
3780 }
3781
3782 $this->_where[$grouping][] = 'civicrm_relationship.relationship_type_id = ' . $rel[0];
3783 $this->_tables['civicrm_relationship'] = $this->_whereTables['civicrm_relationship'] = 1;
3784 $this->_useDistinct = TRUE;
3785 }
3786
3787 /**
3788 * default set of return properties
3789 *
3790 * @return void
3791 * @access public
3792 */
3793 static function &defaultReturnProperties($mode = 1) {
3794 if (!isset(self::$_defaultReturnProperties)) {
3795 self::$_defaultReturnProperties = array();
3796 }
3797
3798 if (!isset(self::$_defaultReturnProperties[$mode])) {
3799 // add activity return properties
3800 if ($mode & CRM_Contact_BAO_Query::MODE_ACTIVITY) {
3801 self::$_defaultReturnProperties[$mode] = CRM_Activity_BAO_Query::defaultReturnProperties($mode, FALSE);
3802 }
3803 else {
3804 self::$_defaultReturnProperties[$mode] = CRM_Core_Component::defaultReturnProperties($mode, FALSE);
3805 }
3806
3807 if (empty(self::$_defaultReturnProperties[$mode])) {
3808 self::$_defaultReturnProperties[$mode] = array(
3809 'home_URL' => 1,
3810 'image_URL' => 1,
3811 'legal_identifier' => 1,
3812 'external_identifier' => 1,
3813 'contact_type' => 1,
3814 'contact_sub_type' => 1,
3815 'sort_name' => 1,
3816 'display_name' => 1,
3817 'preferred_mail_format' => 1,
3818 'nick_name' => 1,
3819 'first_name' => 1,
3820 'middle_name' => 1,
3821 'last_name' => 1,
3822 'individual_prefix' => 1,
3823 'individual_suffix' => 1,
3824 'birth_date' => 1,
3825 'gender' => 1,
3826 'street_address' => 1,
3827 'supplemental_address_1' => 1,
3828 'supplemental_address_2' => 1,
3829 'city' => 1,
3830 'postal_code' => 1,
3831 'postal_code_suffix' => 1,
3832 'state_province' => 1,
3833 'country' => 1,
3834 'world_region' => 1,
3835 'geo_code_1' => 1,
3836 'geo_code_2' => 1,
3837 'email' => 1,
3838 'on_hold' => 1,
3839 'phone' => 1,
3840 'im' => 1,
3841 'household_name' => 1,
3842 'organization_name' => 1,
3843 'deceased_date' => 1,
3844 'is_deceased' => 1,
3845 'job_title' => 1,
3846 'legal_name' => 1,
3847 'sic_code' => 1,
3848 'current_employer' => 1,
3849 // FIXME: should we use defaultHierReturnProperties() for the below?
3850 'do_not_email' => 1,
3851 'do_not_mail' => 1,
3852 'do_not_sms' => 1,
3853 'do_not_phone' => 1,
3854 'do_not_trade' => 1,
3855 'is_opt_out' => 1,
3856 'contact_is_deleted' => 1,
3857 );
3858 }
3859 }
3860 return self::$_defaultReturnProperties[$mode];
3861 }
3862
3863 /**
3864 * get primary condition for a sql clause
3865 *
3866 * @param int $value
3867 *
3868 * @return void
3869 * @access public
3870 */
3871 static function getPrimaryCondition($value) {
3872 if (is_numeric($value)) {
3873 $value = (int ) $value;
3874 return ($value == 1) ? 'is_primary = 1' : 'is_primary = 0';
3875 }
3876 return NULL;
3877 }
3878
3879 /**
3880 * wrapper for a simple search query
3881 *
3882 * @param array $params
3883 * @param array $returnProperties
3884 * @param bolean $count
3885 *
3886 * @return void
3887 * @access public
3888 */
3889 static function getQuery($params = NULL, $returnProperties = NULL, $count = FALSE) {
3890 $query = new CRM_Contact_BAO_Query($params, $returnProperties);
3891 list($select, $from, $where, $having) = $query->query();
3892
3893 return "$select $from $where $having";
3894 }
3895
3896 /**
3897 * These are stub comments as this function needs more explanation - particularly in terms of how it
3898 * relates to $this->searchQuery and why it replicates rather than calles $this->searchQuery.
3899 *
3900 * This function was originally written as a wrapper for the api query but is called from multiple places
3901 * in the core code directly so the name is misleading. This function does not use the searchQuery function
3902 * but it is unclear as to whehter that is historical or there is a reason
3903 * CRM-11290 led to the permissioning action being extracted from searchQuery & shared with this function
3904 *
3905 * @param array $params
3906 * @param array $returnProperties
3907 * @param string $sort
3908 * @param int $offset
3909 * @param int $row_count
3910 * @params bool $smartGroupCache ?? update smart group cache?
3911 * @param bool $count return count obnly
3912 * @param bool $skipPermissions Should permissions be ignored or should the logged in user's permissions be applied
3913 *
3914 * @return void
3915 * @access public
3916 */
3917 static function apiQuery(
3918 $params = NULL,
3919 $returnProperties = NULL,
3920 $fields = NULL,
3921 $sort = NULL,
3922 $offset = 0,
3923 $row_count = 25,
3924 $smartGroupCache = TRUE,
3925 $count = FALSE,
3926 $skipPermissions = True
3927 ) {
3928
3929 $query = new CRM_Contact_BAO_Query(
3930 $params, $returnProperties,
3931 NULL, TRUE, FALSE, 1,
3932 $skipPermissions,
3933 TRUE, $smartGroupCache
3934 );
3935
3936 //this should add a check for view deleted if permissions are enabled
3937 if ($skipPermissions){
3938 $query->_skipDeleteClause = TRUE;
3939 }
3940 $query->generatePermissionClause(FALSE, $count);
3941 list($select, $from, $where, $having) = $query->query($count);
3942
3943 $options = $query->_options;
3944 if(!empty($query->_permissionWhereClause)){
3945 if (empty($where)) {
3946 $where = "WHERE $query->_permissionWhereClause";
3947 }
3948 else {
3949 $where = "$where AND $query->_permissionWhereClause";
3950 }
3951 }
3952
3953 $sql = "$select $from $where $having";
3954
3955 // add group by
3956 if ($query->_useGroupBy) {
3957 $sql .= ' GROUP BY contact_a.id';
3958 }
3959 if (!empty($sort)) {
3960 $sql .= " ORDER BY $sort ";
3961 }
3962 if ($row_count > 0 && $offset >= 0) {
3963 $sql .= " LIMIT $offset, $row_count ";
3964 }
3965
3966 $dao = CRM_Core_DAO::executeQuery($sql);
3967
3968 $values = array();
3969 while ($dao->fetch()) {
3970 if ($count) {
3971 $noRows = $dao->rowCount;
3972 $dao->free();
3973 return array($noRows,NULL);
3974 }
3975 $values[$dao->contact_id] = $query->store($dao);
3976 }
3977 $dao->free();
3978 return array($values, $options);
3979 }
3980
3981 /**
3982 * create and query the db for an contact search
3983 *
3984 * @param int $offset the offset for the query
3985 * @param int $rowCount the number of rows to return
3986 * @param string $sort the order by string
3987 * @param boolean $count is this a count only query ?
3988 * @param boolean $includeContactIds should we include contact ids?
3989 * @param boolean $sortByChar if true returns the distinct array of first characters for search results
3990 * @param boolean $groupContacts if true, return only the contact ids
3991 * @param boolean $returnQuery should we return the query as a string
3992 * @param string $additionalWhereClause if the caller wants to further restrict the search (used for components)
3993 * @param string $additionalFromClause should be clause with proper joins, effective to reduce where clause load.
3994 *
3995 * @return CRM_Contact_DAO_Contact
3996 * @access public
3997 */
3998 function searchQuery(
3999 $offset = 0, $rowCount = 0, $sort = NULL,
4000 $count = FALSE, $includeContactIds = FALSE,
4001 $sortByChar = FALSE, $groupContacts = FALSE,
4002 $returnQuery = FALSE,
4003 $additionalWhereClause = NULL, $sortOrder = NULL,
4004 $additionalFromClause = NULL, $skipOrderAndLimit = FALSE
4005 ) {
4006
4007 if ($includeContactIds) {
4008 $this->_includeContactIds = TRUE;
4009 $this->_whereClause = $this->whereClause();
4010 }
4011
4012 // hack for now, add permission only if we are in search
4013 // FIXME: we should actually filter out deleted contacts (unless requested to do the opposite)
4014 $permission = ' ( 1 ) ';
4015 $onlyDeleted = FALSE;
4016 $onlyDeleted = in_array(array('deleted_contacts', '=', '1', '0', '0'), $this->_params);
4017
4018 // if we’re explicitely looking for a certain contact’s contribs, events, etc.
4019 // and that contact happens to be deleted, set $onlyDeleted to true
4020 foreach ($this->_params as $values) {
4021 $name = CRM_Utils_Array::value(0, $values);
4022 $op = CRM_Utils_Array::value(1, $values);
4023 $value = CRM_Utils_Array::value(2, $values);
4024 if ($name == 'contact_id' and $op == '=') {
4025 if (CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $value, 'is_deleted')) {
4026 $onlyDeleted = TRUE;
4027 }
4028 break;
4029 }
4030 }
4031 $this->generatePermissionClause($onlyDeleted, $count);
4032
4033 list($select, $from, $where, $having) = $this->query($count, $sortByChar, $groupContacts);
4034
4035 //additional from clause should be w/ proper joins.
4036 if ($additionalFromClause) {
4037 $from .= "\n" . $additionalFromClause;
4038 }
4039
4040 if (empty($where)) {
4041 $where = "WHERE $this->_permissionWhereClause";
4042 }
4043 else {
4044 $where = "$where AND $this->_permissionWhereClause";
4045 }
4046
4047 if ($additionalWhereClause) {
4048 $where = $where . ' AND ' . $additionalWhereClause;
4049 }
4050
4051 // building the query string
4052 $groupBy = NULL;
4053 if (!$count) {
4054 if (isset($this->_groupByComponentClause)) {
4055 $groupBy = $this->_groupByComponentClause;
4056 }
4057 elseif ($this->_useGroupBy) {
4058 $groupBy = ' GROUP BY contact_a.id';
4059 }
4060 }
4061 if ($this->_mode & CRM_Contact_BAO_Query::MODE_ACTIVITY && (!$count)) {
4062 $groupBy = 'GROUP BY civicrm_activity.id ';
4063 }
4064
4065 $order = $orderBy = $limit = '';
4066 if (!$count) {
4067 $config = CRM_Core_Config::singleton();
4068 if ($config->includeOrderByClause ||
4069 isset($this->_distinctComponentClause)
4070 ) {
4071 if ($sort) {
4072 if (is_string($sort)) {
4073 $orderBy = $sort;
4074 }
4075 else {
4076 $orderBy = trim($sort->orderBy());
4077 }
4078 if (!empty($orderBy)) {
4079 // this is special case while searching for
4080 // changelog CRM-1718
4081 if (preg_match('/sort_name/i', $orderBy)) {
4082 $orderBy = str_replace('sort_name', 'contact_a.sort_name', $orderBy);
4083 }
4084
4085 $order = " ORDER BY $orderBy";
4086
4087 if ($sortOrder) {
4088 $order .= " $sortOrder";
4089 }
4090
4091 // always add contact_a.id to the ORDER clause
4092 // so the order is deterministic
4093 if (strpos('contact_a.id', $order) === FALSE) {
4094 $order .= ", contact_a.id";
4095 }
4096 }
4097 }
4098 elseif ($sortByChar) {
4099 $order = " ORDER BY UPPER(LEFT(contact_a.sort_name, 1)) asc";
4100 }
4101 else {
4102 $order = " ORDER BY contact_a.sort_name asc, contact_a.id";
4103 }
4104 }
4105
4106 $doOpt = TRUE;
4107 // hack for order clause
4108 if ($order) {
4109 $fieldStr = trim(str_replace('ORDER BY', '', $order));
4110 $fieldOrder = explode(' ', $fieldStr);
4111 $field = $fieldOrder[0];
4112
4113 if ($field) {
4114 switch ($field) {
4115 case 'sort_name':
4116 case 'id':
4117 case 'contact_a.sort_name':
4118 case 'contact_a.id':
4119 break;
4120
4121 case 'city':
4122 case 'postal_code':
4123 $this->_whereTables["civicrm_address"] = 1;
4124 $order = str_replace($field, "civicrm_address.{$field}", $order);
4125 break;
4126
4127 case 'country':
4128 case 'state_province':
4129 $this->_whereTables["civicrm_{$field}"] = 1;
4130 $order = str_replace($field, "civicrm_{$field}.name", $order);
4131 break;
4132
4133 case 'email':
4134 $this->_whereTables["civicrm_email"] = 1;
4135 $order = str_replace($field, "civicrm_email.{$field}", $order);
4136 break;
4137
4138 default:
4139 $doOpt = FALSE;
4140 }
4141 }
4142 }
4143
4144
4145 if ($rowCount > 0 && $offset >= 0) {
4146 $limit = " LIMIT $offset, $rowCount ";
4147
4148 // ok here is a first hack at an optimization, lets get all the contact ids
4149 // that are restricted and we'll then do the final clause with it
4150 // CRM-5954
4151 if (isset($this->_distinctComponentClause)) {
4152 if (strpos($this->_distinctComponentClause, 'DISTINCT') == FALSE) {
4153 $limitSelect = "SELECT DISTINCT {$this->_distinctComponentClause}";
4154 }
4155 else {
4156 $limitSelect = "SELECT {$this->_distinctComponentClause}";
4157 }
4158 }
4159 else {
4160 $limitSelect = 'SELECT DISTINCT contact_a.id as id';
4161 }
4162
4163 if ($doOpt) {
4164 $this->_simpleFromClause = self::fromClause($this->_whereTables, NULL, NULL,
4165 $this->_primaryLocation, $this->_mode
4166 );
4167
4168 if ($additionalFromClause) {
4169 $this->_simpleFromClause .= "\n" . $additionalFromClause;
4170 }
4171 // if we are doing a transform, do it here
4172 // CRM-7969
4173 $having = NULL;
4174 if ($this->_displayRelationshipType) {
4175 $this->filterRelatedContacts($this->_simpleFromClause, $where, $having);
4176 }
4177
4178 $limitQuery = "$limitSelect {$this->_simpleFromClause} $where $groupBy $order $limit";
4179 $limitDAO = CRM_Core_DAO::executeQuery($limitQuery);
4180 $limitIDs = array();
4181 while ($limitDAO->fetch()) {
4182 if ($limitDAO->id) {
4183 $limitIDs[] = $limitDAO->id;
4184 }
4185 }
4186 if (empty($limitIDs)) {
4187 $limitClause = ' AND ( 0 ) ';
4188 }
4189 else {
4190 if (isset($this->_distinctComponentClause)) {
4191 $limitClause = " AND {$this->_distinctComponentClause} IN ( ";
4192 }
4193 else {
4194 $limitClause = ' AND contact_a.id IN ( ';
4195 }
4196 $limitClause .= implode(',', $limitIDs) . ' ) ';
4197 }
4198 $where .= $limitClause;
4199 // reset limit clause since we already restrict what records we want
4200 $limit = NULL;
4201 }
4202 }
4203 }
4204
4205 // if we are doing a transform, do it here
4206 // use the $from, $where and $having to get the contact ID
4207 if ($this->_displayRelationshipType) {
4208 $this->filterRelatedContacts($from, $where, $having);
4209 }
4210
4211 if ($skipOrderAndLimit) {
4212 $query = "$select $from $where $having $groupBy";
4213 }
4214 else {
4215 $query = "$select $from $where $having $groupBy $order $limit";
4216 }
4217
4218 if ($returnQuery) {
4219 return $query;
4220 }
4221
4222 if ($count) {
4223 return CRM_Core_DAO::singleValueQuery($query);
4224 }
4225
4226 //crm_core_error::debug('$query', $query); //exit;
4227
4228 $dao = CRM_Core_DAO::executeQuery($query);
4229 if ($groupContacts) {
4230 $ids = array();
4231 while ($dao->fetch()) {
4232 $ids[] = $dao->id;
4233 }
4234 return implode(',', $ids);
4235 }
4236
4237 return $dao;
4238 }
4239
4240 /**
4241 * Populate $this->_permissionWhereClause with permission related clause and update other
4242 * query related properties.
4243 *
4244 * Function calls ACL permission class and hooks to filter the query appropriately
4245 *
4246 * Note that these 2 params were in the code when extracted from another function
4247 * and a second round extraction would be to make them properties of the class
4248 *
4249 * @param bool $onlyDeleted Only get deleted contacts
4250 * @param bool $count Return Count only
4251 *
4252 * @return null
4253 */
4254 function generatePermissionClause($onlyDeleted = FALSE, $count = FALSE) {
4255 if (!$this->_skipPermission) {
4256 $this->_permissionWhereClause = CRM_ACL_API::whereClause(
4257 CRM_Core_Permission::VIEW,
4258 $this->_tables,
4259 $this->_whereTables,
4260 NULL,
4261 $onlyDeleted,
4262 $this->_skipDeleteClause
4263 );
4264
4265 // regenerate fromClause since permission might have added tables
4266 if ($this->_permissionWhereClause) {
4267 //fix for row count in qill (in contribute/membership find)
4268 if (!$count) {
4269 $this->_useDistinct = TRUE;
4270 }
4271 $this->_fromClause = self::fromClause($this->_tables, NULL, NULL, $this->_primaryLocation, $this->_mode);
4272 $this->_simpleFromClause = self::fromClause($this->_whereTables, NULL, NULL, $this->_primaryLocation, $this->_mode);
4273 }
4274 }
4275 else {
4276 // add delete clause if needed even if we are skipping permission
4277 // CRM-7639
4278 if (!$this->_skipDeleteClause) {
4279 if (CRM_Core_Permission::check('access deleted contacts') and $onlyDeleted) {
4280 $this->_permissionWhereClause = '(contact_a.is_deleted)';
4281 }
4282 else {
4283 // CRM-6181
4284 $this->_permissionWhereClause = '(contact_a.is_deleted = 0)';
4285 }
4286 }
4287 }
4288 }
4289
4290 function setSkipPermission($val) {
4291 $this->_skipPermission = $val;
4292 }
4293
4294 function &summaryContribution($context = NULL) {
4295 list($select, $from, $where, $having) = $this->query(TRUE);
4296
4297 // hack $select
4298 $select = "
4299 SELECT COUNT( civicrm_contribution.total_amount ) as total_count,
4300 SUM( civicrm_contribution.total_amount ) as total_amount,
4301 AVG( civicrm_contribution.total_amount ) as total_avg,
4302 civicrm_contribution.currency as currency";
4303
4304 // make sure contribution is completed - CRM-4989
4305 $where .= " AND civicrm_contribution.contribution_status_id = 1 ";
4306 if ($context == 'search') {
4307 $where .= " AND contact_a.is_deleted = 0 ";
4308 }
4309
4310 $summary = array();
4311 $summary['total'] = array();
4312 $summary['total']['count'] = $summary['total']['amount'] = $summary['total']['avg'] = "n/a";
4313
4314 $query = "$select $from $where GROUP BY currency";
4315 $params = array();
4316
4317 $dao = CRM_Core_DAO::executeQuery($query, $params);
4318
4319 $summary['total']['count'] = 0;
4320 $summary['total']['amount'] = $summary['total']['avg'] = array();
4321 while ($dao->fetch()) {
4322 $summary['total']['count'] += $dao->total_count;
4323 $summary['total']['amount'][] = CRM_Utils_Money::format($dao->total_amount, $dao->currency);
4324 $summary['total']['avg'][] = CRM_Utils_Money::format($dao->total_avg, $dao->currency);
4325 }
4326 if (!empty($summary['total']['amount'])) {
4327 $summary['total']['amount'] = implode(',&nbsp;', $summary['total']['amount']);
4328 $summary['total']['avg'] = implode(',&nbsp;', $summary['total']['avg']);
4329 }
4330 else {
4331 $summary['total']['amount'] = $summary['total']['avg'] = 0;
4332 }
4333
4334 // hack $select
4335 $select = "
4336 SELECT COUNT( civicrm_contribution.total_amount ) as cancel_count,
4337 SUM( civicrm_contribution.total_amount ) as cancel_amount,
4338 AVG( civicrm_contribution.total_amount ) as cancel_avg,
4339 civicrm_contribution.currency as currency";
4340
4341 $where .= " AND civicrm_contribution.cancel_date IS NOT NULL ";
4342 if ($context == 'search') {
4343 $where .= " AND contact_a.is_deleted = 0 ";
4344 }
4345
4346 $query = "$select $from $where GROUP BY currency";
4347 $dao = CRM_Core_DAO::executeQuery($query, $params);
4348
4349 if ($dao->N <= 1) {
4350 if ($dao->fetch()) {
4351 $summary['cancel']['count'] = $dao->cancel_count;
4352 $summary['cancel']['amount'] = $dao->cancel_amount;
4353 $summary['cancel']['avg'] = $dao->cancel_avg;
4354 }
4355 }
4356 else {
4357 $summary['cancel']['count'] = 0;
4358 $summary['cancel']['amount'] = $summary['cancel']['avg'] = array();
4359 while ($dao->fetch()) {
4360 $summary['cancel']['count'] += $dao->cancel_count;
4361 $summary['cancel']['amount'][] = CRM_Utils_Money::format($dao->cancel_amount, $dao->currency);
4362 $summary['cancel']['avg'][] = CRM_Utils_Money::format($dao->cancel_avg, $dao->currency);
4363 }
4364 $summary['cancel']['amount'] = implode(',&nbsp;', $summary['cancel']['amount']);
4365 $summary['cancel']['avg'] = implode(',&nbsp;', $summary['cancel']['avg']);
4366 }
4367
4368 return $summary;
4369 }
4370
4371 /**
4372 * getter for the qill object
4373 *
4374 * @return string
4375 * @access public
4376 */
4377 function qill() {
4378 return $this->_qill;
4379 }
4380
4381 /**
4382 * default set of return default hier return properties
4383 *
4384 * @return void
4385 * @access public
4386 */
4387 static function &defaultHierReturnProperties() {
4388 if (!isset(self::$_defaultHierReturnProperties)) {
4389 self::$_defaultHierReturnProperties = array(
4390 'home_URL' => 1,
4391 'image_URL' => 1,
4392 'legal_identifier' => 1,
4393 'external_identifier' => 1,
4394 'contact_type' => 1,
4395 'contact_sub_type' => 1,
4396 'sort_name' => 1,
4397 'display_name' => 1,
4398 'nick_name' => 1,
4399 'first_name' => 1,
4400 'middle_name' => 1,
4401 'last_name' => 1,
4402 'individual_prefix' => 1,
4403 'individual_suffix' => 1,
4404 'email_greeting' => 1,
4405 'postal_greeting' => 1,
4406 'addressee' => 1,
4407 'birth_date' => 1,
4408 'gender' => 1,
4409 'preferred_communication_method' => 1,
4410 'do_not_phone' => 1,
4411 'do_not_email' => 1,
4412 'do_not_mail' => 1,
4413 'do_not_sms' => 1,
4414 'do_not_trade' => 1,
4415 'location' =>
4416 array(
4417 '1' => array('location_type' => 1,
4418 'street_address' => 1,
4419 'city' => 1,
4420 'state_province' => 1,
4421 'postal_code' => 1,
4422 'postal_code_suffix' => 1,
4423 'country' => 1,
4424 'phone-Phone' => 1,
4425 'phone-Mobile' => 1,
4426 'phone-Fax' => 1,
4427 'phone-1' => 1,
4428 'phone-2' => 1,
4429 'phone-3' => 1,
4430 'im-1' => 1,
4431 'im-2' => 1,
4432 'im-3' => 1,
4433 'email-1' => 1,
4434 'email-2' => 1,
4435 'email-3' => 1,
4436 ),
4437 '2' => array(
4438 'location_type' => 1,
4439 'street_address' => 1,
4440 'city' => 1,
4441 'state_province' => 1,
4442 'postal_code' => 1,
4443 'postal_code_suffix' => 1,
4444 'country' => 1,
4445 'phone-Phone' => 1,
4446 'phone-Mobile' => 1,
4447 'phone-1' => 1,
4448 'phone-2' => 1,
4449 'phone-3' => 1,
4450 'im-1' => 1,
4451 'im-2' => 1,
4452 'im-3' => 1,
4453 'email-1' => 1,
4454 'email-2' => 1,
4455 'email-3' => 1,
4456 ),
4457 ),
4458 );
4459 }
4460 return self::$_defaultHierReturnProperties;
4461 }
4462
4463 function dateQueryBuilder(
4464 &$values, $tableName, $fieldName,
4465 $dbFieldName, $fieldTitle,
4466 $appendTimeStamp = TRUE
4467 ) {
4468 list($name, $op, $value, $grouping, $wildcard) = $values;
4469
4470 if (!$value) {
4471 return;
4472 }
4473
4474 if ($name == "{$fieldName}_low" ||
4475 $name == "{$fieldName}_high"
4476 ) {
4477 if (isset($this->_rangeCache[$fieldName])) {
4478 return;
4479 }
4480 $this->_rangeCache[$fieldName] = 1;
4481
4482 $secondOP = $secondPhrase = $secondValue = $secondDate = $secondDateFormat = NULL;
4483
4484 if ($name == $fieldName . '_low') {
4485 $firstOP = '>=';
4486 $firstPhrase = ts('greater than or equal to');
4487 $firstDate = CRM_Utils_Date::processDate($value);
4488
4489 $secondValues = $this->getWhereValues("{$fieldName}_high", $grouping);
4490 if (!empty($secondValues) && $secondValues[2]) {
4491 $secondOP = '<=';
4492 $secondPhrase = ts('less than or equal to');
4493 $secondValue = $secondValues[2];
4494
4495 if ($appendTimeStamp && strlen($secondValue) == 10) {
4496 $secondValue .= ' 23:59:59';
4497 }
4498 $secondDate = CRM_Utils_Date::processDate($secondValue);
4499 }
4500 }
4501 elseif ($name == $fieldName . '_high') {
4502 $firstOP = '<=';
4503 $firstPhrase = ts('less than or equal to');
4504
4505 if ($appendTimeStamp && strlen($value) == 10) {
4506 $value .= ' 23:59:59';
4507 }
4508 $firstDate = CRM_Utils_Date::processDate($value);
4509
4510 $secondValues = $this->getWhereValues("{$fieldName}_low", $grouping);
4511 if (!empty($secondValues) && $secondValues[2]) {
4512 $secondOP = '>=';
4513 $secondPhrase = ts('greater than or equal to');
4514 $secondValue = $secondValues[2];
4515 $secondDate = CRM_Utils_Date::processDate($secondValue);
4516 }
4517 }
4518
4519 if (!$appendTimeStamp) {
4520 $firstDate = substr($firstDate, 0, 8);
4521 }
4522 $firstDateFormat = CRM_Utils_Date::customFormat($firstDate);
4523
4524 if ($secondDate) {
4525 if (!$appendTimeStamp) {
4526 $secondDate = substr($secondDate, 0, 8);
4527 }
4528 $secondDateFormat = CRM_Utils_Date::customFormat($secondDate);
4529 }
4530
4531 $this->_tables[$tableName] = $this->_whereTables[$tableName] = 1;
4532 if ($secondDate) {
4533 $this->_where[$grouping][] = "
4534 ( {$tableName}.{$dbFieldName} $firstOP '$firstDate' ) AND
4535 ( {$tableName}.{$dbFieldName} $secondOP '$secondDate' )
4536 ";
4537 $this->_qill[$grouping][] = "$fieldTitle - $firstPhrase \"$firstDateFormat\" " . ts('AND') . " $secondPhrase \"$secondDateFormat\"";
4538 }
4539 else {
4540 $this->_where[$grouping][] = "{$tableName}.{$dbFieldName} $firstOP '$firstDate'";
4541 $this->_qill[$grouping][] = "$fieldTitle - $firstPhrase \"$firstDateFormat\"";
4542 }
4543 }
4544
4545 if ($name == $fieldName) {
4546 // $op = '=';
4547 $phrase = $op;
4548
4549 $date = CRM_Utils_Date::processDate($value);
4550
4551 if (!$appendTimeStamp) {
4552 $date = substr($date, 0, 8);
4553 }
4554
4555 $format = CRM_Utils_Date::customFormat($date);
4556
4557 if ($date) {
4558 $this->_where[$grouping][] = "{$tableName}.{$dbFieldName} $op '$date'";
4559 }
4560 else {
4561 $this->_where[$grouping][] = "{$tableName}.{$dbFieldName} $op";
4562 }
4563 $this->_tables[$tableName] = $this->_whereTables[$tableName] = 1;
4564 $this->_qill[$grouping][] = "$fieldTitle - $phrase \"$format\"";
4565 }
4566
4567 if (
4568 $tableName == 'civicrm_log' &&
4569 $fieldTitle == ts('Added Date')
4570 ) {
4571 //CRM-6903 --hack to check modified date of first record.
4572 //as added date means first modified date of object.
4573 $addedDateQuery = 'select id from civicrm_log group by entity_id order by id';
4574 $this->_where[$grouping][] = "civicrm_log.id IN ( {$addedDateQuery} )";
4575 }
4576 }
4577
4578 function numberRangeBuilder(&$values,
4579 $tableName, $fieldName,
4580 $dbFieldName, $fieldTitle,
4581 $options = NULL
4582 ) {
4583 list($name, $op, $value, $grouping, $wildcard) = $values;
4584
4585 if ($name == "{$fieldName}_low" ||
4586 $name == "{$fieldName}_high"
4587 ) {
4588 if (isset($this->_rangeCache[$fieldName])) {
4589 return;
4590 }
4591 $this->_rangeCache[$fieldName] = 1;
4592
4593 $secondOP = $secondPhrase = $secondValue = NULL;
4594
4595 if ($name == "{$fieldName}_low") {
4596 $firstOP = '>=';
4597 $firstPhrase = ts('greater than');
4598
4599 $secondValues = $this->getWhereValues("{$fieldName}_high", $grouping);
4600 if (!empty($secondValues)) {
4601 $secondOP = '<=';
4602 $secondPhrase = ts('less than');
4603 $secondValue = $secondValues[2];
4604 }
4605 }
4606 else {
4607 $firstOP = '<=';
4608 $firstPhrase = ts('less than');
4609
4610 $secondValues = $this->getWhereValues("{$fieldName}_low", $grouping);
4611 if (!empty($secondValues)) {
4612 $secondOP = '>=';
4613 $secondPhrase = ts('greater than');
4614 $secondValue = $secondValues[2];
4615 }
4616 }
4617
4618 if ($secondOP) {
4619 $this->_where[$grouping][] = "
4620 ( {$tableName}.{$dbFieldName} $firstOP {$value} ) AND
4621 ( {$tableName}.{$dbFieldName} $secondOP {$secondValue} )
4622 ";
4623 $displayValue = $options ? $options[$value] : $value;
4624 $secondDisplayValue = $options ? $options[$secondValue] : $secondValue;
4625
4626 $this->_qill[$grouping][] =
4627 "$fieldTitle - $firstPhrase \"$displayValue\" " . ts('AND') . " $secondPhrase \"$secondDisplayValue\"";
4628 }
4629 else {
4630 $this->_where[$grouping][] = "{$tableName}.{$dbFieldName} $firstOP {$value}";
4631 $displayValue = $options ? $options[$value] : $value;
4632 $this->_qill[$grouping][] = "$fieldTitle - $firstPhrase \"$displayValue\"";
4633 }
4634 $this->_tables[$tableName] = $this->_whereTables[$tableName] = 1;
4635
4636 return;
4637 }
4638
4639 if ($name == $fieldName) {
4640 $op = '=';
4641 $phrase = '=';
4642
4643 $this->_where[$grouping][] = "{$tableName}.{$dbFieldName} $op {$value}";
4644
4645 $this->_tables[$tableName] = $this->_whereTables[$tableName] = 1;
4646 $displayValue = $options ? $options[$value] : $value;
4647 $this->_qill[$grouping][] = "$fieldTitle - $phrase \"$displayValue\"";
4648 }
4649
4650 return;
4651 }
4652
4653 /**
4654 * Given the field name, operator, value & its data type
4655 * builds the where Clause for the query
4656 * used for handling 'IS NULL'/'IS NOT NULL' operators
4657 *
4658 * @param string $field fieldname
4659 * @param string $op operator
4660 * @param string $value value
4661 * @param string $dataType data type of the field
4662 *
4663 * @return where clause for the query
4664 * @access public
4665 */
4666 static function buildClause($field, $op, $value = NULL, $dataType = NULL) {
4667 $op = trim($op);
4668 $clause = "$field $op";
4669
4670 switch ($op) {
4671 case 'IS NULL':
4672 case 'IS NOT NULL':
4673 return $clause;
4674
4675 case 'IS EMPTY':
4676 $clause = " ( $field IS NULL OR $field = '' ) ";
4677 return $clause;
4678
4679 case 'IS NOT EMPTY':
4680 $clause = " ( $field IS NOT NULL AND $field <> '' ) ";
4681 return $clause;
4682
4683 case 'IN':
4684 case 'NOT IN':
4685 if (isset($dataType)) {
4686 if (is_array($value)) {
4687 $values = $value;
4688 }
4689 else {
4690 $value = CRM_Utils_Type::escape($value, "String");
4691 $values = explode(',', CRM_Utils_Array::value(0, explode(')', CRM_Utils_Array::value(1, explode('(', $value)))));
4692 }
4693 // supporting multiple values in IN clause
4694 $val = array();
4695 foreach ($values as $v) {
4696 $v = trim($v);
4697 $val[] = "'" . CRM_Utils_Type::escape($v, $dataType) . "'";
4698 }
4699 $value = "(" . implode($val, ",") . ")";
4700 }
4701 return "$clause $value";
4702
4703 default:
4704 if (empty($dataType)) {
4705 $dataType = 'String';
4706 }
4707
4708 $value = CRM_Utils_Type::escape($value, $dataType);
4709
4710 // if we dont have a dataType we should assume
4711 if ($dataType == 'String') {
4712 $value = "'" . strtolower($value) . "'";
4713 }
4714 return "$clause $value";
4715 }
4716 }
4717
4718 function openedSearchPanes($reset = FALSE) {
4719 if (!$reset || empty($this->_whereTables)) {
4720 return self::$_openedPanes;
4721 }
4722
4723 // pane name to table mapper
4724 $panesMapper = array(
4725 ts('Contributions') => 'civicrm_contribution',
4726 ts('Memberships') => 'civicrm_membership',
4727 ts('Events') => 'civicrm_participant',
4728 ts('Relationships') => 'civicrm_relationship',
4729 ts('Activities') => 'civicrm_activity',
4730 ts('Pledges') => 'civicrm_pledge',
4731 ts('Cases') => 'civicrm_case',
4732 ts('Grants') => 'civicrm_grant',
4733 ts('Address Fields') => 'civicrm_address',
4734 ts('Notes') => 'civicrm_note',
4735 ts('Change Log') => 'civicrm_log',
4736 ts('Mailings') => 'civicrm_mailing_event_queue',
4737 );
4738
4739 foreach (array_keys($this->_whereTables) as $table) {
4740 if ($panName = array_search($table, $panesMapper)) {
4741 self::$_openedPanes[$panName] = TRUE;
4742 }
4743 }
4744
4745 return self::$_openedPanes;
4746 }
4747
4748 function setOperator($operator) {
4749 $validOperators = array('AND', 'OR');
4750 if (!in_array($operator, $validOperators)) {
4751 $operator = 'AND';
4752 }
4753 $this->_operator = $operator;
4754 }
4755
4756 function getOperator() {
4757 return $this->_operator;
4758 }
4759
4760 function filterRelatedContacts(&$from, &$where, &$having) {
4761 static $_rTypeProcessed = NULL;
4762 static $_rTypeFrom = NULL;
4763 static $_rTypeWhere = NULL;
4764
4765 if (!$_rTypeProcessed) {
4766 $_rTypeProcessed = TRUE;
4767
4768 // create temp table with contact ids
4769 $tableName = CRM_Core_DAO::createTempTableName('civicrm_transform', TRUE);
4770 $sql = "CREATE TEMPORARY TABLE $tableName ( contact_id int primary key) ENGINE=HEAP";
4771 CRM_Core_DAO::executeQuery($sql);
4772
4773 $sql = "
4774 REPLACE INTO $tableName ( contact_id )
4775 SELECT contact_a.id
4776 $from
4777 $where
4778 $having
4779 ";
4780 CRM_Core_DAO::executeQuery($sql);
4781
4782 $qillMessage = ts('Contacts with a Relationship Type of: ');
4783 $rTypes = CRM_Core_PseudoConstant::relationshipType();
4784
4785 if (is_numeric($this->_displayRelationshipType)) {
4786 $relationshipTypeLabel = $rTypes[$this->_displayRelationshipType]['label_a_b'];
4787 $_rTypeFrom = "
4788 INNER JOIN civicrm_relationship displayRelType ON ( displayRelType.contact_id_a = contact_a.id OR displayRelType.contact_id_b = contact_a.id )
4789 INNER JOIN $tableName transform_temp ON ( transform_temp.contact_id = displayRelType.contact_id_a OR transform_temp.contact_id = displayRelType.contact_id_b )
4790 ";
4791 $_rTypeWhere = "
4792 WHERE displayRelType.relationship_type_id = {$this->_displayRelationshipType}
4793 AND displayRelType.is_active = 1
4794 ";
4795 }
4796 else {
4797 list($relType, $dirOne, $dirTwo) = explode('_', $this->_displayRelationshipType);
4798 if ($dirOne == 'a') {
4799 $relationshipTypeLabel = $rTypes[$relType]['label_a_b'];
4800 $_rTypeFrom .= "
4801 INNER JOIN civicrm_relationship displayRelType ON ( displayRelType.contact_id_a = contact_a.id )
4802 INNER JOIN $tableName transform_temp ON ( transform_temp.contact_id = displayRelType.contact_id_b )
4803 ";
4804 }
4805 else {
4806 $relationshipTypeLabel = $rTypes[$relType]['label_b_a'];
4807 $_rTypeFrom .= "
4808 INNER JOIN civicrm_relationship displayRelType ON ( displayRelType.contact_id_b = contact_a.id )
4809 INNER JOIN $tableName transform_temp ON ( transform_temp.contact_id = displayRelType.contact_id_a )
4810 ";
4811 }
4812 $_rTypeWhere = "
4813 WHERE displayRelType.relationship_type_id = $relType
4814 AND displayRelType.is_active = 1
4815 ";
4816 }
4817 $this->_qill[0][] = $qillMessage . "'" . $relationshipTypeLabel . "'";
4818 }
4819
4820 if (strpos($from, $_rTypeFrom) === FALSE) {
4821 // lets replace all the INNER JOIN's in the $from so we dont exclude other data
4822 // this happens when we have an event_type in the quert (CRM-7969)
4823 $from = str_replace("INNER JOIN", "LEFT JOIN", $from);
4824 $from .= $_rTypeFrom;
4825 $where = $_rTypeWhere;
4826 }
4827
4828 $having = NULL;
4829 }
4830
4831 static function caseImportant( $op ) {
4832 return
4833 in_array($op, array('LIKE', 'IS NULL', 'IS NOT NULL', 'IS EMPTY', 'IS NOT EMPTY')) ? FALSE : TRUE;
4834 }
4835
4836 static function componentPresent( &$returnProperties, $prefix ) {
4837 foreach ($returnProperties as $name => $dontCare ) {
4838 if (substr($name, 0, strlen($prefix)) == $prefix) {
4839 return TRUE;
4840 }
4841 }
4842 return FALSE;
4843 }
4844
4845 /**
4846 * Builds the necessary structures for all fields that are similar to option value lookups
4847 *
4848 * @param $name string the name of the field
4849 * @param $op string the sql operator, this function should handle ALL SQL operators
4850 * @param $value any string / integer / array depends on the operator and whos calling the query builder
4851 * @param $grouping int the index where to place the where clause
4852 * @param $selectValue array the key value pairs for this element. This allows us to use this function for things besides option-value pairs
4853 * @param $field array an array that contains various properties of the field identified by $name
4854 * @param $label string The label for this field element
4855 * @param $dataType string The data type for this element
4856 *
4857 * @return void adds the where clause and qill to the query object
4858 */
4859 function optionValueQuery(
4860 $name,
4861 $op,
4862 $value,
4863 $grouping,
4864 $selectValues,
4865 $field,
4866 $label,
4867 $dataType = 'String'
4868 ) {
4869 $qill = $value;
4870 if (is_numeric($value)) {
4871 $qill = $value = $selectValues[(int ) $value];
4872 }
4873 elseif ($op == 'IN' || $op == 'NOT IN') {
4874 $values = self::parseSearchBuilderString($value);
4875 if (is_array($values)) {
4876 $newValues = array();
4877 foreach ($values as $v) {
4878 $newValues[] = $selectValues[(int ) $v];
4879 }
4880 $value = $newValues;
4881 $qill = implode(', ', $value);
4882 }
4883 }
4884 $wc = self::caseImportant($op) ? "LOWER({$field['where']})" : "{$field['where']}";
4885 $this->_where[$grouping][] = self::buildClause($wc, $op, $value, $dataType);
4886 $this->_qill[$grouping][] = $label . " $op '$qill'";
4887 }
4888
4889 /** function to check and explode a user defined numeric string into an array
4890 * this was the protocol used by search builder in the old old days before we had
4891 * super nice js widgets to do the hard work
4892 *
4893 * @param string the string to check
4894 * @param string the dataType we should check for the values, default integer
4895 *
4896 * @return FALSE if string does not match the patter
4897 * array of numeric values if string does match the pattern
4898 * @static
4899 */
4900 static function parseSearchBuilderString($string, $dataType = 'Integer') {
4901 $string = trim($string);
4902 if (substr($string, 0, 1) != '(' || substr($string, -1, 1) != ')') {
4903 Return FALSE;
4904 }
4905
4906 $string = substr($string, 1, -1);
4907 $values = explode(',', $string);
4908 if (empty($values)) {
4909 return FALSE;
4910 }
4911
4912 $returnValues = array();
4913 foreach ($values as $v) {
4914 if ($dataType == 'Integer' && ! is_numeric($v)) {
4915 return FALSE;
4916 }
4917 else if ($dataType == 'String' && ! is_string($v)) {
4918 return FALSE;
4919 }
4920 $returnValues[] = trim($v);
4921 }
4922
4923 if (empty($returnValues)) {
4924 return FALSE;
4925 }
4926
4927 return $returnValues;
4928 }
4929 }
4930