Merge pull request #9854 from adixon/CRM-20040
[civicrm-core.git] / CRM / Core / DAO.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2017 |
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 * Our base DAO class. All DAO classes should inherit from this class.
30 *
31 * @package CRM
32 * @copyright CiviCRM LLC (c) 2004-2017
33 */
34
35 if (!defined('DB_DSN_MODE')) {
36 define('DB_DSN_MODE', 'auto');
37 }
38
39 require_once 'PEAR.php';
40 require_once 'DB/DataObject.php';
41
42 require_once 'CRM/Core/I18n.php';
43
44 /**
45 * Class CRM_Core_DAO
46 */
47 class CRM_Core_DAO extends DB_DataObject {
48
49 /**
50 * @var null
51 * @deprecated
52 */
53 static $_nullObject = NULL;
54 /**
55 * @var array
56 * @deprecated
57 */
58 static $_nullArray = array();
59
60 static $_dbColumnValueCache = NULL;
61 const NOT_NULL = 1, IS_NULL = 2,
62 DB_DAO_NOTNULL = 128,
63 VALUE_SEPARATOR = "\ 1",
64 BULK_INSERT_COUNT = 200,
65 BULK_INSERT_HIGH_COUNT = 200,
66 QUERY_FORMAT_WILDCARD = 1,
67 QUERY_FORMAT_NO_QUOTES = 2;
68
69 /**
70 * Define entities that shouldn't be created or deleted when creating/ deleting
71 * test objects - this prevents world regions, countries etc from being added / deleted
72 * @var array
73 */
74 static $_testEntitiesToSkip = array();
75 /**
76 * The factory class for this application.
77 * @var object
78 */
79 static $_factory = NULL;
80
81 static $_checkedSqlFunctionsExist = FALSE;
82
83 /**
84 * https://issues.civicrm.org/jira/browse/CRM-17748
85 * internal variable for DAO to hold per-query settings
86 */
87 protected $_options = array();
88
89 /**
90 * Class constructor.
91 *
92 * @return \CRM_Core_DAO
93 */
94 public function __construct() {
95 $this->initialize();
96 $this->__table = $this->getTableName();
97 }
98
99 /**
100 * Empty definition for virtual function.
101 */
102 public static function getTableName() {
103 return NULL;
104 }
105
106 /**
107 * Initialize the DAO object.
108 *
109 * @param string $dsn
110 * The database connection string.
111 */
112 public static function init($dsn) {
113 Civi::$statics[__CLASS__]['init'] = 1;
114 $options = &PEAR::getStaticProperty('DB_DataObject', 'options');
115 $options['database'] = $dsn;
116 if (defined('CIVICRM_DAO_DEBUG')) {
117 self::DebugLevel(CIVICRM_DAO_DEBUG);
118 }
119 $factory = new CRM_Contact_DAO_Factory();
120 CRM_Core_DAO::setFactory($factory);
121 if (CRM_Utils_Constant::value('CIVICRM_MYSQL_STRICT', CRM_Utils_System::isDevelopment())) {
122 CRM_Core_DAO::executeQuery('SET SESSION sql_mode = STRICT_TRANS_TABLES');
123 }
124 CRM_Core_DAO::executeQuery('SET NAMES utf8');
125 CRM_Core_DAO::executeQuery('SET @uniqueID = %1', array(1 => array(CRM_Utils_Request::id(), 'String')));
126 }
127
128 /**
129 * @return DB_common
130 */
131 public static function getConnection() {
132 global $_DB_DATAOBJECT;
133 $dao = new CRM_Core_DAO();
134 return $_DB_DATAOBJECT['CONNECTIONS'][$dao->_database_dsn_md5];
135 }
136
137 /**
138 * @param string $fieldName
139 * @param $fieldDef
140 * @param array $params
141 */
142 protected function assignTestFK($fieldName, $fieldDef, $params) {
143 $required = CRM_Utils_Array::value('required', $fieldDef);
144 $FKClassName = CRM_Utils_Array::value('FKClassName', $fieldDef);
145 $dbName = $fieldDef['name'];
146 $daoName = str_replace('_BAO_', '_DAO_', get_class($this));
147
148 // skip the FK if it is not required
149 // if it's contact id we should create even if not required
150 // we'll have a go @ fetching first though
151 // we WILL create campaigns though for so tests with a campaign pseudoconstant will complete
152 if ($FKClassName === 'CRM_Campaign_DAO_Campaign' && $daoName != $FKClassName) {
153 $required = TRUE;
154 }
155 if (!$required && $dbName != 'contact_id') {
156 $fkDAO = new $FKClassName();
157 if ($fkDAO->find(TRUE)) {
158 $this->$dbName = $fkDAO->id;
159 }
160 $fkDAO->free();
161 }
162
163 elseif (in_array($FKClassName, CRM_Core_DAO::$_testEntitiesToSkip)) {
164 $depObject = new $FKClassName();
165 $depObject->find(TRUE);
166 $this->$dbName = $depObject->id;
167 $depObject->free();
168 }
169 elseif ($daoName == 'CRM_Member_DAO_MembershipType' && $fieldName == 'member_of_contact_id') {
170 // FIXME: the fields() metadata is not specific enough
171 $depObject = CRM_Core_DAO::createTestObject($FKClassName, array('contact_type' => 'Organization'));
172 $this->$dbName = $depObject->id;
173 $depObject->free();
174 }
175 else {
176 //if it is required we need to generate the dependency object first
177 $depObject = CRM_Core_DAO::createTestObject($FKClassName, CRM_Utils_Array::value($dbName, $params, 1));
178 $this->$dbName = $depObject->id;
179 $depObject->free();
180 }
181 }
182
183 /**
184 * Generate and assign an arbitrary value to a field of a test object.
185 *
186 * @param string $fieldName
187 * @param array $fieldDef
188 * @param int $counter
189 * The globally-unique ID of the test object.
190 */
191 protected function assignTestValue($fieldName, &$fieldDef, $counter) {
192 $dbName = $fieldDef['name'];
193 $daoName = get_class($this);
194 $handled = FALSE;
195
196 if (!$handled && $dbName == 'contact_sub_type') {
197 //coming up with a rule to set this is too complex let's not set it
198 $handled = TRUE;
199 }
200
201 // Pick an option value if needed
202 if (!$handled && $fieldDef['type'] !== CRM_Utils_Type::T_BOOLEAN) {
203 $options = $daoName::buildOptions($dbName, 'create');
204 if ($options) {
205 $this->$dbName = key($options);
206 $handled = TRUE;
207 }
208 }
209
210 if (!$handled) {
211 switch ($fieldDef['type']) {
212 case CRM_Utils_Type::T_INT:
213 case CRM_Utils_Type::T_FLOAT:
214 case CRM_Utils_Type::T_MONEY:
215 if (isset($fieldDef['precision'])) {
216 // $object->$dbName = CRM_Utils_Number::createRandomDecimal($value['precision']);
217 $this->$dbName = CRM_Utils_Number::createTruncatedDecimal($counter, $fieldDef['precision']);
218 }
219 else {
220 $this->$dbName = $counter;
221 }
222 break;
223
224 case CRM_Utils_Type::T_BOOLEAN:
225 if (isset($fieldDef['default'])) {
226 $this->$dbName = $fieldDef['default'];
227 }
228 elseif ($fieldDef['name'] == 'is_deleted' || $fieldDef['name'] == 'is_test') {
229 $this->$dbName = 0;
230 }
231 else {
232 $this->$dbName = 1;
233 }
234 break;
235
236 case CRM_Utils_Type::T_DATE:
237 case CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME:
238 $this->$dbName = '19700101';
239 if ($dbName == 'end_date') {
240 // put this in the future
241 $this->$dbName = '20200101';
242 }
243 break;
244
245 case CRM_Utils_Type::T_TIMESTAMP:
246 $this->$dbName = '19700201000000';
247 break;
248
249 case CRM_Utils_Type::T_TIME:
250 CRM_Core_Error::fatal("T_TIME shouldn't be used.");
251 //$object->$dbName='000000';
252 //break;
253 case CRM_Utils_Type::T_CCNUM:
254 $this->$dbName = '4111 1111 1111 1111';
255 break;
256
257 case CRM_Utils_Type::T_URL:
258 $this->$dbName = 'http://www.civicrm.org';
259 break;
260
261 case CRM_Utils_Type::T_STRING:
262 case CRM_Utils_Type::T_BLOB:
263 case CRM_Utils_Type::T_MEDIUMBLOB:
264 case CRM_Utils_Type::T_TEXT:
265 case CRM_Utils_Type::T_LONGTEXT:
266 case CRM_Utils_Type::T_EMAIL:
267 default:
268 // WAS: if (isset($value['enumValues'])) {
269 // TODO: see if this works with all pseudoconstants
270 if (isset($fieldDef['pseudoconstant'], $fieldDef['pseudoconstant']['callback'])) {
271 if (isset($fieldDef['default'])) {
272 $this->$dbName = $fieldDef['default'];
273 }
274 else {
275 $options = CRM_Core_PseudoConstant::get($daoName, $fieldName);
276 if (is_array($options)) {
277 $this->$dbName = $options[0];
278 }
279 else {
280 $defaultValues = explode(',', $options);
281 $this->$dbName = $defaultValues[0];
282 }
283 }
284 }
285 else {
286 $this->$dbName = $dbName . '_' . $counter;
287 $maxlength = CRM_Utils_Array::value('maxlength', $fieldDef);
288 if ($maxlength > 0 && strlen($this->$dbName) > $maxlength) {
289 $this->$dbName = substr($this->$dbName, 0, $fieldDef['maxlength']);
290 }
291 }
292 }
293 }
294 }
295
296 /**
297 * Reset the DAO object.
298 *
299 * DAO is kinda crappy in that there is an unwritten rule of one query per DAO.
300 *
301 * We attempt to get around this crappy restriction by resetting some of DAO's internal fields. Use this with caution
302 */
303 public function reset() {
304
305 foreach (array_keys($this->table()) as $field) {
306 unset($this->$field);
307 }
308
309 /**
310 * reset the various DB_DAO structures manually
311 */
312 $this->_query = array();
313 $this->whereAdd();
314 $this->selectAdd();
315 $this->joinAdd();
316 }
317
318 /**
319 * @param string $tableName
320 *
321 * @return string
322 */
323 public static function getLocaleTableName($tableName) {
324 global $dbLocale;
325 if ($dbLocale) {
326 $tables = CRM_Core_I18n_Schema::schemaStructureTables();
327 if (in_array($tableName, $tables)) {
328 return $tableName . $dbLocale;
329 }
330 }
331 return $tableName;
332 }
333
334 /**
335 * Execute a query by the current DAO, localizing it along the way (if needed).
336 *
337 * @param string $query
338 * The SQL query for execution.
339 * @param bool $i18nRewrite
340 * Whether to rewrite the query.
341 *
342 * @return object
343 * the current DAO object after the query execution
344 */
345 public function query($query, $i18nRewrite = TRUE) {
346 // rewrite queries that should use $dbLocale-based views for multi-language installs
347 global $dbLocale, $_DB_DATAOBJECT;
348
349 if (empty($_DB_DATAOBJECT['CONNECTIONS'][$this->_database_dsn_md5])) {
350 // Will force connection to be populated per CRM-20541.
351 new CRM_Core_DAO();
352 }
353
354 $conn = &$_DB_DATAOBJECT['CONNECTIONS'][$this->_database_dsn_md5];
355 $orig_options = $conn->options;
356 $this->_setDBOptions($this->_options);
357
358 if ($i18nRewrite and $dbLocale) {
359 $query = CRM_Core_I18n_Schema::rewriteQuery($query);
360 }
361
362 $ret = parent::query($query);
363
364 $this->_setDBOptions($orig_options);
365 return $ret;
366 }
367
368 /**
369 * Static function to set the factory instance for this class.
370 *
371 * @param object $factory
372 * The factory application object.
373 */
374 public static function setFactory(&$factory) {
375 self::$_factory = &$factory;
376 }
377
378 /**
379 * Factory method to instantiate a new object from a table name.
380 *
381 * @param string $table
382 */
383 public function factory($table = '') {
384 if (!isset(self::$_factory)) {
385 return parent::factory($table);
386 }
387
388 return self::$_factory->create($table);
389 }
390
391 /**
392 * Initialization for all DAO objects. Since we access DB_DO programatically
393 * we need to set the links manually.
394 */
395 public function initialize() {
396 $this->_connect();
397 if (empty(Civi::$statics[__CLASS__]['init'])) {
398 // CRM_Core_DAO::init() must be called before CRM_Core_DAO->initialize().
399 // This occurs very early in bootstrap - error handlers may not be wired up.
400 echo "Inconsistent system initialization sequence. Premature access of (" . get_class($this) . ")";
401 CRM_Utils_System::civiExit();
402 }
403 }
404
405 /**
406 * Defines the default key as 'id'.
407 *
408 *
409 * @return array
410 */
411 public function keys() {
412 static $keys;
413 if (!isset($keys)) {
414 $keys = array('id');
415 }
416 return $keys;
417 }
418
419 /**
420 * Tells DB_DataObject which keys use autoincrement.
421 * 'id' is autoincrementing by default.
422 *
423 *
424 * @return array
425 */
426 public function sequenceKey() {
427 static $sequenceKeys;
428 if (!isset($sequenceKeys)) {
429 $sequenceKeys = array('id', TRUE);
430 }
431 return $sequenceKeys;
432 }
433
434 /**
435 * Returns list of FK relationships.
436 *
437 *
438 * @return array
439 * Array of CRM_Core_Reference_Interface
440 */
441 public static function getReferenceColumns() {
442 return array();
443 }
444
445 /**
446 * Returns all the column names of this table.
447 *
448 *
449 * @return array
450 */
451 public static function &fields() {
452 $result = NULL;
453 return $result;
454 }
455
456 /**
457 * Get/set an associative array of table columns
458 *
459 * @return array
460 * (associative)
461 */
462 public function table() {
463 $fields = &$this->fields();
464
465 $table = array();
466 if ($fields) {
467 foreach ($fields as $name => $value) {
468 $table[$value['name']] = $value['type'];
469 if (!empty($value['required'])) {
470 $table[$value['name']] += self::DB_DAO_NOTNULL;
471 }
472 }
473 }
474
475 return $table;
476 }
477
478 /**
479 * Save DAO object.
480 *
481 * @param bool $hook
482 *
483 * @return CRM_Core_DAO
484 */
485 public function save($hook = TRUE) {
486 if (!empty($this->id)) {
487 $this->update();
488
489 if ($hook) {
490 $event = new \Civi\Core\DAO\Event\PostUpdate($this);
491 \Civi::service('dispatcher')->dispatch("civi.dao.postUpdate", $event);
492 }
493 }
494 else {
495 $this->insert();
496
497 if ($hook) {
498 $event = new \Civi\Core\DAO\Event\PostUpdate($this);
499 \Civi::service('dispatcher')->dispatch("civi.dao.postInsert", $event);
500 }
501 }
502 $this->free();
503
504 if ($hook) {
505 CRM_Utils_Hook::postSave($this);
506 }
507
508 return $this;
509 }
510
511 /**
512 * Deletes items from table which match current objects variables.
513 *
514 * Returns the true on success
515 *
516 * for example
517 *
518 * Designed to be extended
519 *
520 * $object = new mytable();
521 * $object->ID=123;
522 * echo $object->delete(); // builds a conditon
523 *
524 * $object = new mytable();
525 * $object->whereAdd('age > 12');
526 * $object->limit(1);
527 * $object->orderBy('age DESC');
528 * $object->delete(true); // dont use object vars, use the conditions, limit and order.
529 *
530 * @param bool $useWhere (optional) If DB_DATAOBJECT_WHEREADD_ONLY is passed in then
531 * we will build the condition only using the whereAdd's. Default is to
532 * build the condition only using the object parameters.
533 *
534 * * @return mixed Int (No. of rows affected) on success, false on failure, 0 on no data affected
535 */
536 public function delete($useWhere = FALSE) {
537 $preEvent = new \Civi\Core\DAO\Event\PreDelete($this);
538 \Civi::service('dispatcher')->dispatch("civi.dao.preDelete", $preEvent);
539
540 $result = parent::delete($useWhere);
541
542 $event = new \Civi\Core\DAO\Event\PostDelete($this, $result);
543 \Civi::service('dispatcher')->dispatch("civi.dao.postDelete", $event);
544 $this->free();
545
546 return $result;
547 }
548
549 /**
550 * @param bool $created
551 */
552 public function log($created = FALSE) {
553 static $cid = NULL;
554
555 if (!$this->getLog()) {
556 return;
557 }
558
559 if (!$cid) {
560 $session = CRM_Core_Session::singleton();
561 $cid = $session->get('userID');
562 }
563
564 // return is we dont have handle to FK
565 if (!$cid) {
566 return;
567 }
568
569 $dao = new CRM_Core_DAO_Log();
570 $dao->entity_table = $this->getTableName();
571 $dao->entity_id = $this->id;
572 $dao->modified_id = $cid;
573 $dao->modified_date = date("YmdHis");
574 $dao->insert();
575 }
576
577 /**
578 * Given an associative array of name/value pairs, extract all the values
579 * that belong to this object and initialize the object with said values
580 *
581 * @param array $params
582 * (reference ) associative array of name/value pairs.
583 *
584 * @return bool
585 * Did we copy all null values into the object
586 */
587 public function copyValues(&$params) {
588 $fields = &$this->fields();
589 $allNull = TRUE;
590 foreach ($fields as $name => $value) {
591 $dbName = $value['name'];
592 if (array_key_exists($dbName, $params)) {
593 $pValue = $params[$dbName];
594 $exists = TRUE;
595 }
596 elseif (array_key_exists($name, $params)) {
597 $pValue = $params[$name];
598 $exists = TRUE;
599 }
600 else {
601 $exists = FALSE;
602 }
603
604 // if there is no value then make the variable NULL
605 if ($exists) {
606 if ($pValue === '') {
607 $this->$dbName = 'null';
608 }
609 else {
610 $this->$dbName = $pValue;
611 $allNull = FALSE;
612 }
613 }
614 }
615 return $allNull;
616 }
617
618 /**
619 * Store all the values from this object in an associative array
620 * this is a destructive store, calling function is responsible
621 * for keeping sanity of id's.
622 *
623 * @param object $object
624 * The object that we are extracting data from.
625 * @param array $values
626 * (reference ) associative array of name/value pairs.
627 */
628 public static function storeValues(&$object, &$values) {
629 $fields = &$object->fields();
630 foreach ($fields as $name => $value) {
631 $dbName = $value['name'];
632 if (isset($object->$dbName) && $object->$dbName !== 'null') {
633 $values[$dbName] = $object->$dbName;
634 if ($name != $dbName) {
635 $values[$name] = $object->$dbName;
636 }
637 }
638 }
639 }
640
641 /**
642 * Create an attribute for this specific field. We only do this for strings and text
643 *
644 * @param array $field
645 * The field under task.
646 *
647 * @return array|null
648 * the attributes for the object
649 */
650 public static function makeAttribute($field) {
651 if ($field) {
652 if (CRM_Utils_Array::value('type', $field) == CRM_Utils_Type::T_STRING) {
653 $maxLength = CRM_Utils_Array::value('maxlength', $field);
654 $size = CRM_Utils_Array::value('size', $field);
655 if ($maxLength || $size) {
656 $attributes = array();
657 if ($maxLength) {
658 $attributes['maxlength'] = $maxLength;
659 }
660 if ($size) {
661 $attributes['size'] = $size;
662 }
663 return $attributes;
664 }
665 }
666 elseif (CRM_Utils_Array::value('type', $field) == CRM_Utils_Type::T_TEXT) {
667 $rows = CRM_Utils_Array::value('rows', $field);
668 if (!isset($rows)) {
669 $rows = 2;
670 }
671 $cols = CRM_Utils_Array::value('cols', $field);
672 if (!isset($cols)) {
673 $cols = 80;
674 }
675
676 $attributes = array();
677 $attributes['rows'] = $rows;
678 $attributes['cols'] = $cols;
679 return $attributes;
680 }
681 elseif (CRM_Utils_Array::value('type', $field) == CRM_Utils_Type::T_INT || CRM_Utils_Array::value('type', $field) == CRM_Utils_Type::T_FLOAT || CRM_Utils_Array::value('type', $field) == CRM_Utils_Type::T_MONEY) {
682 $attributes['size'] = 6;
683 $attributes['maxlength'] = 14;
684 return $attributes;
685 }
686 }
687 return NULL;
688 }
689
690 /**
691 * Get the size and maxLength attributes for this text field.
692 * (or for all text fields) in the DAO object.
693 *
694 * @param string $class
695 * Name of DAO class.
696 * @param string $fieldName
697 * Field that i'm interested in or null if.
698 * you want the attributes for all DAO text fields
699 *
700 * @return array
701 * assoc array of name => attribute pairs
702 */
703 public static function getAttribute($class, $fieldName = NULL) {
704 $object = new $class();
705 $fields = &$object->fields();
706 if ($fieldName != NULL) {
707 $field = CRM_Utils_Array::value($fieldName, $fields);
708 return self::makeAttribute($field);
709 }
710 else {
711 $attributes = array();
712 foreach ($fields as $name => $field) {
713 $attribute = self::makeAttribute($field);
714 if ($attribute) {
715 $attributes[$name] = $attribute;
716 }
717 }
718
719 if (!empty($attributes)) {
720 return $attributes;
721 }
722 }
723 return NULL;
724 }
725
726 /**
727 * @param $type
728 *
729 * @throws Exception
730 */
731 public static function transaction($type) {
732 CRM_Core_Error::fatal('This function is obsolete, please use CRM_Core_Transaction');
733 }
734
735 /**
736 * Check if there is a record with the same name in the db.
737 *
738 * @param string $value
739 * The value of the field we are checking.
740 * @param string $daoName
741 * The dao object name.
742 * @param string $daoID
743 * The id of the object being updated. u can change your name.
744 * as long as there is no conflict
745 * @param string $fieldName
746 * The name of the field in the DAO.
747 *
748 * @param string $domainID
749 * The id of the domain. Object exists only for the given domain.
750 *
751 * @return bool
752 * true if object exists
753 */
754 public static function objectExists($value, $daoName, $daoID, $fieldName = 'name', $domainID = NULL) {
755 $object = new $daoName();
756 $object->$fieldName = $value;
757 if ($domainID) {
758 $object->domain_id = $domainID;
759 }
760
761 if ($object->find(TRUE)) {
762 return ($daoID && $object->id == $daoID) ? TRUE : FALSE;
763 }
764 else {
765 return TRUE;
766 }
767 }
768
769 /**
770 * Check if there is a given column in a specific table.
771 *
772 * @param string $tableName
773 * @param string $columnName
774 * @param bool $i18nRewrite
775 * Whether to rewrite the query on multilingual setups.
776 *
777 * @return bool
778 * true if exists, else false
779 */
780 public static function checkFieldExists($tableName, $columnName, $i18nRewrite = TRUE) {
781 $query = "
782 SHOW COLUMNS
783 FROM $tableName
784 LIKE %1
785 ";
786 $params = array(1 => array($columnName, 'String'));
787 $dao = CRM_Core_DAO::executeQuery($query, $params, TRUE, NULL, FALSE, $i18nRewrite);
788 $result = $dao->fetch() ? TRUE : FALSE;
789 $dao->free();
790 return $result;
791 }
792
793 /**
794 * Scans all the tables using a slow query and table name.
795 *
796 * @return array
797 */
798 public static function getTableNames() {
799 $dao = CRM_Core_DAO::executeQuery(
800 "SELECT TABLE_NAME
801 FROM information_schema.TABLES
802 WHERE TABLE_SCHEMA = '" . CRM_Core_DAO::getDatabaseName() . "'
803 AND TABLE_NAME LIKE 'civicrm_%'
804 AND TABLE_NAME NOT LIKE 'civicrm_import_job_%'
805 AND TABLE_NAME NOT LIKE '%_temp%'
806 ");
807
808 while ($dao->fetch()) {
809 $values[] = $dao->TABLE_NAME;
810 }
811 $dao->free();
812 return $values;
813 }
814
815 /**
816 * @param int $maxTablesToCheck
817 *
818 * @return bool
819 */
820 public static function isDBMyISAM($maxTablesToCheck = 10) {
821 return CRM_Core_DAO::singleValueQuery(
822 "SELECT count(*)
823 FROM information_schema.TABLES
824 WHERE ENGINE = 'MyISAM'
825 AND TABLE_SCHEMA = '" . CRM_Core_DAO::getDatabaseName() . "'
826 AND TABLE_NAME LIKE 'civicrm_%'
827 AND TABLE_NAME NOT LIKE 'civicrm_import_job_%'
828 AND TABLE_NAME NOT LIKE '%_temp%'
829 ");
830 }
831
832 /**
833 * Get the name of the CiviCRM database.
834 *
835 * @return string
836 */
837 public static function getDatabaseName() {
838 $daoObj = new CRM_Core_DAO();
839 return $daoObj->database();
840 }
841
842 /**
843 * Checks if a constraint exists for a specified table.
844 *
845 * @param string $tableName
846 * @param string $constraint
847 *
848 * @return bool
849 * true if constraint exists, false otherwise
850 */
851 public static function checkConstraintExists($tableName, $constraint) {
852 static $show = array();
853
854 if (!array_key_exists($tableName, $show)) {
855 $query = "SHOW CREATE TABLE $tableName";
856 $dao = CRM_Core_DAO::executeQuery($query);
857
858 if (!$dao->fetch()) {
859 CRM_Core_Error::fatal();
860 }
861
862 $dao->free();
863 $show[$tableName] = $dao->Create_Table;
864 }
865
866 return preg_match("/\b$constraint\b/i", $show[$tableName]) ? TRUE : FALSE;
867 }
868
869 /**
870 * Checks if CONSTRAINT keyword exists for a specified table.
871 *
872 * @param array $tables
873 *
874 * @throws Exception
875 *
876 * @return bool
877 * true if CONSTRAINT keyword exists, false otherwise
878 */
879 public static function schemaRequiresRebuilding($tables = array("civicrm_contact")) {
880 $show = array();
881 foreach ($tables as $tableName) {
882 if (!array_key_exists($tableName, $show)) {
883 $query = "SHOW CREATE TABLE $tableName";
884 $dao = CRM_Core_DAO::executeQuery($query);
885
886 if (!$dao->fetch()) {
887 CRM_Core_Error::fatal();
888 }
889
890 $dao->free();
891 $show[$tableName] = $dao->Create_Table;
892 }
893
894 $result = preg_match("/\bCONSTRAINT\b\s/i", $show[$tableName]) ? TRUE : FALSE;
895 if ($result == TRUE) {
896 continue;
897 }
898 else {
899 return FALSE;
900 }
901 }
902 return TRUE;
903 }
904
905 /**
906 * Checks if the FK constraint name is in the format 'FK_tableName_columnName'
907 * for a specified column of a table.
908 *
909 * @param string $tableName
910 * @param string $columnName
911 *
912 * @return bool
913 * true if in format, false otherwise
914 */
915 public static function checkFKConstraintInFormat($tableName, $columnName) {
916 static $show = array();
917
918 if (!array_key_exists($tableName, $show)) {
919 $query = "SHOW CREATE TABLE $tableName";
920 $dao = CRM_Core_DAO::executeQuery($query);
921
922 if (!$dao->fetch()) {
923 CRM_Core_Error::fatal();
924 }
925
926 $dao->free();
927 $show[$tableName] = $dao->Create_Table;
928 }
929 $constraint = "`FK_{$tableName}_{$columnName}`";
930 $pattern = "/\bCONSTRAINT\b\s+%s\s+\bFOREIGN\s+KEY\b\s/i";
931 return preg_match(sprintf($pattern, $constraint), $show[$tableName]) ? TRUE : FALSE;
932 }
933
934 /**
935 * Check whether a specific column in a specific table has always the same value.
936 *
937 * @param string $tableName
938 * @param string $columnName
939 * @param string $columnValue
940 *
941 * @return bool
942 * true if the value is always $columnValue, false otherwise
943 */
944 public static function checkFieldHasAlwaysValue($tableName, $columnName, $columnValue) {
945 $query = "SELECT * FROM $tableName WHERE $columnName != '$columnValue'";
946 $dao = CRM_Core_DAO::executeQuery($query);
947 $result = $dao->fetch() ? FALSE : TRUE;
948 $dao->free();
949 return $result;
950 }
951
952 /**
953 * Check whether a specific column in a specific table is always NULL.
954 *
955 * @param string $tableName
956 * @param string $columnName
957 *
958 * @return bool
959 * true if if the value is always NULL, false otherwise
960 */
961 public static function checkFieldIsAlwaysNull($tableName, $columnName) {
962 $query = "SELECT * FROM $tableName WHERE $columnName IS NOT NULL";
963 $dao = CRM_Core_DAO::executeQuery($query);
964 $result = $dao->fetch() ? FALSE : TRUE;
965 $dao->free();
966 return $result;
967 }
968
969 /**
970 * Check if there is a given table in the database.
971 *
972 * @param string $tableName
973 *
974 * @return bool
975 * true if exists, else false
976 */
977 public static function checkTableExists($tableName) {
978 $query = "
979 SHOW TABLES
980 LIKE %1
981 ";
982 $params = array(1 => array($tableName, 'String'));
983
984 $dao = CRM_Core_DAO::executeQuery($query, $params);
985 $result = $dao->fetch() ? TRUE : FALSE;
986 $dao->free();
987 return $result;
988 }
989
990 /**
991 * @param $version
992 *
993 * @return bool
994 */
995 public function checkVersion($version) {
996 $query = "
997 SELECT version
998 FROM civicrm_domain
999 ";
1000 $dbVersion = CRM_Core_DAO::singleValueQuery($query);
1001 return trim($version) == trim($dbVersion) ? TRUE : FALSE;
1002 }
1003
1004 /**
1005 * Find a DAO object for the given ID and return it.
1006 *
1007 * @param int $id
1008 * Id of the DAO object being searched for.
1009 *
1010 * @return object
1011 * Object of the type of the class that called this function.
1012 */
1013 public static function findById($id) {
1014 $object = new static();
1015 $object->id = $id;
1016 if (!$object->find(TRUE)) {
1017 throw new Exception("Unable to find a " . get_called_class() . " with id {$id}.");
1018 }
1019 return $object;
1020 }
1021
1022 /**
1023 * Returns all results as array-encoded records.
1024 *
1025 * @return array
1026 */
1027 public function fetchAll() {
1028 $result = array();
1029 while ($this->fetch()) {
1030 $result[] = $this->toArray();
1031 }
1032 return $result;
1033 }
1034
1035 /**
1036 * Get all the result records as mapping between columns.
1037 *
1038 * @param string $keyColumn
1039 * Ex: "name"
1040 * @param string $valueColumn
1041 * Ex: "label"
1042 * @return array
1043 * Ex: ["foo" => "The Foo Bar", "baz" => "The Baz Qux"]
1044 */
1045 public function fetchMap($keyColumn, $valueColumn) {
1046 $result = array();
1047 while ($this->fetch()) {
1048 $result[$this->{$keyColumn}] = $this->{$valueColumn};
1049 }
1050 return $result;
1051 }
1052
1053 /**
1054 * Given a DAO name, a column name and a column value, find the record and GET the value of another column in that record
1055 *
1056 * @param string $daoName
1057 * Name of the DAO (Example: CRM_Contact_DAO_Contact to retrieve value from a contact).
1058 * @param int $searchValue
1059 * Value of the column you want to search by.
1060 * @param string $returnColumn
1061 * Name of the column you want to GET the value of.
1062 * @param string $searchColumn
1063 * Name of the column you want to search by.
1064 * @param bool $force
1065 * Skip use of the cache.
1066 *
1067 * @return string|null
1068 * Value of $returnColumn in the retrieved record
1069 */
1070 public static function getFieldValue($daoName, $searchValue, $returnColumn = 'name', $searchColumn = 'id', $force = FALSE) {
1071 if (
1072 empty($searchValue) ||
1073 trim(strtolower($searchValue)) == 'null'
1074 ) {
1075 // adding this year since developers forget to check for an id
1076 // or for the 'null' (which is a bad DAO kludge)
1077 // and hence we get the first value in the db
1078 CRM_Core_Error::fatal();
1079 }
1080
1081 $cacheKey = "{$daoName}:{$searchValue}:{$returnColumn}:{$searchColumn}";
1082 if (self::$_dbColumnValueCache === NULL) {
1083 self::$_dbColumnValueCache = array();
1084 }
1085
1086 if (!array_key_exists($cacheKey, self::$_dbColumnValueCache) || $force) {
1087 $object = new $daoName();
1088 $object->$searchColumn = $searchValue;
1089 $object->selectAdd();
1090 $object->selectAdd($returnColumn);
1091
1092 $result = NULL;
1093 if ($object->find(TRUE)) {
1094 $result = $object->$returnColumn;
1095 }
1096 $object->free();
1097
1098 self::$_dbColumnValueCache[$cacheKey] = $result;
1099 }
1100 return self::$_dbColumnValueCache[$cacheKey];
1101 }
1102
1103 /**
1104 * Given a DAO name, a column name and a column value, find the record and SET the value of another column in that record
1105 *
1106 * @param string $daoName
1107 * Name of the DAO (Example: CRM_Contact_DAO_Contact to retrieve value from a contact).
1108 * @param int $searchValue
1109 * Value of the column you want to search by.
1110 * @param string $setColumn
1111 * Name of the column you want to SET the value of.
1112 * @param string $setValue
1113 * SET the setColumn to this value.
1114 * @param string $searchColumn
1115 * Name of the column you want to search by.
1116 *
1117 * @return bool
1118 * true if we found and updated the object, else false
1119 */
1120 public static function setFieldValue($daoName, $searchValue, $setColumn, $setValue, $searchColumn = 'id') {
1121 $object = new $daoName();
1122 $object->selectAdd();
1123 $object->selectAdd("$searchColumn, $setColumn");
1124 $object->$searchColumn = $searchValue;
1125 $result = FALSE;
1126 if ($object->find(TRUE)) {
1127 $object->$setColumn = $setValue;
1128 if ($object->save()) {
1129 $result = TRUE;
1130 }
1131 }
1132 $object->free();
1133 return $result;
1134 }
1135
1136 /**
1137 * Get sort string.
1138 *
1139 * @param array|object $sort either array or CRM_Utils_Sort
1140 * @param string $default
1141 * Default sort value.
1142 *
1143 * @return string
1144 * sortString
1145 */
1146 public static function getSortString($sort, $default = NULL) {
1147 // check if sort is of type CRM_Utils_Sort
1148 if (is_a($sort, 'CRM_Utils_Sort')) {
1149 return $sort->orderBy();
1150 }
1151
1152 // is it an array specified as $field => $sortDirection ?
1153 if ($sort) {
1154 foreach ($sort as $k => $v) {
1155 $sortString .= "$k $v,";
1156 }
1157 return rtrim($sortString, ',');
1158 }
1159 return $default;
1160 }
1161
1162 /**
1163 * Fetch object based on array of properties.
1164 *
1165 * @param string $daoName
1166 * Name of the dao object.
1167 * @param array $params
1168 * (reference ) an assoc array of name/value pairs.
1169 * @param array $defaults
1170 * (reference ) an assoc array to hold the flattened values.
1171 * @param array $returnProperities
1172 * An assoc array of fields that need to be returned, eg array( 'first_name', 'last_name').
1173 *
1174 * @return object
1175 * an object of type referenced by daoName
1176 */
1177 public static function commonRetrieve($daoName, &$params, &$defaults, $returnProperities = NULL) {
1178 $object = new $daoName();
1179 $object->copyValues($params);
1180
1181 // return only specific fields if returnproperties are sent
1182 if (!empty($returnProperities)) {
1183 $object->selectAdd();
1184 $object->selectAdd(implode(',', $returnProperities));
1185 }
1186
1187 if ($object->find(TRUE)) {
1188 self::storeValues($object, $defaults);
1189 return $object;
1190 }
1191 return NULL;
1192 }
1193
1194 /**
1195 * Delete the object records that are associated with this contact.
1196 *
1197 * @param string $daoName
1198 * Name of the dao object.
1199 * @param int $contactId
1200 * Id of the contact to delete.
1201 */
1202 public static function deleteEntityContact($daoName, $contactId) {
1203 $object = new $daoName();
1204
1205 $object->entity_table = 'civicrm_contact';
1206 $object->entity_id = $contactId;
1207 $object->delete();
1208 }
1209
1210 /**
1211 * Execute an unbuffered query.
1212 *
1213 * This is a wrapper around new functionality exposed with CRM-17748.
1214 *
1215 * @param string $query query to be executed
1216 *
1217 * @param array $params
1218 * @param bool $abort
1219 * @param null $daoName
1220 * @param bool $freeDAO
1221 * @param bool $i18nRewrite
1222 * @param bool $trapException
1223 *
1224 * @return CRM_Core_DAO
1225 * Object that points to an unbuffered result set
1226 */
1227 static public function executeUnbufferedQuery(
1228 $query,
1229 $params = array(),
1230 $abort = TRUE,
1231 $daoName = NULL,
1232 $freeDAO = FALSE,
1233 $i18nRewrite = TRUE,
1234 $trapException = FALSE
1235 ) {
1236 $queryStr = self::composeQuery($query, $params, $abort);
1237 //CRM_Core_Error::debug( 'q', $queryStr );
1238 if (!$daoName) {
1239 $dao = new CRM_Core_DAO();
1240 }
1241 else {
1242 $dao = new $daoName();
1243 }
1244
1245 if ($trapException) {
1246 CRM_Core_Error::ignoreException();
1247 }
1248
1249 // set the DAO object to use an unbuffered query
1250 $dao->setOptions(array('result_buffering' => 0));
1251
1252 $result = $dao->query($queryStr, $i18nRewrite);
1253
1254 if ($trapException) {
1255 CRM_Core_Error::setCallback();
1256 }
1257
1258 if (is_a($result, 'DB_Error')) {
1259 return $result;
1260 }
1261
1262 // since it is unbuffered, ($dao->N==0) is true. This blocks the standard fetch() mechanism.
1263 $dao->N = TRUE;
1264
1265 if ($freeDAO ||
1266 preg_match('/^(insert|update|delete|create|drop|replace)/i', $queryStr)
1267 ) {
1268 // we typically do this for insert/update/delete stataments OR if explicitly asked to
1269 // free the dao
1270 $dao->free();
1271 }
1272 return $dao;
1273 }
1274
1275 /**
1276 * Execute a query.
1277 *
1278 * @param string $query
1279 * Query to be executed.
1280 *
1281 * @param array $params
1282 * @param bool $abort
1283 * @param null $daoName
1284 * @param bool $freeDAO
1285 * @param bool $i18nRewrite
1286 * @param bool $trapException
1287 *
1288 * @return CRM_Core_DAO|object
1289 * object that holds the results of the query
1290 * NB - if this is defined as just returning a DAO phpstorm keeps pointing
1291 * out all the properties that are not part of the DAO
1292 */
1293 public static function &executeQuery(
1294 $query,
1295 $params = array(),
1296 $abort = TRUE,
1297 $daoName = NULL,
1298 $freeDAO = FALSE,
1299 $i18nRewrite = TRUE,
1300 $trapException = FALSE
1301 ) {
1302 $queryStr = self::composeQuery($query, $params, $abort);
1303
1304 if (!$daoName) {
1305 $dao = new CRM_Core_DAO();
1306 }
1307 else {
1308 $dao = new $daoName();
1309 }
1310
1311 if ($trapException) {
1312 $errorScope = CRM_Core_TemporaryErrorScope::ignoreException();
1313 }
1314
1315 $result = $dao->query($queryStr, $i18nRewrite);
1316
1317 if (is_a($result, 'DB_Error')) {
1318 return $result;
1319 }
1320
1321 if ($freeDAO ||
1322 preg_match('/^(insert|update|delete|create|drop|replace)/i', $queryStr)
1323 ) {
1324 // we typically do this for insert/update/delete statements OR if explicitly asked to
1325 // free the dao
1326 $dao->free();
1327 }
1328 return $dao;
1329 }
1330
1331 /**
1332 * Execute a query and get the single result.
1333 *
1334 * @param string $query
1335 * Query to be executed.
1336 * @param array $params
1337 * @param bool $abort
1338 * @param bool $i18nRewrite
1339 * @return string|null
1340 * the result of the query if any
1341 *
1342 */
1343 public static function &singleValueQuery(
1344 $query,
1345 $params = array(),
1346 $abort = TRUE,
1347 $i18nRewrite = TRUE
1348 ) {
1349 $queryStr = self::composeQuery($query, $params, $abort);
1350
1351 static $_dao = NULL;
1352
1353 if (!$_dao) {
1354 $_dao = new CRM_Core_DAO();
1355 }
1356
1357 $_dao->query($queryStr, $i18nRewrite);
1358
1359 $result = $_dao->getDatabaseResult();
1360 $ret = NULL;
1361 if ($result) {
1362 $row = $result->fetchRow();
1363 if ($row) {
1364 $ret = $row[0];
1365 }
1366 }
1367 $_dao->free();
1368 return $ret;
1369 }
1370
1371 /**
1372 * Compose the query by merging the parameters into it.
1373 *
1374 * @param string $query
1375 * @param array $params
1376 * @param bool $abort
1377 *
1378 * @return string
1379 * @throws Exception
1380 */
1381 public static function composeQuery($query, $params, $abort = TRUE) {
1382 $tr = array();
1383 foreach ($params as $key => $item) {
1384 if (is_numeric($key)) {
1385 if (CRM_Utils_Type::validate($item[0], $item[1]) !== NULL) {
1386 $item[0] = self::escapeString($item[0]);
1387 if ($item[1] == 'String' ||
1388 $item[1] == 'Memo' ||
1389 $item[1] == 'Link'
1390 ) {
1391 // Support class constants stipulating wildcard characters and/or
1392 // non-quoting of strings. Also support legacy code which may be
1393 // passing in TRUE or 1 for $item[2], which used to indicate the
1394 // use of wildcard characters.
1395 if (!empty($item[2])) {
1396 if ($item[2] & CRM_Core_DAO::QUERY_FORMAT_WILDCARD || $item[2] === TRUE) {
1397 $item[0] = "'%{$item[0]}%'";
1398 }
1399 elseif (!($item[2] & CRM_Core_DAO::QUERY_FORMAT_NO_QUOTES)) {
1400 $item[0] = "'{$item[0]}'";
1401 }
1402 }
1403 else {
1404 $item[0] = "'{$item[0]}'";
1405 }
1406 }
1407
1408 if (($item[1] == 'Date' || $item[1] == 'Timestamp') &&
1409 strlen($item[0]) == 0
1410 ) {
1411 $item[0] = 'null';
1412 }
1413
1414 $tr['%' . $key] = $item[0];
1415 }
1416 elseif ($abort) {
1417 CRM_Core_Error::fatal("{$item[0]} is not of type {$item[1]}");
1418 }
1419 }
1420 }
1421
1422 return strtr($query, $tr);
1423 }
1424
1425 /**
1426 * @param null $ids
1427 */
1428 public static function freeResult($ids = NULL) {
1429 global $_DB_DATAOBJECT;
1430
1431 if (!$ids) {
1432 if (!$_DB_DATAOBJECT ||
1433 !isset($_DB_DATAOBJECT['RESULTS'])
1434 ) {
1435 return;
1436 }
1437 $ids = array_keys($_DB_DATAOBJECT['RESULTS']);
1438 }
1439
1440 foreach ($ids as $id) {
1441 if (isset($_DB_DATAOBJECT['RESULTS'][$id])) {
1442 $_DB_DATAOBJECT['RESULTS'][$id]->free();
1443 unset($_DB_DATAOBJECT['RESULTS'][$id]);
1444 }
1445
1446 if (isset($_DB_DATAOBJECT['RESULTFIELDS'][$id])) {
1447 unset($_DB_DATAOBJECT['RESULTFIELDS'][$id]);
1448 }
1449 }
1450 }
1451
1452 /**
1453 * make a shallow copy of an object.
1454 * and all the fields in the object
1455 *
1456 * @param string $daoName
1457 * Name of the dao.
1458 * @param array $criteria
1459 * Array of all the fields & values.
1460 * on which basis to copy
1461 * @param array $newData
1462 * Array of all the fields & values.
1463 * to be copied besides the other fields
1464 * @param string $fieldsFix
1465 * Array of fields that you want to prefix/suffix/replace.
1466 * @param string $blockCopyOfDependencies
1467 * Fields that you want to block from.
1468 * getting copied
1469 *
1470 *
1471 * @return CRM_Core_DAO
1472 * the newly created copy of the object
1473 */
1474 public static function &copyGeneric($daoName, $criteria, $newData = NULL, $fieldsFix = NULL, $blockCopyOfDependencies = NULL) {
1475 $object = new $daoName();
1476 if (!$newData) {
1477 $object->id = $criteria['id'];
1478 }
1479 else {
1480 foreach ($criteria as $key => $value) {
1481 $object->$key = $value;
1482 }
1483 }
1484
1485 $object->find();
1486 while ($object->fetch()) {
1487
1488 // all the objects except with $blockCopyOfDependencies set
1489 // be copied - addresses #CRM-1962
1490
1491 if ($blockCopyOfDependencies && $object->$blockCopyOfDependencies) {
1492 break;
1493 }
1494
1495 $newObject = new $daoName();
1496
1497 $fields = &$object->fields();
1498 if (!is_array($fieldsFix)) {
1499 $fieldsToPrefix = array();
1500 $fieldsToSuffix = array();
1501 $fieldsToReplace = array();
1502 }
1503 if (!empty($fieldsFix['prefix'])) {
1504 $fieldsToPrefix = $fieldsFix['prefix'];
1505 }
1506 if (!empty($fieldsFix['suffix'])) {
1507 $fieldsToSuffix = $fieldsFix['suffix'];
1508 }
1509 if (!empty($fieldsFix['replace'])) {
1510 $fieldsToReplace = $fieldsFix['replace'];
1511 }
1512
1513 foreach ($fields as $name => $value) {
1514 if ($name == 'id' || $value['name'] == 'id') {
1515 // copy everything but the id!
1516 continue;
1517 }
1518
1519 $dbName = $value['name'];
1520 $type = CRM_Utils_Type::typeToString($value['type']);
1521 $newObject->$dbName = $object->$dbName;
1522 if (isset($fieldsToPrefix[$dbName])) {
1523 $newObject->$dbName = $fieldsToPrefix[$dbName] . $newObject->$dbName;
1524 }
1525 if (isset($fieldsToSuffix[$dbName])) {
1526 $newObject->$dbName .= $fieldsToSuffix[$dbName];
1527 }
1528 if (isset($fieldsToReplace[$dbName])) {
1529 $newObject->$dbName = $fieldsToReplace[$dbName];
1530 }
1531
1532 if ($type == 'Timestamp' || $type == 'Date') {
1533 $newObject->$dbName = CRM_Utils_Date::isoToMysql($newObject->$dbName);
1534 }
1535
1536 if ($newData) {
1537 foreach ($newData as $k => $v) {
1538 $newObject->$k = $v;
1539 }
1540 }
1541 }
1542 $newObject->save();
1543 }
1544 return $newObject;
1545 }
1546
1547 /**
1548 * Cascade update through related entities.
1549 *
1550 * @param string $daoName
1551 * @param $fromId
1552 * @param $toId
1553 * @param array $newData
1554 *
1555 * @return CRM_Core_DAO|null
1556 */
1557 public static function cascadeUpdate($daoName, $fromId, $toId, $newData = array()) {
1558 $object = new $daoName();
1559 $object->id = $fromId;
1560
1561 if ($object->find(TRUE)) {
1562 $newObject = new $daoName();
1563 $newObject->id = $toId;
1564
1565 if ($newObject->find(TRUE)) {
1566 $fields = &$object->fields();
1567 foreach ($fields as $name => $value) {
1568 if ($name == 'id' || $value['name'] == 'id') {
1569 // copy everything but the id!
1570 continue;
1571 }
1572
1573 $colName = $value['name'];
1574 $newObject->$colName = $object->$colName;
1575
1576 if (substr($name, -5) == '_date' ||
1577 substr($name, -10) == '_date_time'
1578 ) {
1579 $newObject->$colName = CRM_Utils_Date::isoToMysql($newObject->$colName);
1580 }
1581 }
1582 foreach ($newData as $k => $v) {
1583 $newObject->$k = $v;
1584 }
1585 $newObject->save();
1586 return $newObject;
1587 }
1588 }
1589 return NULL;
1590 }
1591
1592 /**
1593 * Given the component id, compute the contact id
1594 * since its used for things like send email
1595 *
1596 * @param $componentIDs
1597 * @param string $tableName
1598 *
1599 * @return array
1600 */
1601 public static function &getContactIDsFromComponent(&$componentIDs, $tableName) {
1602 $contactIDs = array();
1603
1604 if (empty($componentIDs)) {
1605 return $contactIDs;
1606 }
1607
1608 $IDs = implode(',', $componentIDs);
1609 $query = "
1610 SELECT contact_id
1611 FROM $tableName
1612 WHERE id IN ( $IDs )
1613 ";
1614
1615 $dao = CRM_Core_DAO::executeQuery($query);
1616 while ($dao->fetch()) {
1617 $contactIDs[] = $dao->contact_id;
1618 }
1619 return $contactIDs;
1620 }
1621
1622 /**
1623 * Fetch object based on array of properties.
1624 *
1625 * @param string $daoName
1626 * Name of the dao object.
1627 * @param string $fieldIdName
1628 * @param int $fieldId
1629 * @param $details
1630 * @param array $returnProperities
1631 * An assoc array of fields that need to be returned, eg array( 'first_name', 'last_name').
1632 *
1633 * @return object
1634 * an object of type referenced by daoName
1635 */
1636 public static function commonRetrieveAll($daoName, $fieldIdName = 'id', $fieldId, &$details, $returnProperities = NULL) {
1637 require_once str_replace('_', DIRECTORY_SEPARATOR, $daoName) . ".php";
1638 $object = new $daoName();
1639 $object->$fieldIdName = $fieldId;
1640
1641 // return only specific fields if returnproperties are sent
1642 if (!empty($returnProperities)) {
1643 $object->selectAdd();
1644 $object->selectAdd('id');
1645 $object->selectAdd(implode(',', $returnProperities));
1646 }
1647
1648 $object->find();
1649 while ($object->fetch()) {
1650 $defaults = array();
1651 self::storeValues($object, $defaults);
1652 $details[$object->id] = $defaults;
1653 }
1654
1655 return $details;
1656 }
1657
1658 public static function dropAllTables() {
1659
1660 // first drop all the custom tables we've created
1661 CRM_Core_BAO_CustomGroup::dropAllTables();
1662
1663 // drop all multilingual views
1664 CRM_Core_I18n_Schema::dropAllViews();
1665
1666 CRM_Utils_File::sourceSQLFile(CIVICRM_DSN,
1667 dirname(__FILE__) . DIRECTORY_SEPARATOR .
1668 '..' . DIRECTORY_SEPARATOR .
1669 '..' . DIRECTORY_SEPARATOR .
1670 'sql' . DIRECTORY_SEPARATOR .
1671 'civicrm_drop.mysql'
1672 );
1673 }
1674
1675 /**
1676 * @param $string
1677 *
1678 * @return string
1679 */
1680 public static function escapeString($string) {
1681 static $_dao = NULL;
1682 if (!$_dao) {
1683 // If this is an atypical case (e.g. preparing .sql file before CiviCRM
1684 // has been installed), then we fallback DB-less str_replace escaping, as
1685 // we can't use mysqli_real_escape_string, as there is no DB connection.
1686 // Note: In typical usage, escapeString() will only check one conditional
1687 // ("if !$_dao") rather than two conditionals ("if !defined(DSN)")
1688 if (!defined('CIVICRM_DSN')) {
1689 // See http://php.net/manual/en/mysqli.real-escape-string.php for the
1690 // list of characters mysqli_real_escape_string escapes.
1691 $search = array("\\", "\x00", "\n", "\r", "'", '"', "\x1a");
1692 $replace = array("\\\\", "\\0", "\\n", "\\r", "\'", '\"', "\\Z");
1693 return str_replace($search, $replace, $string);
1694 }
1695 $_dao = new CRM_Core_DAO();
1696 }
1697 return $_dao->escape($string);
1698 }
1699
1700 /**
1701 * Escape a list of strings for use with "WHERE X IN (...)" queries.
1702 *
1703 * @param array $strings
1704 * @param string $default
1705 * the value to use if $strings has no elements.
1706 * @return string
1707 * eg "abc","def","ghi"
1708 */
1709 public static function escapeStrings($strings, $default = NULL) {
1710 static $_dao = NULL;
1711 if (!$_dao) {
1712 $_dao = new CRM_Core_DAO();
1713 }
1714
1715 if (empty($strings)) {
1716 return $default;
1717 }
1718
1719 $escapes = array_map(array($_dao, 'escape'), $strings);
1720 return '"' . implode('","', $escapes) . '"';
1721 }
1722
1723 /**
1724 * @param $string
1725 *
1726 * @return string
1727 */
1728 public static function escapeWildCardString($string) {
1729 // CRM-9155
1730 // ensure we escape the single characters % and _ which are mysql wild
1731 // card characters and could come in via sortByCharacter
1732 // note that mysql does not escape these characters
1733 if ($string && in_array($string,
1734 array('%', '_', '%%', '_%')
1735 )
1736 ) {
1737 return '\\' . $string;
1738 }
1739
1740 return self::escapeString($string);
1741 }
1742
1743 /**
1744 * Creates a test object, including any required objects it needs via recursion
1745 * createOnly: only create in database, do not store or return the objects (useful for perf testing)
1746 * ONLY USE FOR TESTING
1747 *
1748 * @param string $daoName
1749 * @param array $params
1750 * @param int $numObjects
1751 * @param bool $createOnly
1752 *
1753 * @return object|array|NULL
1754 * NULL if $createOnly. A single object if $numObjects==1. Otherwise, an array of multiple objects.
1755 */
1756 public static function createTestObject(
1757 $daoName,
1758 $params = array(),
1759 $numObjects = 1,
1760 $createOnly = FALSE
1761 ) {
1762 //this is a test function also backtrace is set for the test suite it sometimes unsets itself
1763 // so we re-set here in case
1764 $config = CRM_Core_Config::singleton();
1765 $config->backtrace = TRUE;
1766
1767 static $counter = 0;
1768 CRM_Core_DAO::$_testEntitiesToSkip = array(
1769 'CRM_Core_DAO_Worldregion',
1770 'CRM_Core_DAO_StateProvince',
1771 'CRM_Core_DAO_Country',
1772 'CRM_Core_DAO_Domain',
1773 'CRM_Financial_DAO_FinancialType',
1774 //because valid ones exist & we use pick them due to pseudoconstant can't reliably create & delete these
1775 );
1776
1777 // Prefer to instantiate BAO's instead of DAO's (when possible)
1778 // so that assignTestValue()/assignTestFK() can be overloaded.
1779 $baoName = str_replace('_DAO_', '_BAO_', $daoName);
1780 if (class_exists($baoName)) {
1781 $daoName = $baoName;
1782 }
1783
1784 for ($i = 0; $i < $numObjects; ++$i) {
1785
1786 ++$counter;
1787 /** @var CRM_Core_DAO $object */
1788 $object = new $daoName();
1789
1790 $fields = &$object->fields();
1791 foreach ($fields as $fieldName => $fieldDef) {
1792 $dbName = $fieldDef['name'];
1793 $FKClassName = CRM_Utils_Array::value('FKClassName', $fieldDef);
1794 $required = CRM_Utils_Array::value('required', $fieldDef);
1795
1796 if (CRM_Utils_Array::value($dbName, $params) !== NULL && !is_array($params[$dbName])) {
1797 $object->$dbName = $params[$dbName];
1798 }
1799
1800 elseif ($dbName != 'id') {
1801 if ($FKClassName != NULL) {
1802 $object->assignTestFK($fieldName, $fieldDef, $params);
1803 continue;
1804 }
1805 else {
1806 $object->assignTestValue($fieldName, $fieldDef, $counter);
1807 }
1808 }
1809 }
1810
1811 $object->save();
1812
1813 if (!$createOnly) {
1814 $objects[$i] = $object;
1815 }
1816 else {
1817 unset($object);
1818 }
1819 }
1820
1821 if ($createOnly) {
1822 return NULL;
1823 }
1824 elseif ($numObjects == 1) {
1825 return $objects[0];
1826 }
1827 else {
1828 return $objects;
1829 }
1830 }
1831
1832 /**
1833 * Deletes the this object plus any dependent objects that are associated with it.
1834 * ONLY USE FOR TESTING
1835 *
1836 * @param string $daoName
1837 * @param array $params
1838 */
1839 public static function deleteTestObjects($daoName, $params = array()) {
1840 //this is a test function also backtrace is set for the test suite it sometimes unsets itself
1841 // so we re-set here in case
1842 $config = CRM_Core_Config::singleton();
1843 $config->backtrace = TRUE;
1844
1845 $object = new $daoName();
1846 $object->id = CRM_Utils_Array::value('id', $params);
1847
1848 $deletions = array(); // array(array(0 => $daoName, 1 => $daoParams))
1849 if ($object->find(TRUE)) {
1850
1851 $fields = &$object->fields();
1852 foreach ($fields as $name => $value) {
1853
1854 $dbName = $value['name'];
1855
1856 $FKClassName = CRM_Utils_Array::value('FKClassName', $value);
1857 $required = CRM_Utils_Array::value('required', $value);
1858 if ($FKClassName != NULL
1859 && $object->$dbName
1860 && !in_array($FKClassName, CRM_Core_DAO::$_testEntitiesToSkip)
1861 && ($required || $dbName == 'contact_id')
1862 //I'm a bit stuck on this one - we might need to change the singleValueAlter so that the entities don't share a contact
1863 // to make this test process pass - line below makes pass for now
1864 && $dbName != 'member_of_contact_id'
1865 ) {
1866 $deletions[] = array($FKClassName, array('id' => $object->$dbName)); // x
1867 }
1868 }
1869 }
1870
1871 $object->delete();
1872
1873 foreach ($deletions as $deletion) {
1874 CRM_Core_DAO::deleteTestObjects($deletion[0], $deletion[1]);
1875 }
1876 }
1877
1878 /**
1879 * Set defaults when creating new entity.
1880 * (don't call this set defaults as already in use with different signature in some places)
1881 *
1882 * @param array $params
1883 * @param $defaults
1884 */
1885 public static function setCreateDefaults(&$params, $defaults) {
1886 if (!empty($params['id'])) {
1887 return;
1888 }
1889 foreach ($defaults as $key => $value) {
1890 if (!array_key_exists($key, $params) || $params[$key] === NULL) {
1891 $params[$key] = $value;
1892 }
1893 }
1894 }
1895
1896 /**
1897 * @param string $prefix
1898 * @param bool $addRandomString
1899 * @param null $string
1900 *
1901 * @return string
1902 */
1903 public static function createTempTableName($prefix = 'civicrm', $addRandomString = TRUE, $string = NULL) {
1904 $tableName = $prefix . "_temp";
1905
1906 if ($addRandomString) {
1907 if ($string) {
1908 $tableName .= "_" . $string;
1909 }
1910 else {
1911 $tableName .= "_" . md5(uniqid('', TRUE));
1912 }
1913 }
1914 return $tableName;
1915 }
1916
1917 /**
1918 * @param bool $view
1919 * @param bool $trigger
1920 *
1921 * @return bool
1922 */
1923 public static function checkTriggerViewPermission($view = TRUE, $trigger = TRUE) {
1924 if (\Civi::settings()->get('logging_no_trigger_permission')) {
1925 return TRUE;
1926 }
1927 // test for create view and trigger permissions and if allowed, add the option to go multilingual
1928 // and logging
1929 // I'm not sure why we use the getStaticProperty for an error, rather than checking for DB_Error
1930 CRM_Core_TemporaryErrorScope::ignoreException();
1931 $dao = new CRM_Core_DAO();
1932 if ($view) {
1933 $result = $dao->query('CREATE OR REPLACE VIEW civicrm_domain_view AS SELECT * FROM civicrm_domain');
1934 if (PEAR::getStaticProperty('DB_DataObject', 'lastError') || is_a($result, 'DB_Error')) {
1935 return FALSE;
1936 }
1937 }
1938
1939 if ($trigger) {
1940 $result = $dao->query('CREATE TRIGGER civicrm_domain_trigger BEFORE INSERT ON civicrm_domain FOR EACH ROW BEGIN END');
1941 if (PEAR::getStaticProperty('DB_DataObject', 'lastError') || is_a($result, 'DB_Error')) {
1942 if ($view) {
1943 $dao->query('DROP VIEW IF EXISTS civicrm_domain_view');
1944 }
1945 return FALSE;
1946 }
1947
1948 $dao->query('DROP TRIGGER IF EXISTS civicrm_domain_trigger');
1949 if (PEAR::getStaticProperty('DB_DataObject', 'lastError')) {
1950 if ($view) {
1951 $dao->query('DROP VIEW IF EXISTS civicrm_domain_view');
1952 }
1953 return FALSE;
1954 }
1955 }
1956
1957 if ($view) {
1958 $dao->query('DROP VIEW IF EXISTS civicrm_domain_view');
1959 if (PEAR::getStaticProperty('DB_DataObject', 'lastError')) {
1960 return FALSE;
1961 }
1962 }
1963
1964 return TRUE;
1965 }
1966
1967 /**
1968 * @param null $message
1969 * @param bool $printDAO
1970 */
1971 public static function debugPrint($message = NULL, $printDAO = TRUE) {
1972 CRM_Utils_System::xMemory("{$message}: ");
1973
1974 if ($printDAO) {
1975 global $_DB_DATAOBJECT;
1976 $q = array();
1977 foreach (array_keys($_DB_DATAOBJECT['RESULTS']) as $id) {
1978 $q[] = $_DB_DATAOBJECT['RESULTS'][$id]->query;
1979 }
1980 CRM_Core_Error::debug('_DB_DATAOBJECT', $q);
1981 }
1982 }
1983
1984 /**
1985 * Build a list of triggers via hook and add them to (err, reconcile them
1986 * with) the database.
1987 *
1988 * @param string $tableName
1989 * the specific table requiring a rebuild; or NULL to rebuild all tables.
1990 * @param bool $force
1991 * @deprecated
1992 *
1993 * @see CRM-9716
1994 */
1995 public static function triggerRebuild($tableName = NULL, $force = FALSE) {
1996 Civi::service('sql_triggers')->rebuild($tableName, $force);
1997 }
1998
1999 /**
2000 * Because sql functions are sometimes lost, esp during db migration, we check here to avoid numerous support requests
2001 * @see http://issues.civicrm.org/jira/browse/CRM-13822
2002 * TODO: Alternative solutions might be
2003 * * Stop using functions and find another way to strip numeric characters from phones
2004 * * Give better error messages (currently a missing fn fatals with "unknown error")
2005 */
2006 public static function checkSqlFunctionsExist() {
2007 if (!self::$_checkedSqlFunctionsExist) {
2008 self::$_checkedSqlFunctionsExist = TRUE;
2009 $dao = CRM_Core_DAO::executeQuery("SHOW function status WHERE db = database() AND name = 'civicrm_strip_non_numeric'");
2010 if (!$dao->fetch()) {
2011 self::triggerRebuild();
2012 }
2013 }
2014 }
2015
2016 /**
2017 * Wrapper function to drop triggers.
2018 *
2019 * @param string $tableName
2020 * the specific table requiring a rebuild; or NULL to rebuild all tables.
2021 * @deprecated
2022 */
2023 public static function dropTriggers($tableName = NULL) {
2024 Civi::service('sql_triggers')->dropTriggers($tableName);
2025 }
2026
2027 /**
2028 * @param array $info
2029 * per hook_civicrm_triggerInfo.
2030 * @param string $onlyTableName
2031 * the specific table requiring a rebuild; or NULL to rebuild all tables.
2032 * @deprecated
2033 */
2034 public static function createTriggers(&$info, $onlyTableName = NULL) {
2035 Civi::service('sql_triggers')->createTriggers($info, $onlyTableName);
2036 }
2037
2038 /**
2039 * Given a list of fields, create a list of references.
2040 *
2041 * @param string $className
2042 * BAO/DAO class name.
2043 * @return array<CRM_Core_Reference_Interface>
2044 */
2045 public static function createReferenceColumns($className) {
2046 $result = array();
2047 $fields = $className::fields();
2048 foreach ($fields as $field) {
2049 if (isset($field['pseudoconstant'], $field['pseudoconstant']['optionGroupName'])) {
2050 $result[] = new CRM_Core_Reference_OptionValue(
2051 $className::getTableName(),
2052 $field['name'],
2053 'civicrm_option_value',
2054 CRM_Utils_Array::value('keyColumn', $field['pseudoconstant'], 'value'),
2055 $field['pseudoconstant']['optionGroupName']
2056 );
2057 }
2058 }
2059 return $result;
2060 }
2061
2062 /**
2063 * Find all records which refer to this entity.
2064 *
2065 * @return array
2066 * Array of objects referencing this
2067 */
2068 public function findReferences() {
2069 $links = self::getReferencesToTable(static::getTableName());
2070
2071 $occurrences = array();
2072 foreach ($links as $refSpec) {
2073 /** @var $refSpec CRM_Core_Reference_Interface */
2074 $daoName = CRM_Core_DAO_AllCoreTables::getClassForTable($refSpec->getReferenceTable());
2075 $result = $refSpec->findReferences($this);
2076 if ($result) {
2077 while ($result->fetch()) {
2078 $obj = new $daoName();
2079 $obj->id = $result->id;
2080 $occurrences[] = $obj;
2081 }
2082 }
2083 }
2084
2085 return $occurrences;
2086 }
2087
2088 /**
2089 * @return array
2090 * each item has keys:
2091 * - name: string
2092 * - type: string
2093 * - count: int
2094 * - table: string|null SQL table name
2095 * - key: string|null SQL column name
2096 */
2097 public function getReferenceCounts() {
2098 $links = self::getReferencesToTable(static::getTableName());
2099
2100 $counts = array();
2101 foreach ($links as $refSpec) {
2102 /** @var $refSpec CRM_Core_Reference_Interface */
2103 $count = $refSpec->getReferenceCount($this);
2104 if ($count['count'] != 0) {
2105 $counts[] = $count;
2106 }
2107 }
2108
2109 foreach (CRM_Core_Component::getEnabledComponents() as $component) {
2110 /** @var $component CRM_Core_Component_Info */
2111 $counts = array_merge($counts, $component->getReferenceCounts($this));
2112 }
2113 CRM_Utils_Hook::referenceCounts($this, $counts);
2114
2115 return $counts;
2116 }
2117
2118 /**
2119 * List all tables which have hard foreign keys to this table.
2120 *
2121 * For now, this returns a description of every entity_id/entity_table
2122 * reference.
2123 * TODO: filter dynamic entity references on the $tableName, based on
2124 * schema metadata in dynamicForeignKey which enumerates a restricted
2125 * set of possible entity_table's.
2126 *
2127 * @param string $tableName
2128 * Table referred to.
2129 *
2130 * @return array
2131 * structure of table and column, listing every table with a
2132 * foreign key reference to $tableName, and the column where the key appears.
2133 */
2134 public static function getReferencesToTable($tableName) {
2135 $refsFound = array();
2136 foreach (CRM_Core_DAO_AllCoreTables::getClasses() as $daoClassName) {
2137 $links = $daoClassName::getReferenceColumns();
2138 $daoTableName = $daoClassName::getTableName();
2139
2140 foreach ($links as $refSpec) {
2141 /** @var $refSpec CRM_Core_Reference_Interface */
2142 if ($refSpec->matchesTargetTable($tableName)) {
2143 $refsFound[] = $refSpec;
2144 }
2145 }
2146 }
2147 return $refsFound;
2148 }
2149
2150 /**
2151 * Lookup the value of a MySQL global configuration variable.
2152 *
2153 * @param string $name
2154 * E.g. "thread_stack".
2155 * @param mixed $default
2156 * @return mixed
2157 */
2158 public static function getGlobalSetting($name, $default = NULL) {
2159 // Alternatively, SELECT @@GLOBAL.thread_stack, but
2160 // that has been reported to fail under MySQL 5.0 for OS X
2161 $escapedName = self::escapeString($name);
2162 $dao = CRM_Core_DAO::executeQuery("SHOW VARIABLES LIKE '$escapedName'");
2163 if ($dao->fetch()) {
2164 return $dao->Value;
2165 }
2166 else {
2167 return $default;
2168 }
2169 }
2170
2171
2172 /**
2173 * Update the fields array to also hold keys for pseudoconstant fields that relate to contained fields.
2174 *
2175 * This is relevant where we want to offer both the ID field and the label field
2176 * as an option, e.g. search builder.
2177 *
2178 * It is currently limited for optionGroupName for purposes keeping the scope of the
2179 * change small, but is appropriate for other sorts of pseudoconstants.
2180 *
2181 * @param array $fields
2182 */
2183 protected static function appendPseudoConstantsToFields(&$fields) {
2184 foreach ($fields as $field) {
2185 if (!empty($field['pseudoconstant']) && !empty($field['pseudoconstant']['optionGroupName'])) {
2186 $fields[$field['pseudoconstant']['optionGroupName']] = array(
2187 'title' => CRM_Core_BAO_OptionGroup::getTitleByName($field['pseudoconstant']['optionGroupName']),
2188 'name' => $field['pseudoconstant']['optionGroupName'],
2189 'data_type' => CRM_Utils_Type::T_STRING,
2190 );
2191 }
2192 }
2193 }
2194
2195 /**
2196 * Get options for the called BAO object's field.
2197 *
2198 * This function can be overridden by each BAO to add more logic related to context.
2199 * The overriding function will generally call the lower-level CRM_Core_PseudoConstant::get
2200 *
2201 * @param string $fieldName
2202 * @param string $context
2203 * @see CRM_Core_DAO::buildOptionsContext
2204 * @param array $props
2205 * whatever is known about this bao object.
2206 *
2207 * @return array|bool
2208 */
2209 public static function buildOptions($fieldName, $context = NULL, $props = array()) {
2210 // If a given bao does not override this function
2211 $baoName = get_called_class();
2212 return CRM_Core_PseudoConstant::get($baoName, $fieldName, array(), $context);
2213 }
2214
2215 /**
2216 * Populate option labels for this object's fields.
2217 *
2218 * @throws exception if called directly on the base class
2219 */
2220 public function getOptionLabels() {
2221 $fields = $this->fields();
2222 if ($fields === NULL) {
2223 throw new Exception('Cannot call getOptionLabels on CRM_Core_DAO');
2224 }
2225 foreach ($fields as $field) {
2226 $name = CRM_Utils_Array::value('name', $field);
2227 if ($name && isset($this->$name)) {
2228 $label = CRM_Core_PseudoConstant::getLabel(get_class($this), $name, $this->$name);
2229 if ($label !== FALSE) {
2230 // Append 'label' onto the field name
2231 $labelName = $name . '_label';
2232 $this->$labelName = $label;
2233 }
2234 }
2235 }
2236 }
2237
2238 /**
2239 * Provides documentation and validation for the buildOptions $context param
2240 *
2241 * @param string $context
2242 *
2243 * @throws Exception
2244 * @return array
2245 */
2246 public static function buildOptionsContext($context = NULL) {
2247 $contexts = array(
2248 'get' => "get: all options are returned, even if they are disabled; labels are translated.",
2249 'create' => "create: options are filtered appropriately for the object being created/updated; labels are translated.",
2250 'search' => "search: searchable options are returned; labels are translated.",
2251 'validate' => "validate: all options are returned, even if they are disabled; machine names are used in place of labels.",
2252 'abbreviate' => "abbreviate: enabled options are returned; labels are replaced with abbreviations.",
2253 'match' => "match: enabled options are returned using machine names as keys; labels are translated.",
2254 );
2255 // Validation: enforce uniformity of this param
2256 if ($context !== NULL && !isset($contexts[$context])) {
2257 throw new Exception("'$context' is not a valid context for buildOptions.");
2258 }
2259 return $contexts;
2260 }
2261
2262 /**
2263 * @param string $fieldName
2264 * @return bool|array
2265 */
2266 public function getFieldSpec($fieldName) {
2267 $fields = $this->fields();
2268 $fieldKeys = $this->fieldKeys();
2269
2270 // Support "unique names" as well as sql names
2271 $fieldKey = $fieldName;
2272 if (empty($fields[$fieldKey])) {
2273 $fieldKey = CRM_Utils_Array::value($fieldName, $fieldKeys);
2274 }
2275 // If neither worked then this field doesn't exist. Return false.
2276 if (empty($fields[$fieldKey])) {
2277 return FALSE;
2278 }
2279 return $fields[$fieldKey];
2280 }
2281
2282 /**
2283 * Get SQL where clause for SQL filter syntax input parameters.
2284 *
2285 * SQL version of api function to assign filters to the DAO based on the syntax
2286 * $field => array('IN' => array(4,6,9))
2287 * OR
2288 * $field => array('LIKE' => array('%me%))
2289 * etc
2290 *
2291 * @param string $fieldName
2292 * Name of fields.
2293 * @param array $filter
2294 * filter to be applied indexed by operator.
2295 * @param string $type
2296 * type of field (not actually used - nor in api @todo ).
2297 * @param string $alias
2298 * alternative field name ('as') @todo- not actually used.
2299 * @param bool $returnSanitisedArray
2300 * Return a sanitised array instead of a clause.
2301 * this is primarily so we can add filters @ the api level to the Query object based fields
2302 *
2303 * @throws Exception
2304 *
2305 * @return NULL|string|array
2306 * a string is returned if $returnSanitisedArray is not set, otherwise and Array or NULL
2307 * depending on whether it is supported as yet
2308 */
2309 public static function createSQLFilter($fieldName, $filter, $type = NULL, $alias = NULL, $returnSanitisedArray = FALSE) {
2310 foreach ($filter as $operator => $criteria) {
2311 if (in_array($operator, self::acceptedSQLOperators(), TRUE)) {
2312 switch ($operator) {
2313 // unary operators
2314 case 'IS NULL':
2315 case 'IS NOT NULL':
2316 if (!$returnSanitisedArray) {
2317 return (sprintf('%s %s', $fieldName, $operator));
2318 }
2319 else {
2320 return (sprintf('%s %s ', $fieldName, $operator));
2321 }
2322 break;
2323
2324 // ternary operators
2325 case 'BETWEEN':
2326 case 'NOT BETWEEN':
2327 if (empty($criteria[0]) || empty($criteria[1])) {
2328 throw new Exception("invalid criteria for $operator");
2329 }
2330 if (!$returnSanitisedArray) {
2331 return (sprintf('%s ' . $operator . ' "%s" AND "%s"', $fieldName, CRM_Core_DAO::escapeString($criteria[0]), CRM_Core_DAO::escapeString($criteria[1])));
2332 }
2333 else {
2334 return NULL; // not yet implemented (tests required to implement)
2335 }
2336 break;
2337
2338 // n-ary operators
2339 case 'IN':
2340 case 'NOT IN':
2341 if (empty($criteria)) {
2342 throw new Exception("invalid criteria for $operator");
2343 }
2344 $escapedCriteria = array_map(array(
2345 'CRM_Core_DAO',
2346 'escapeString',
2347 ), $criteria);
2348 if (!$returnSanitisedArray) {
2349 return (sprintf('%s %s ("%s")', $fieldName, $operator, implode('", "', $escapedCriteria)));
2350 }
2351 return $escapedCriteria;
2352
2353 // binary operators
2354
2355 default:
2356 if (!$returnSanitisedArray) {
2357 return (sprintf('%s %s "%s"', $fieldName, $operator, CRM_Core_DAO::escapeString($criteria)));
2358 }
2359 else {
2360 return NULL; // not yet implemented (tests required to implement)
2361 }
2362 }
2363 }
2364 }
2365 }
2366
2367 /**
2368 * @see http://issues.civicrm.org/jira/browse/CRM-9150
2369 * support for other syntaxes is discussed in ticket but being put off for now
2370 * @return array
2371 */
2372 public static function acceptedSQLOperators() {
2373 return array(
2374 '=',
2375 '<=',
2376 '>=',
2377 '>',
2378 '<',
2379 'LIKE',
2380 "<>",
2381 "!=",
2382 "NOT LIKE",
2383 'IN',
2384 'NOT IN',
2385 'BETWEEN',
2386 'NOT BETWEEN',
2387 'IS NOT NULL',
2388 'IS NULL',
2389 );
2390 }
2391
2392 /**
2393 * SQL has a limit of 64 characters on various names:
2394 * table name, trigger name, column name ...
2395 *
2396 * For custom groups and fields we generated names from user entered input
2397 * which can be longer than this length, this function helps with creating
2398 * strings that meet various criteria.
2399 *
2400 * @param string $string
2401 * The string to be shortened.
2402 * @param int $length
2403 * The max length of the string.
2404 *
2405 * @param bool $makeRandom
2406 *
2407 * @return string
2408 */
2409 public static function shortenSQLName($string, $length = 60, $makeRandom = FALSE) {
2410 // early return for strings that meet the requirements
2411 if (strlen($string) <= $length) {
2412 return $string;
2413 }
2414
2415 // easy return for calls that dont need a randomized uniq string
2416 if (!$makeRandom) {
2417 return substr($string, 0, $length);
2418 }
2419
2420 // the string is longer than the length and we need a uniq string
2421 // for the same tablename we need the same uniq string every time
2422 // hence we use md5 on the string, which is not random
2423 // we'll append 8 characters to the end of the tableName
2424 $md5string = substr(md5($string), 0, 8);
2425 return substr($string, 0, $length - 8) . "_{$md5string}";
2426 }
2427
2428 /**
2429 * https://issues.civicrm.org/jira/browse/CRM-17748
2430 * Sets the internal options to be used on a query
2431 *
2432 * @param array $options
2433 *
2434 */
2435 public function setOptions($options) {
2436 if (is_array($options)) {
2437 $this->_options = $options;
2438 }
2439 }
2440
2441 /**
2442 * https://issues.civicrm.org/jira/browse/CRM-17748
2443 * wrapper to pass internal DAO options down to DB_mysql/DB_Common level
2444 *
2445 * @param array $options
2446 *
2447 */
2448 protected function _setDBOptions($options) {
2449 global $_DB_DATAOBJECT;
2450
2451 if (is_array($options) && count($options)) {
2452 $conn = &$_DB_DATAOBJECT['CONNECTIONS'][$this->_database_dsn_md5];
2453 foreach ($options as $option_name => $option_value) {
2454 $conn->setOption($option_name, $option_value);
2455 }
2456 }
2457 }
2458
2459 /**
2460 * @deprecated
2461 * @param array $params
2462 */
2463 public function setApiFilter(&$params) {
2464 }
2465
2466 /**
2467 * Generates acl clauses suitable for adding to WHERE or ON when doing an api.get for this entity
2468 *
2469 * Return format is in the form of fieldname => clauses starting with an operator. e.g.:
2470 * @code
2471 * array(
2472 * 'location_type_id' => array('IS NOT NULL', 'IN (1,2,3)')
2473 * )
2474 * @endcode
2475 *
2476 * Note that all array keys must be actual field names in this entity. Use subqueries to filter on other tables e.g. custom values.
2477 *
2478 * @return array
2479 */
2480 public function addSelectWhereClause() {
2481 $clauses = array();
2482 $fields = $this->fields();
2483 foreach ($fields as $fieldName => $field) {
2484 // Clause for contact-related entities like Email, Relationship, etc.
2485 if (strpos($fieldName, 'contact_id') === 0 && CRM_Utils_Array::value('FKClassName', $field) == 'CRM_Contact_DAO_Contact') {
2486 $clauses[$fieldName] = CRM_Utils_SQL::mergeSubquery('Contact');
2487 }
2488 // Clause for an entity_table/entity_id combo
2489 if ($fieldName == 'entity_id' && isset($fields['entity_table'])) {
2490 $relatedClauses = array();
2491 $relatedEntities = $this->buildOptions('entity_table', 'get');
2492 foreach ((array) $relatedEntities as $table => $ent) {
2493 if (!empty($ent)) {
2494 $ent = CRM_Core_DAO_AllCoreTables::getBriefName(CRM_Core_DAO_AllCoreTables::getClassForTable($table));
2495 $subquery = CRM_Utils_SQL::mergeSubquery($ent);
2496 if ($subquery) {
2497 $relatedClauses[] = "(entity_table = '$table' AND entity_id " . implode(' AND entity_id ', $subquery) . ")";
2498 }
2499 else {
2500 $relatedClauses[] = "(entity_table = '$table')";
2501 }
2502 }
2503 }
2504 if ($relatedClauses) {
2505 $clauses['id'] = 'IN (SELECT id FROM `' . $this->tableName() . '` WHERE (' . implode(') OR (', $relatedClauses) . '))';
2506 }
2507 }
2508 }
2509 CRM_Utils_Hook::selectWhereClause($this, $clauses);
2510 return $clauses;
2511 }
2512
2513 /**
2514 * This returns the final permissioned query string for this entity
2515 *
2516 * With acls from related entities + additional clauses from hook_civicrm_selectWhereClause
2517 *
2518 * @param string $tableAlias
2519 * @return array
2520 */
2521 public static function getSelectWhereClause($tableAlias = NULL) {
2522 $bao = new static();
2523 if ($tableAlias === NULL) {
2524 $tableAlias = $bao->tableName();
2525 }
2526 $clauses = array();
2527 foreach ((array) $bao->addSelectWhereClause() as $field => $vals) {
2528 $clauses[$field] = NULL;
2529 if ($vals) {
2530 $clauses[$field] = "`$tableAlias`.`$field` " . implode(" AND `$tableAlias`.`$field` ", (array) $vals);
2531 }
2532 }
2533 return $clauses;
2534 }
2535
2536 /**
2537 * ensure database name is 'safe', i.e. only contains word characters (includes underscores)
2538 * and dashes, and contains at least one [a-z] case insenstive.
2539 *
2540 * @param $database
2541 *
2542 * @return bool
2543 */
2544 public static function requireSafeDBName($database) {
2545 $matches = array();
2546 preg_match(
2547 "/^[\w\-]*[a-z]+[\w\-]*$/i",
2548 $database,
2549 $matches
2550 );
2551 if (empty($matches)) {
2552 return FALSE;
2553 }
2554 return TRUE;
2555 }
2556
2557 }