Cleanup phpdoc comments
[civicrm-core.git] / CRM / Core / BAO / CustomQuery.php
CommitLineData
6a488035
TO
1<?php
2
3/*
4 +--------------------------------------------------------------------+
06b69b18 5 | CiviCRM version 4.5 |
6a488035 6 +--------------------------------------------------------------------+
06b69b18 7 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
8 +--------------------------------------------------------------------+
9 | This file is a part of CiviCRM. |
10 | |
11 | CiviCRM is free software; you can copy, modify, and distribute it |
12 | under the terms of the GNU Affero General Public License |
13 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | |
15 | CiviCRM is distributed in the hope that it will be useful, but |
16 | WITHOUT ANY WARRANTY; without even the implied warranty of |
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
18 | See the GNU Affero General Public License for more details. |
19 | |
20 | You should have received a copy of the GNU Affero General Public |
21 | License and the CiviCRM Licensing Exception along |
22 | with this program; if not, contact CiviCRM LLC |
23 | at info[AT]civicrm[DOT]org. If you have questions about the |
24 | GNU Affero General Public License or the licensing of CiviCRM, |
25 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
26 +--------------------------------------------------------------------+
27*/
28
29/**
30 *
31 *
32 * @package CRM
06b69b18 33 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
34 * $Id$
35 *
36 */
37class CRM_Core_BAO_CustomQuery {
38 CONST PREFIX = 'custom_value_';
39
40 /**
100fef9d 41 * The set of custom field ids
6a488035
TO
42 *
43 * @var array
44 */
45 protected $_ids;
46
47 /**
100fef9d 48 * The select clause
6a488035
TO
49 *
50 * @var array
51 */
52 public $_select;
53
54 /**
100fef9d 55 * The name of the elements that are in the select clause
6a488035
TO
56 * used to extract the values
57 *
58 * @var array
59 */
60 public $_element;
61
62 /**
100fef9d 63 * The tables involved in the query
6a488035
TO
64 *
65 * @var array
66 */
67 public $_tables;
68 public $_whereTables;
69
70 /**
100fef9d 71 * The where clause
6a488035
TO
72 *
73 * @var array
74 */
75 public $_where;
76
77 /**
78 * The english language version of the query
79 *
80 * @var array
81 */
82 public $_qill;
83
84 /**
85 * The cache to translate the option values into labels
86 *
87 * @var array
88 */
89 public $_options;
90
91 /**
92 * The custom fields information
93 *
94 * @var array
95 */
96 public $_fields;
97
98 /**
99 * Searching for contacts?
100 *
101 * @var boolean
102 */
103 protected $_contactSearch;
104
247ad911 105 protected $_locationSpecificCustomFields;
442df34b 106
6a488035
TO
107 /**
108 * This stores custom data group types and tables that it extends
109 *
dcf0d348 110 * @todo add comments explaining why survey & campaign are missing from this
6a488035
TO
111 * @var array
112 * @static
113 */
114 static $extendsMap = array(
115 'Contact' => 'civicrm_contact',
116 'Individual' => 'civicrm_contact',
117 'Household' => 'civicrm_contact',
118 'Organization' => 'civicrm_contact',
119 'Contribution' => 'civicrm_contribution',
120 'Membership' => 'civicrm_membership',
121 'Participant' => 'civicrm_participant',
122 'Group' => 'civicrm_group',
123 'Relationship' => 'civicrm_relationship',
124 'Event' => 'civicrm_event',
125 'Case' => 'civicrm_case',
126 'Activity' => 'civicrm_activity',
127 'Pledge' => 'civicrm_pledge',
128 'Grant' => 'civicrm_grant',
129 'Address' => 'civicrm_address',
130 );
131
132 /**
100fef9d 133 * Class constructor
6a488035
TO
134 *
135 * Takes in a set of custom field ids andsets up the data structures to
136 * generate a query
137 *
fd31fa4c
EM
138 * @param array $ids the set of custom field ids
139 *
140 * @param bool $contactSearch
141 * @param array $locationSpecificFields
6a488035
TO
142 *
143 * @access public
442df34b
CW
144 */
145 function __construct($ids, $contactSearch = FALSE, $locationSpecificFields = array()) {
6a488035 146 $this->_ids = &$ids;
247ad911 147 $this->_locationSpecificCustomFields = $locationSpecificFields;
6a488035
TO
148
149 $this->_select = array();
150 $this->_element = array();
151 $this->_tables = array();
152 $this->_whereTables = array();
153 $this->_where = array();
154 $this->_qill = array();
155 $this->_options = array();
156
157 $this->_fields = array();
158 $this->_contactSearch = $contactSearch;
159
160 if (empty($this->_ids)) {
161 return;
162 }
163
164 // initialize the field array
165 $tmpArray = array_keys($this->_ids);
166 $idString = implode(',', $tmpArray);
167 $query = "
168SELECT f.id, f.label, f.data_type,
169 f.html_type, f.is_search_range,
170 f.option_group_id, f.custom_group_id,
171 f.column_name, g.table_name,
172 f.date_format,f.time_format
173 FROM civicrm_custom_field f,
174 civicrm_custom_group g
175 WHERE f.custom_group_id = g.id
176 AND g.is_active = 1
177 AND f.is_active = 1
178 AND f.id IN ( $idString )";
179
180 $dao = CRM_Core_DAO::executeQuery($query);
181 while ($dao->fetch()) {
182 // get the group dao to figure which class this custom field extends
183 $extends = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomGroup', $dao->custom_group_id, 'extends');
184 if (array_key_exists($extends, self::$extendsMap)) {
185 $extendsTable = self::$extendsMap[$extends];
186 }
187 elseif (in_array($extends, CRM_Contact_BAO_ContactType::subTypes())) {
188 // if $extends is a subtype, refer contact table
189 $extendsTable = self::$extendsMap['Contact'];
190 }
191 $this->_fields[$dao->id] = array(
192 'id' => $dao->id,
193 'label' => $dao->label,
194 'extends' => $extendsTable,
195 'data_type' => $dao->data_type,
196 'html_type' => $dao->html_type,
197 'is_search_range' => $dao->is_search_range,
198 'column_name' => $dao->column_name,
199 'table_name' => $dao->table_name,
200 'option_group_id' => $dao->option_group_id,
201 );
202
203 // store it in the options cache to make things easier
204 // during option lookup
205 $this->_options[$dao->id] = array();
206 $this->_options[$dao->id]['attributes'] = array(
207 'label' => $dao->label,
208 'data_type' => $dao->data_type,
209 'html_type' => $dao->html_type,
210 );
211
212 $optionGroupID = NULL;
213 $htmlTypes = array('CheckBox', 'Radio', 'Select', 'Multi-Select', 'AdvMulti-Select', 'Autocomplete-Select');
214 if (in_array($dao->html_type, $htmlTypes) && $dao->data_type != 'ContactReference') {
215 if ($dao->option_group_id) {
216 $optionGroupID = $dao->option_group_id;
217 }
218 elseif ($dao->data_type != 'Boolean') {
219 $errorMessage = ts("The custom field %1 is corrupt. Please delete and re-build the field",
220 array(1 => $dao->label)
221 );
222 CRM_Core_Error::fatal($errorMessage);
223 }
224 }
225 elseif ($dao->html_type == 'Select Date') {
226 $this->_options[$dao->id]['attributes']['date_format'] = $dao->date_format;
227 $this->_options[$dao->id]['attributes']['time_format'] = $dao->time_format;
228 }
229
230 // build the cache for custom values with options (label => value)
231 if ($optionGroupID != NULL) {
232 $query = "
233SELECT label, value
234 FROM civicrm_option_value
235 WHERE option_group_id = $optionGroupID
236";
237
238 $option = CRM_Core_DAO::executeQuery($query);
239 while ($option->fetch()) {
240 $dataType = $this->_fields[$dao->id]['data_type'];
241 if ($dataType == 'Int' || $dataType == 'Float') {
242 $num = round($option->value, 2);
243 $this->_options[$dao->id]["$num"] = $option->label;
244 }
245 else {
246 $this->_options[$dao->id][$option->value] = $option->label;
247 }
248 }
249 $options = $this->_options[$dao->id];
250 //unset attributes to avoid confussion
251 unset($options['attributes']);
252 CRM_Utils_Hook::customFieldOptions($dao->id, $options, FALSE);
253 }
254 }
255 }
256
257 /**
100fef9d 258 * Generate the select clause and the associated tables
6a488035
TO
259 * for the from clause
260 *
261 * @param NULL
262 *
263 * @return void
264 * @access public
265 */
266 function select() {
267 if (empty($this->_fields)) {
268 return;
269 }
270
271 foreach ($this->_fields as $id => $field) {
272 $name = $field['table_name'];
273 $fieldName = 'custom_' . $field['id'];
274 $this->_select["{$name}_id"] = "{$name}.id as {$name}_id";
275 $this->_element["{$name}_id"] = 1;
276 $this->_select[$fieldName] = "{$field['table_name']}.{$field['column_name']} as $fieldName";
277 $this->_element[$fieldName] = 1;
278 $joinTable = NULL;
dcf0d348
PJ
279 // CRM-14265
280 if ($field['extends'] == 'civicrm_group') {
281 return;
282 }
283 elseif ($field['extends'] == 'civicrm_contact') {
6a488035
TO
284 $joinTable = 'contact_a';
285 }
286 elseif ($field['extends'] == 'civicrm_contribution') {
dcf0d348 287 $joinTable = $field['extends'];
6a488035 288 }
dcf0d348
PJ
289 elseif (in_array($field['extends'], self::$extendsMap)) {
290 $joinTable = $field['extends'];
6a488035 291 }
dcf0d348
PJ
292 else {
293 return;
6a488035 294 }
dcf0d348
PJ
295
296 $this->_tables[$name] = "\nLEFT JOIN $name ON $name.entity_id = $joinTable.id";
297
298 if ($this->_ids[$id]) {
299 $this->_whereTables[$name] = $this->_tables[$name];
6a488035
TO
300 }
301
302 if ($joinTable) {
442df34b
CW
303 $joinClause = 1;
304 $joinTableAlias = $joinTable;
305 // Set location-specific query
247ad911 306 if (isset($this->_locationSpecificCustomFields[$id])) {
307 list($locationType, $locationTypeId) = $this->_locationSpecificCustomFields[$id];
442df34b
CW
308 $joinTableAlias = "$locationType-address";
309 $joinClause = "\nLEFT JOIN $joinTable `$locationType-address` ON (`$locationType-address`.contact_id = contact_a.id AND `$locationType-address`.location_type_id = $locationTypeId)";
310 }
311 $this->_tables[$name] = "\nLEFT JOIN $name ON $name.entity_id = `$joinTableAlias`.id";
6a488035
TO
312 if ($this->_ids[$id]) {
313 $this->_whereTables[$name] = $this->_tables[$name];
314 }
315 if ($joinTable != 'contact_a') {
442df34b 316 $this->_whereTables[$joinTableAlias] = $this->_tables[$joinTableAlias] = $joinClause;
6a488035
TO
317 }
318 elseif ($this->_contactSearch) {
319 CRM_Contact_BAO_Query::$_openedPanes[ts('Custom Fields')] = TRUE;
320 }
321 }
322 }
323 }
324
325 /**
100fef9d 326 * Generate the where clause and also the english language
6a488035
TO
327 * equivalent
328 *
329 * @param NULL
330 *
331 * @return void
332 *
333 * @access public
334 */
335 function where() {
6a488035
TO
336 foreach ($this->_ids as $id => $values) {
337
338 // Fixed for Isuue CRM 607
339 if (CRM_Utils_Array::value($id, $this->_fields) === NULL ||
340 !$values
341 ) {
342 continue;
343 }
344
345 $strtolower = function_exists('mb_strtolower') ? 'mb_strtolower' : 'strtolower';
346
347 foreach ($values as $tuple) {
348 list($name, $op, $value, $grouping, $wildcard) = $tuple;
349
6a488035 350 $field = $this->_fields[$id];
6a488035 351
3130209f
CW
352 $fieldName = "{$field['table_name']}.{$field['column_name']}";
353
9f388466
CW
354 // Autocomplete comes back as a string not an array
355 if ($field['data_type'] == 'String' && $field['html_type'] == 'Autocomplete-Select' && $op == '=') {
356 $value = explode(',', $value);
357 }
358
3130209f
CW
359 // Handle multi-select search for any data type
360 if (is_array($value) && !$field['is_search_range']) {
361 $isSerialized = CRM_Core_BAO_CustomField::isSerialized($field);
362 $wildcard = $isSerialized ? $wildcard : TRUE;
363 $options = CRM_Utils_Array::value('values', civicrm_api3('contact', 'getoptions', array('field' => $name, 'context' => 'search'), array()));
364 $qillValue = '';
365 $sqlOP = $wildcard ? ' OR ' : ' AND ';
366 $sqlValue = array();
367 foreach ($value as $num => &$v) {
368 $sep = count($value) > (1 + $num) ? ', ' : (' ' . ($wildcard ? ts('OR') : ts('AND')) . ' ');
369 $qillValue .= ($num ? $sep : '') . $options[$v];
370 $v = CRM_Core_DAO::escapeString($v);
371 if ($isSerialized) {
372 $sqlValue[] = "( $fieldName like '%" . CRM_Core_DAO::VALUE_SEPARATOR . $v . CRM_Core_DAO::VALUE_SEPARATOR . "%' ) ";
373 }
374 else {
375 $v = "'$v'";
376 }
377 }
378 if (!$isSerialized) {
379 $sqlValue = array("$fieldName IN (" . implode(',', $value) . ")");
380 }
381 $this->_where[$grouping][] = ' ( ' . implode($sqlOP, $sqlValue) . ' ) ';
382 $this->_qill[$grouping][] = "$field[label] $op $qillValue";
383 continue;
6a488035
TO
384 }
385
3130209f 386 // fix $value here to escape sql injection attacks
9f388466
CW
387 if (!is_array($value)) {
388 $value = CRM_Core_DAO::escapeString(trim($value));
389 }
3130209f
CW
390
391 $qillValue = CRM_Core_BAO_CustomField::getDisplayValue($value, $id, $this->_options);
392
6a488035
TO
393 switch ($field['data_type']) {
394 case 'String':
395 $sql = "$fieldName";
3130209f
CW
396
397 if ($field['is_search_range'] && is_array($value)) {
398 $this->searchRange($field['id'],
399 $field['label'],
400 $field['data_type'],
401 $fieldName,
402 $value,
403 $grouping
404 );
6a488035
TO
405 }
406 else {
9f388466 407 $val = CRM_Utils_Type::escape($strtolower(trim($value)), 'String');
3130209f
CW
408
409 if ($wildcard) {
410 $val = $strtolower(CRM_Core_DAO::escapeString($val));
411 $val = "%$val%";
412 $op = 'LIKE';
6a488035 413 }
3130209f
CW
414
415 //FIX for custom data query fired against no value(NULL/NOT NULL)
416 $this->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause($sql, $op, $val, $field['data_type']);
417 $this->_qill[$grouping][] = "$field[label] $op $qillValue";
6a488035 418 }
3130209f 419 break;
6a488035
TO
420
421 case 'ContactReference':
422 $label = $value ? CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $value, 'sort_name') : '';
423 $this->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause($fieldName, $op, $value, 'String');
424 $this->_qill[$grouping][] = $field['label'] . " $op $label";
3130209f 425 break;
6a488035
TO
426
427 case 'Int':
428 if ($field['is_search_range'] && is_array($value)) {
429 $this->searchRange($field['id'], $field['label'], $field['data_type'], $fieldName, $value, $grouping);
430 }
431 else {
432 $this->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause($fieldName, $op, $value, 'Integer');
433 $this->_qill[$grouping][] = $field['label'] . " $op $value";
434 }
3130209f 435 break;
6a488035
TO
436
437 case 'Boolean':
438 if (strtolower($value) == 'yes' || strtolower($value) == strtolower(ts('Yes'))) {
439 $value = 1;
440 }
441 else {
442 $value = (int) $value;
443 }
444 $value = ($value == 1) ? 1 : 0;
445 $this->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause($fieldName, $op, $value, 'Integer');
446 $value = $value ? ts('Yes') : ts('No');
447 $this->_qill[$grouping][] = $field['label'] . " {$op} {$value}";
3130209f 448 break;
6a488035
TO
449
450 case 'Link':
451 $this->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause($fieldName, $op, $value, 'String');
452 $this->_qill[$grouping][] = $field['label'] . " $op $value";
3130209f 453 break;
6a488035
TO
454
455 case 'Float':
456 if ($field['is_search_range'] && is_array($value)) {
457 $this->searchRange($field['id'], $field['label'], $field['data_type'], $fieldName, $value, $grouping);
458 }
459 else {
460 $this->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause($fieldName, $op, $value, 'Float');
461 $this->_qill[$grouping][] = $field['label'] . " {$op} {$value}";
462 }
3130209f 463 break;
6a488035
TO
464
465 case 'Money':
466 if ($field['is_search_range'] && is_array($value)) {
467 foreach ($value as $key => $val) {
468 $moneyFormat = CRM_Utils_Rule::cleanMoney($value[$key]);
469 $value[$key] = $moneyFormat;
470 }
471 $this->searchRange($field['id'], $field['label'], $field['data_type'], $fieldName, $value, $grouping);
472 }
473 else {
474 $moneyFormat = CRM_Utils_Rule::cleanMoney($value);
475 $value = $moneyFormat;
476 $this->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause($fieldName, $op, $value, 'Float');
477 $this->_qill[$grouping][] = $field['label'] . " {$op} {$value}";
478 }
3130209f 479 break;
6a488035
TO
480
481 case 'Memo':
482 $this->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause($fieldName, $op, $value, 'String');
483 $this->_qill[$grouping][] = "$field[label] $op $value";
3130209f 484 break;
6a488035
TO
485
486 case 'Date':
487 $fromValue = CRM_Utils_Array::value('from', $value);
488 $toValue = CRM_Utils_Array::value('to', $value);
489
490 if (!$fromValue && !$toValue) {
491 if (!CRM_Utils_Date::processDate($value) && $op != 'IS NULL' && $op != 'IS NOT NULL') {
492 continue;
493 }
494
495 // hack to handle yy format during search
496 if (is_numeric($value) && strlen($value) == 4) {
497 $value = "01-01-{$value}";
498 }
499
500 $date = CRM_Utils_Date::processDate($value);
501 $this->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause($fieldName, $op, $date, 'String');
502 $this->_qill[$grouping][] = $field['label'] . " {$op} " . CRM_Utils_Date::customFormat($date);
503 }
504 else {
505 if (is_numeric($fromValue) && strlen($fromValue) == 4) {
506 $fromValue = "01-01-{$fromValue}";
507 }
508
509 if (is_numeric($toValue) && strlen($toValue) == 4) {
510 $toValue = "01-01-{$toValue}";
511 }
512
513 // TO DO: add / remove time based on date parts
514 $fromDate = CRM_Utils_Date::processDate($fromValue);
515 $toDate = CRM_Utils_Date::processDate($toValue);
516 if (!$fromDate && !$toDate) {
517 continue;
518 }
519 if ($fromDate) {
520 $this->_where[$grouping][] = "$fieldName >= $fromDate";
521 $this->_qill[$grouping][] = $field['label'] . ' >= ' . CRM_Utils_Date::customFormat($fromDate);
522 }
523 if ($toDate) {
524 $this->_where[$grouping][] = "$fieldName <= $toDate";
525 $this->_qill[$grouping][] = $field['label'] . ' <= ' . CRM_Utils_Date::customFormat($toDate);
526 }
527 }
3130209f 528 break;
6a488035
TO
529
530 case 'StateProvince':
531 case 'Country':
3130209f
CW
532 $this->_where[$grouping][] = "$fieldName {$op} " . CRM_Utils_Type::escape($value, 'Int');
533 $this->_qill[$grouping][] = $field['label'] . " {$op} {$qillValue}";
534 break;
6a488035
TO
535
536 case 'File':
537 if ( $op == 'IS NULL' || $op == 'IS NOT NULL' || $op == 'IS EMPTY' || $op == 'IS NOT EMPTY' ) {
538 switch ($op) {
539 case 'IS EMPTY':
540 $op = 'IS NULL';
541 break;
542 case 'IS NOT EMPTY':
543 $op = 'IS NOT NULL';
544 break;
545 }
546 $this->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause($fieldName, $op);
547 $this->_qill[$grouping][] = $field['label'] . " {$op} ";
548 }
3130209f 549 break;
6a488035
TO
550 }
551 }
552 }
553 }
554
555 /**
100fef9d 556 * Function that does the actual query generation
6a488035
TO
557 * basically ties all the above functions together
558 *
559 * @param NULL
560 *
561 * @return array array of strings
562 * @access public
563 */
564 function query() {
565 $this->select();
566
567 $this->where();
568
569 $whereStr = NULL;
570 if (!empty($this->_where)) {
571 $clauses = array();
572 foreach ($this->_where as $grouping => $values) {
573 if (!empty($values)) {
574 $clauses[] = ' ( ' . implode(' AND ', $values) . ' ) ';
575 }
576 }
577 if (!empty($clauses)) {
578 $whereStr = ' ( ' . implode(' OR ', $clauses) . ' ) ';
579 }
580 }
581
582 return array(implode(' , ', $this->_select),
583 implode(' ', $this->_tables),
584 $whereStr,
585 );
586 }
587
b5c2afd0 588 /**
100fef9d 589 * @param int $id
b5c2afd0
EM
590 * @param $label
591 * @param $type
100fef9d 592 * @param string $fieldName
b5c2afd0
EM
593 * @param $value
594 * @param $grouping
595 */
6a488035
TO
596 function searchRange(&$id, &$label, $type, $fieldName, &$value, &$grouping) {
597 $qill = array();
598
599 if (isset($value['from'])) {
600 $val = CRM_Utils_Type::escape($value['from'], $type);
601
602 if ($type == 'String') {
603 $this->_where[$grouping][] = "$fieldName >= '$val'";
604 }
605 else {
606 $this->_where[$grouping][] = "$fieldName >= $val";
607 }
608 $qill[] = ts('greater than or equal to \'%1\'', array(1 => $value['from']));
609 }
610
611 if (isset($value['to'])) {
612 $val = CRM_Utils_Type::escape($value['to'], $type);
613 if ($type == 'String') {
614 $this->_where[$grouping][] = "$fieldName <= '$val'";
615 }
616 else {
617 $this->_where[$grouping][] = "$fieldName <= $val";
618 }
619 $qill[] = ts('less than or equal to \'%1\'', array(1 => $value['to']));
620 }
621
622 if (!empty($qill)) {
623 $this->_qill[$grouping][] = $label . ' - ' . implode(' ' . ts('and') . ' ', $qill);
624 }
625 }
626}