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