82c4ebc9f264d217d02b4c10b4876a917611ec0a
[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 * @param bool $blockCopyofCustomValues
1603 * Case when you don't want to copy the custom values set in a
1604 * template as it will override/ignore the submitted custom values
1605 *
1606 * @return CRM_Core_DAO|bool
1607 * the newly created copy of the object. False if none created.
1608 */
1609 public static function copyGeneric($daoName, $criteria, $newData = NULL, $fieldsFix = NULL, $blockCopyOfDependencies = NULL, $blockCopyofCustomValues = FALSE) {
1610 $object = new $daoName();
1611 $newObject = FALSE;
1612 if (!$newData) {
1613 $object->id = $criteria['id'];
1614 }
1615 else {
1616 foreach ($criteria as $key => $value) {
1617 $object->$key = $value;
1618 }
1619 }
1620
1621 $object->find();
1622 while ($object->fetch()) {
1623
1624 // all the objects except with $blockCopyOfDependencies set
1625 // be copied - addresses #CRM-1962
1626
1627 if ($blockCopyOfDependencies && $object->$blockCopyOfDependencies) {
1628 break;
1629 }
1630
1631 $newObject = new $daoName();
1632
1633 $fields = $object->fields();
1634 if (!is_array($fieldsFix)) {
1635 $fieldsToPrefix = [];
1636 $fieldsToSuffix = [];
1637 $fieldsToReplace = [];
1638 }
1639 if (!empty($fieldsFix['prefix'])) {
1640 $fieldsToPrefix = $fieldsFix['prefix'];
1641 }
1642 if (!empty($fieldsFix['suffix'])) {
1643 $fieldsToSuffix = $fieldsFix['suffix'];
1644 }
1645 if (!empty($fieldsFix['replace'])) {
1646 $fieldsToReplace = $fieldsFix['replace'];
1647 }
1648
1649 foreach ($fields as $name => $value) {
1650 if ($name == 'id' || $value['name'] == 'id') {
1651 // copy everything but the id!
1652 continue;
1653 }
1654
1655 $dbName = $value['name'];
1656 $type = CRM_Utils_Type::typeToString($value['type']);
1657 $newObject->$dbName = $object->$dbName;
1658 if (isset($fieldsToPrefix[$dbName])) {
1659 $newObject->$dbName = $fieldsToPrefix[$dbName] . $newObject->$dbName;
1660 }
1661 if (isset($fieldsToSuffix[$dbName])) {
1662 $newObject->$dbName .= $fieldsToSuffix[$dbName];
1663 }
1664 if (isset($fieldsToReplace[$dbName])) {
1665 $newObject->$dbName = $fieldsToReplace[$dbName];
1666 }
1667
1668 if ($type == 'Timestamp' || $type == 'Date') {
1669 $newObject->$dbName = CRM_Utils_Date::isoToMysql($newObject->$dbName);
1670 }
1671
1672 if ($newData) {
1673 $newObject->copyValues($newData);
1674 }
1675 }
1676 $newObject->save();
1677 if (!$blockCopyofCustomValues) {
1678 $newObject->copyCustomFields($object->id, $newObject->id);
1679 }
1680 CRM_Utils_Hook::post('create', CRM_Core_DAO_AllCoreTables::getBriefName($daoName), $newObject->id, $newObject);
1681 }
1682
1683 return $newObject;
1684 }
1685
1686 /**
1687 * Method that copies custom fields values from an old entity to a new one.
1688 *
1689 * Fixes bug CRM-19302,
1690 * where if a custom field of File type was present, left both events using the same file,
1691 * breaking download URL's for the old event.
1692 *
1693 * @todo the goal here is to clean this up so that it works for any entity. Copy Generic already DOES some custom field stuff
1694 * but it seems to be bypassed & perhaps less good than this (or this just duplicates it...)
1695 *
1696 * @param int $entityID
1697 * @param int $newEntityID
1698 */
1699 public function copyCustomFields($entityID, $newEntityID) {
1700 $entity = CRM_Core_DAO_AllCoreTables::getBriefName(get_class($this));
1701 $tableName = CRM_Core_DAO_AllCoreTables::getTableForClass(get_class($this));
1702 // Obtain custom values for old event
1703 $customParams = $htmlType = [];
1704 $customValues = CRM_Core_BAO_CustomValueTable::getEntityValues($entityID, $entity);
1705
1706 // If custom values present, we copy them
1707 if (!empty($customValues)) {
1708 // Get Field ID's and identify File type attributes, to handle file copying.
1709 $fieldIds = implode(', ', array_keys($customValues));
1710 $sql = "SELECT id FROM civicrm_custom_field WHERE html_type = 'File' AND id IN ( {$fieldIds} )";
1711 $result = CRM_Core_DAO::executeQuery($sql);
1712
1713 // Build array of File type fields
1714 while ($result->fetch()) {
1715 $htmlType[] = $result->id;
1716 }
1717
1718 // Build params array of custom values
1719 foreach ($customValues as $field => $value) {
1720 if ($value !== NULL) {
1721 // Handle File type attributes
1722 if (in_array($field, $htmlType)) {
1723 $fileValues = CRM_Core_BAO_File::path($value, $entityID);
1724 $customParams["custom_{$field}_-1"] = [
1725 'name' => CRM_Utils_File::duplicate($fileValues[0]),
1726 'type' => $fileValues[1],
1727 ];
1728 }
1729 // Handle other types
1730 else {
1731 $customParams["custom_{$field}_-1"] = $value;
1732 }
1733 }
1734 }
1735
1736 // Save Custom Fields for new Event
1737 CRM_Core_BAO_CustomValueTable::postProcess($customParams, $tableName, $newEntityID, $entity);
1738 }
1739
1740 // copy activity attachments ( if any )
1741 CRM_Core_BAO_File::copyEntityFile($tableName, $entityID, $tableName, $newEntityID);
1742 }
1743
1744 /**
1745 * Cascade update through related entities.
1746 *
1747 * @param string $daoName
1748 * @param $fromId
1749 * @param $toId
1750 * @param array $newData
1751 *
1752 * @return CRM_Core_DAO|null
1753 */
1754 public static function cascadeUpdate($daoName, $fromId, $toId, $newData = []) {
1755 $object = new $daoName();
1756 $object->id = $fromId;
1757
1758 if ($object->find(TRUE)) {
1759 $newObject = new $daoName();
1760 $newObject->id = $toId;
1761
1762 if ($newObject->find(TRUE)) {
1763 $fields = $object->fields();
1764 foreach ($fields as $name => $value) {
1765 if ($name == 'id' || $value['name'] == 'id') {
1766 // copy everything but the id!
1767 continue;
1768 }
1769
1770 $colName = $value['name'];
1771 $newObject->$colName = $object->$colName;
1772
1773 if (substr($name, -5) == '_date' ||
1774 substr($name, -10) == '_date_time'
1775 ) {
1776 $newObject->$colName = CRM_Utils_Date::isoToMysql($newObject->$colName);
1777 }
1778 }
1779 foreach ($newData as $k => $v) {
1780 $newObject->$k = $v;
1781 }
1782 $newObject->save();
1783 return $newObject;
1784 }
1785 }
1786 return NULL;
1787 }
1788
1789 /**
1790 * Given the component id, compute the contact id
1791 * since its used for things like send email
1792 *
1793 * @param $componentIDs
1794 * @param string $tableName
1795 * @param string $idField
1796 *
1797 * @return array
1798 */
1799 public static function getContactIDsFromComponent($componentIDs, $tableName, $idField = 'id') {
1800 $contactIDs = [];
1801
1802 if (empty($componentIDs)) {
1803 return $contactIDs;
1804 }
1805
1806 $IDs = implode(',', $componentIDs);
1807 $query = "
1808 SELECT contact_id
1809 FROM $tableName
1810 WHERE $idField IN ( $IDs )
1811 ";
1812
1813 $dao = CRM_Core_DAO::executeQuery($query);
1814 while ($dao->fetch()) {
1815 $contactIDs[] = $dao->contact_id;
1816 }
1817 return $contactIDs;
1818 }
1819
1820 /**
1821 * Fetch object based on array of properties.
1822 *
1823 * @param string $daoName
1824 * Name of the dao object.
1825 * @param string $fieldIdName
1826 * @param int $fieldId
1827 * @param $details
1828 * @param array $returnProperities
1829 * An assoc array of fields that need to be returned, eg array( 'first_name', 'last_name').
1830 *
1831 * @return object
1832 * an object of type referenced by daoName
1833 */
1834 public static function commonRetrieveAll($daoName, $fieldIdName = 'id', $fieldId, &$details, $returnProperities = NULL) {
1835 require_once str_replace('_', DIRECTORY_SEPARATOR, $daoName) . ".php";
1836 $object = new $daoName();
1837 $object->$fieldIdName = $fieldId;
1838
1839 // return only specific fields if returnproperties are sent
1840 if (!empty($returnProperities)) {
1841 $object->selectAdd();
1842 $object->selectAdd('id');
1843 $object->selectAdd(implode(',', $returnProperities));
1844 }
1845
1846 $object->find();
1847 while ($object->fetch()) {
1848 $defaults = [];
1849 self::storeValues($object, $defaults);
1850 $details[$object->id] = $defaults;
1851 }
1852
1853 return $details;
1854 }
1855
1856 /**
1857 * Drop all CiviCRM tables.
1858 *
1859 * @throws \CRM_Exception
1860 */
1861 public static function dropAllTables() {
1862
1863 // first drop all the custom tables we've created
1864 CRM_Core_BAO_CustomGroup::dropAllTables();
1865
1866 // drop all multilingual views
1867 CRM_Core_I18n_Schema::dropAllViews();
1868
1869 CRM_Utils_File::sourceSQLFile(CIVICRM_DSN,
1870 dirname(__FILE__) . DIRECTORY_SEPARATOR .
1871 '..' . DIRECTORY_SEPARATOR .
1872 '..' . DIRECTORY_SEPARATOR .
1873 'sql' . DIRECTORY_SEPARATOR .
1874 'civicrm_drop.mysql'
1875 );
1876 }
1877
1878 /**
1879 * @param $string
1880 *
1881 * @return string
1882 */
1883 public static function escapeString($string) {
1884 static $_dao = NULL;
1885 if (!$_dao) {
1886 // If this is an atypical case (e.g. preparing .sql file before CiviCRM
1887 // has been installed), then we fallback DB-less str_replace escaping, as
1888 // we can't use mysqli_real_escape_string, as there is no DB connection.
1889 // Note: In typical usage, escapeString() will only check one conditional
1890 // ("if !$_dao") rather than two conditionals ("if !defined(DSN)")
1891 if (!defined('CIVICRM_DSN')) {
1892 // See http://php.net/manual/en/mysqli.real-escape-string.php for the
1893 // list of characters mysqli_real_escape_string escapes.
1894 $search = ["\\", "\x00", "\n", "\r", "'", '"', "\x1a"];
1895 $replace = ["\\\\", "\\0", "\\n", "\\r", "\'", '\"', "\\Z"];
1896 return str_replace($search, $replace, $string);
1897 }
1898 $_dao = new CRM_Core_DAO();
1899 }
1900 return $_dao->escape($string);
1901 }
1902
1903 /**
1904 * Escape a list of strings for use with "WHERE X IN (...)" queries.
1905 *
1906 * @param array $strings
1907 * @param string $default
1908 * the value to use if $strings has no elements.
1909 * @return string
1910 * eg "abc","def","ghi"
1911 */
1912 public static function escapeStrings($strings, $default = NULL) {
1913 static $_dao = NULL;
1914 if (!$_dao) {
1915 $_dao = new CRM_Core_DAO();
1916 }
1917
1918 if (empty($strings)) {
1919 return $default;
1920 }
1921
1922 $escapes = array_map([$_dao, 'escape'], $strings);
1923 return '"' . implode('","', $escapes) . '"';
1924 }
1925
1926 /**
1927 * @param $string
1928 *
1929 * @return string
1930 */
1931 public static function escapeWildCardString($string) {
1932 // CRM-9155
1933 // ensure we escape the single characters % and _ which are mysql wild
1934 // card characters and could come in via sortByCharacter
1935 // note that mysql does not escape these characters
1936 if ($string && in_array($string,
1937 ['%', '_', '%%', '_%']
1938 )
1939 ) {
1940 return '\\' . $string;
1941 }
1942
1943 return self::escapeString($string);
1944 }
1945
1946 /**
1947 * Creates a test object, including any required objects it needs via recursion
1948 * createOnly: only create in database, do not store or return the objects (useful for perf testing)
1949 * ONLY USE FOR TESTING
1950 *
1951 * @param string $daoName
1952 * @param array $params
1953 * @param int $numObjects
1954 * @param bool $createOnly
1955 *
1956 * @return object|array|NULL
1957 * NULL if $createOnly. A single object if $numObjects==1. Otherwise, an array of multiple objects.
1958 */
1959 public static function createTestObject(
1960 $daoName,
1961 $params = [],
1962 $numObjects = 1,
1963 $createOnly = FALSE
1964 ) {
1965 //this is a test function also backtrace is set for the test suite it sometimes unsets itself
1966 // so we re-set here in case
1967 $config = CRM_Core_Config::singleton();
1968 $config->backtrace = TRUE;
1969
1970 static $counter = 0;
1971 CRM_Core_DAO::$_testEntitiesToSkip = [
1972 'CRM_Core_DAO_Worldregion',
1973 'CRM_Core_DAO_StateProvince',
1974 'CRM_Core_DAO_Country',
1975 'CRM_Core_DAO_Domain',
1976 'CRM_Financial_DAO_FinancialType',
1977 //because valid ones exist & we use pick them due to pseudoconstant can't reliably create & delete these
1978 ];
1979
1980 // Prefer to instantiate BAO's instead of DAO's (when possible)
1981 // so that assignTestValue()/assignTestFK() can be overloaded.
1982 $baoName = str_replace('_DAO_', '_BAO_', $daoName);
1983 if (class_exists($baoName)) {
1984 $daoName = $baoName;
1985 }
1986
1987 for ($i = 0; $i < $numObjects; ++$i) {
1988
1989 ++$counter;
1990 /** @var CRM_Core_DAO $object */
1991 $object = new $daoName();
1992
1993 $fields = $object->fields();
1994 foreach ($fields as $fieldName => $fieldDef) {
1995 $dbName = $fieldDef['name'];
1996 $FKClassName = CRM_Utils_Array::value('FKClassName', $fieldDef);
1997 $required = CRM_Utils_Array::value('required', $fieldDef);
1998
1999 if (CRM_Utils_Array::value($dbName, $params) !== NULL && !is_array($params[$dbName])) {
2000 $object->$dbName = $params[$dbName];
2001 }
2002
2003 elseif ($dbName != 'id') {
2004 if ($FKClassName != NULL) {
2005 $object->assignTestFK($fieldName, $fieldDef, $params);
2006 continue;
2007 }
2008 else {
2009 $object->assignTestValue($fieldName, $fieldDef, $counter);
2010 }
2011 }
2012 }
2013
2014 $object->save();
2015
2016 if (!$createOnly) {
2017 $objects[$i] = $object;
2018 }
2019 else {
2020 unset($object);
2021 }
2022 }
2023
2024 if ($createOnly) {
2025 return NULL;
2026 }
2027 elseif ($numObjects == 1) {
2028 return $objects[0];
2029 }
2030 else {
2031 return $objects;
2032 }
2033 }
2034
2035 /**
2036 * Deletes the this object plus any dependent objects that are associated with it.
2037 * ONLY USE FOR TESTING
2038 *
2039 * @param string $daoName
2040 * @param array $params
2041 */
2042 public static function deleteTestObjects($daoName, $params = []) {
2043 //this is a test function also backtrace is set for the test suite it sometimes unsets itself
2044 // so we re-set here in case
2045 $config = CRM_Core_Config::singleton();
2046 $config->backtrace = TRUE;
2047
2048 $object = new $daoName();
2049 $object->id = CRM_Utils_Array::value('id', $params);
2050
2051 // array(array(0 => $daoName, 1 => $daoParams))
2052 $deletions = [];
2053 if ($object->find(TRUE)) {
2054
2055 $fields = $object->fields();
2056 foreach ($fields as $name => $value) {
2057
2058 $dbName = $value['name'];
2059
2060 $FKClassName = CRM_Utils_Array::value('FKClassName', $value);
2061 $required = CRM_Utils_Array::value('required', $value);
2062 if ($FKClassName != NULL
2063 && $object->$dbName
2064 && !in_array($FKClassName, CRM_Core_DAO::$_testEntitiesToSkip)
2065 && ($required || $dbName == 'contact_id')
2066 //I'm a bit stuck on this one - we might need to change the singleValueAlter so that the entities don't share a contact
2067 // to make this test process pass - line below makes pass for now
2068 && $dbName != 'member_of_contact_id'
2069 ) {
2070 // x
2071 $deletions[] = [$FKClassName, ['id' => $object->$dbName]];
2072 }
2073 }
2074 }
2075
2076 $object->delete();
2077
2078 foreach ($deletions as $deletion) {
2079 CRM_Core_DAO::deleteTestObjects($deletion[0], $deletion[1]);
2080 }
2081 }
2082
2083 /**
2084 * Set defaults when creating new entity.
2085 * (don't call this set defaults as already in use with different signature in some places)
2086 *
2087 * @param array $params
2088 * @param $defaults
2089 */
2090 public static function setCreateDefaults(&$params, $defaults) {
2091 if (!empty($params['id'])) {
2092 return;
2093 }
2094 foreach ($defaults as $key => $value) {
2095 if (!array_key_exists($key, $params) || $params[$key] === NULL) {
2096 $params[$key] = $value;
2097 }
2098 }
2099 }
2100
2101 /**
2102 * @param string $prefix
2103 * @param bool $addRandomString
2104 * @param null $string
2105 *
2106 * @return string
2107 * @deprecated
2108 * @see CRM_Utils_SQL_TempTable
2109 */
2110 public static function createTempTableName($prefix = 'civicrm', $addRandomString = TRUE, $string = NULL) {
2111 $tableName = $prefix . "_temp";
2112
2113 if ($addRandomString) {
2114 if ($string) {
2115 $tableName .= "_" . $string;
2116 }
2117 else {
2118 $tableName .= "_" . md5(uniqid('', TRUE));
2119 }
2120 }
2121 return $tableName;
2122 }
2123
2124 /**
2125 * @param bool $view
2126 * @param bool $trigger
2127 *
2128 * @return bool
2129 */
2130 public static function checkTriggerViewPermission($view = TRUE, $trigger = TRUE) {
2131 if (\Civi::settings()->get('logging_no_trigger_permission')) {
2132 return TRUE;
2133 }
2134 // test for create view and trigger permissions and if allowed, add the option to go multilingual
2135 // and logging
2136 // I'm not sure why we use the getStaticProperty for an error, rather than checking for DB_Error
2137 CRM_Core_TemporaryErrorScope::ignoreException();
2138 $dao = new CRM_Core_DAO();
2139 if ($view) {
2140 $result = $dao->query('CREATE OR REPLACE VIEW civicrm_domain_view AS SELECT * FROM civicrm_domain');
2141 if (PEAR::getStaticProperty('DB_DataObject', 'lastError') || is_a($result, 'DB_Error')) {
2142 return FALSE;
2143 }
2144 }
2145
2146 if ($trigger) {
2147 $result = $dao->query('CREATE TRIGGER civicrm_domain_trigger BEFORE INSERT ON civicrm_domain FOR EACH ROW BEGIN END');
2148 if (PEAR::getStaticProperty('DB_DataObject', 'lastError') || is_a($result, 'DB_Error')) {
2149 if ($view) {
2150 $dao->query('DROP VIEW IF EXISTS civicrm_domain_view');
2151 }
2152 return FALSE;
2153 }
2154
2155 $dao->query('DROP TRIGGER IF EXISTS civicrm_domain_trigger');
2156 if (PEAR::getStaticProperty('DB_DataObject', 'lastError')) {
2157 if ($view) {
2158 $dao->query('DROP VIEW IF EXISTS civicrm_domain_view');
2159 }
2160 return FALSE;
2161 }
2162 }
2163
2164 if ($view) {
2165 $dao->query('DROP VIEW IF EXISTS civicrm_domain_view');
2166 if (PEAR::getStaticProperty('DB_DataObject', 'lastError')) {
2167 return FALSE;
2168 }
2169 }
2170
2171 return TRUE;
2172 }
2173
2174 /**
2175 * @param null $message
2176 * @param bool $printDAO
2177 */
2178 public static function debugPrint($message = NULL, $printDAO = TRUE) {
2179 CRM_Utils_System::xMemory("{$message}: ");
2180
2181 if ($printDAO) {
2182 global $_DB_DATAOBJECT;
2183 $q = [];
2184 foreach (array_keys($_DB_DATAOBJECT['RESULTS']) as $id) {
2185 $q[] = $_DB_DATAOBJECT['RESULTS'][$id]->query;
2186 }
2187 CRM_Core_Error::debug('_DB_DATAOBJECT', $q);
2188 }
2189 }
2190
2191 /**
2192 * Build a list of triggers via hook and add them to (err, reconcile them
2193 * with) the database.
2194 *
2195 * @param string $tableName
2196 * the specific table requiring a rebuild; or NULL to rebuild all tables.
2197 * @param bool $force
2198 * @deprecated
2199 *
2200 * @see CRM-9716
2201 */
2202 public static function triggerRebuild($tableName = NULL, $force = FALSE) {
2203 Civi::service('sql_triggers')->rebuild($tableName, $force);
2204 }
2205
2206 /**
2207 * Because sql functions are sometimes lost, esp during db migration, we check here to avoid numerous support requests
2208 * @see http://issues.civicrm.org/jira/browse/CRM-13822
2209 * TODO: Alternative solutions might be
2210 * * Stop using functions and find another way to strip numeric characters from phones
2211 * * Give better error messages (currently a missing fn fatals with "unknown error")
2212 */
2213 public static function checkSqlFunctionsExist() {
2214 if (!self::$_checkedSqlFunctionsExist) {
2215 self::$_checkedSqlFunctionsExist = TRUE;
2216 $dao = CRM_Core_DAO::executeQuery("SHOW function status WHERE db = database() AND name = 'civicrm_strip_non_numeric'");
2217 if (!$dao->fetch()) {
2218 self::triggerRebuild();
2219 }
2220 }
2221 }
2222
2223 /**
2224 * Wrapper function to drop triggers.
2225 *
2226 * @param string $tableName
2227 * the specific table requiring a rebuild; or NULL to rebuild all tables.
2228 * @deprecated
2229 */
2230 public static function dropTriggers($tableName = NULL) {
2231 Civi::service('sql_triggers')->dropTriggers($tableName);
2232 }
2233
2234 /**
2235 * @param array $info
2236 * per hook_civicrm_triggerInfo.
2237 * @param string $onlyTableName
2238 * the specific table requiring a rebuild; or NULL to rebuild all tables.
2239 * @deprecated
2240 */
2241 public static function createTriggers(&$info, $onlyTableName = NULL) {
2242 Civi::service('sql_triggers')->createTriggers($info, $onlyTableName);
2243 }
2244
2245 /**
2246 * Given a list of fields, create a list of references.
2247 *
2248 * @param string $className
2249 * BAO/DAO class name.
2250 * @return array<CRM_Core_Reference_Interface>
2251 */
2252 public static function createReferenceColumns($className) {
2253 $result = [];
2254 $fields = $className::fields();
2255 foreach ($fields as $field) {
2256 if (isset($field['pseudoconstant'], $field['pseudoconstant']['optionGroupName'])) {
2257 $result[] = new CRM_Core_Reference_OptionValue(
2258 $className::getTableName(),
2259 $field['name'],
2260 'civicrm_option_value',
2261 CRM_Utils_Array::value('keyColumn', $field['pseudoconstant'], 'value'),
2262 $field['pseudoconstant']['optionGroupName']
2263 );
2264 }
2265 }
2266 return $result;
2267 }
2268
2269 /**
2270 * Find all records which refer to this entity.
2271 *
2272 * @return array
2273 * Array of objects referencing this
2274 */
2275 public function findReferences() {
2276 $links = self::getReferencesToTable(static::getTableName());
2277
2278 $occurrences = [];
2279 foreach ($links as $refSpec) {
2280 /** @var $refSpec CRM_Core_Reference_Interface */
2281 $daoName = CRM_Core_DAO_AllCoreTables::getClassForTable($refSpec->getReferenceTable());
2282 $result = $refSpec->findReferences($this);
2283 if ($result) {
2284 while ($result->fetch()) {
2285 $obj = new $daoName();
2286 $obj->id = $result->id;
2287 $occurrences[] = $obj;
2288 }
2289 }
2290 }
2291
2292 return $occurrences;
2293 }
2294
2295 /**
2296 * @return array
2297 * each item has keys:
2298 * - name: string
2299 * - type: string
2300 * - count: int
2301 * - table: string|null SQL table name
2302 * - key: string|null SQL column name
2303 */
2304 public function getReferenceCounts() {
2305 $links = self::getReferencesToTable(static::getTableName());
2306
2307 $counts = [];
2308 foreach ($links as $refSpec) {
2309 /** @var $refSpec CRM_Core_Reference_Interface */
2310 $count = $refSpec->getReferenceCount($this);
2311 if ($count['count'] != 0) {
2312 $counts[] = $count;
2313 }
2314 }
2315
2316 foreach (CRM_Core_Component::getEnabledComponents() as $component) {
2317 /** @var $component CRM_Core_Component_Info */
2318 $counts = array_merge($counts, $component->getReferenceCounts($this));
2319 }
2320 CRM_Utils_Hook::referenceCounts($this, $counts);
2321
2322 return $counts;
2323 }
2324
2325 /**
2326 * List all tables which have hard foreign keys to this table.
2327 *
2328 * For now, this returns a description of every entity_id/entity_table
2329 * reference.
2330 * TODO: filter dynamic entity references on the $tableName, based on
2331 * schema metadata in dynamicForeignKey which enumerates a restricted
2332 * set of possible entity_table's.
2333 *
2334 * @param string $tableName
2335 * Table referred to.
2336 *
2337 * @return array
2338 * structure of table and column, listing every table with a
2339 * foreign key reference to $tableName, and the column where the key appears.
2340 */
2341 public static function getReferencesToTable($tableName) {
2342 $refsFound = [];
2343 foreach (CRM_Core_DAO_AllCoreTables::getClasses() as $daoClassName) {
2344 $links = $daoClassName::getReferenceColumns();
2345 $daoTableName = $daoClassName::getTableName();
2346
2347 foreach ($links as $refSpec) {
2348 /** @var $refSpec CRM_Core_Reference_Interface */
2349 if ($refSpec->matchesTargetTable($tableName)) {
2350 $refsFound[] = $refSpec;
2351 }
2352 }
2353 }
2354 return $refsFound;
2355 }
2356
2357 /**
2358 * Get all references to contact table.
2359 *
2360 * This includes core tables, custom group tables, tables added by the merge
2361 * hook and the entity_tag table.
2362 *
2363 * Refer to CRM-17454 for information on the danger of querying the information
2364 * schema to derive this.
2365 */
2366 public static function getReferencesToContactTable() {
2367 if (isset(\Civi::$statics[__CLASS__]) && isset(\Civi::$statics[__CLASS__]['contact_references'])) {
2368 return \Civi::$statics[__CLASS__]['contact_references'];
2369 }
2370 $contactReferences = [];
2371 $coreReferences = CRM_Core_DAO::getReferencesToTable('civicrm_contact');
2372 foreach ($coreReferences as $coreReference) {
2373 if (!is_a($coreReference, 'CRM_Core_Reference_Dynamic')) {
2374 $contactReferences[$coreReference->getReferenceTable()][] = $coreReference->getReferenceKey();
2375 }
2376 }
2377 self::appendCustomTablesExtendingContacts($contactReferences);
2378
2379 // FixME for time being adding below line statically as no Foreign key constraint defined for table 'civicrm_entity_tag'
2380 $contactReferences['civicrm_entity_tag'][] = 'entity_id';
2381 \Civi::$statics[__CLASS__]['contact_references'] = $contactReferences;
2382 return \Civi::$statics[__CLASS__]['contact_references'];
2383 }
2384
2385 /**
2386 * Add custom tables that extend contacts to the list of contact references.
2387 *
2388 * CRM_Core_BAO_CustomGroup::getAllCustomGroupsByBaseEntity seems like a safe-ish
2389 * function to be sure all are retrieved & we don't miss subtypes or inactive or multiples
2390 * - the down side is it is not cached.
2391 *
2392 * Further changes should be include tests in the CRM_Core_MergerTest class
2393 * to ensure that disabled, subtype, multiple etc groups are still captured.
2394 *
2395 * @param array $cidRefs
2396 */
2397 public static function appendCustomTablesExtendingContacts(&$cidRefs) {
2398 $customValueTables = CRM_Core_BAO_CustomGroup::getAllCustomGroupsByBaseEntity('Contact');
2399 $customValueTables->find();
2400 while ($customValueTables->fetch()) {
2401 $cidRefs[$customValueTables->table_name] = ['entity_id'];
2402 }
2403 }
2404
2405 /**
2406 * Lookup the value of a MySQL global configuration variable.
2407 *
2408 * @param string $name
2409 * E.g. "thread_stack".
2410 * @param mixed $default
2411 * @return mixed
2412 */
2413 public static function getGlobalSetting($name, $default = NULL) {
2414 // Alternatively, SELECT @@GLOBAL.thread_stack, but
2415 // that has been reported to fail under MySQL 5.0 for OS X
2416 $escapedName = self::escapeString($name);
2417 $dao = CRM_Core_DAO::executeQuery("SHOW VARIABLES LIKE '$escapedName'");
2418 if ($dao->fetch()) {
2419 return $dao->Value;
2420 }
2421 else {
2422 return $default;
2423 }
2424 }
2425
2426 /**
2427 * Update the fields array to also hold keys for pseudoconstant fields that relate to contained fields.
2428 *
2429 * This is relevant where we want to offer both the ID field and the label field
2430 * as an option, e.g. search builder.
2431 *
2432 * It is currently limited for optionGroupName & id+ name+ FK combos for purposes keeping the scope of the
2433 * change small, but is appropriate for other sorts of pseudoconstants.
2434 *
2435 * @param array $fields
2436 */
2437 public static function appendPseudoConstantsToFields(&$fields) {
2438 foreach ($fields as $field) {
2439 if (!empty($field['pseudoconstant'])) {
2440 $pseudoConstant = $field['pseudoconstant'];
2441 if (!empty($pseudoConstant['optionGroupName'])) {
2442 $fields[$pseudoConstant['optionGroupName']] = [
2443 'title' => CRM_Core_BAO_OptionGroup::getTitleByName($pseudoConstant['optionGroupName']),
2444 'name' => $pseudoConstant['optionGroupName'],
2445 'data_type' => CRM_Utils_Type::T_STRING,
2446 'is_pseudofield_for' => $field['name'],
2447 ];
2448 }
2449 // We restrict to id + name + FK as we are extending this a bit, but cautiously.
2450 elseif (
2451 !empty($field['FKClassName'])
2452 && CRM_Utils_Array::value('keyColumn', $pseudoConstant) === 'id'
2453 && CRM_Utils_Array::value('labelColumn', $pseudoConstant) === 'name'
2454 ) {
2455 $pseudoFieldName = str_replace('_' . $pseudoConstant['keyColumn'], '', $field['name']);
2456 // This if is just an extra caution when adding change.
2457 if (!isset($fields[$pseudoFieldName])) {
2458 $daoName = $field['FKClassName'];
2459 $fkFields = $daoName::fields();
2460 foreach ($fkFields as $fkField) {
2461 if ($fkField['name'] === $pseudoConstant['labelColumn']) {
2462 $fields[$pseudoFieldName] = [
2463 'name' => $pseudoFieldName,
2464 'is_pseudofield_for' => $field['name'],
2465 'title' => $fkField['title'],
2466 'data_type' => $fkField['type'],
2467 'where' => $field['where'],
2468 ];
2469 }
2470 }
2471 }
2472 }
2473 }
2474 }
2475 }
2476
2477 /**
2478 * Get options for the called BAO object's field.
2479 *
2480 * This function can be overridden by each BAO to add more logic related to context.
2481 * The overriding function will generally call the lower-level CRM_Core_PseudoConstant::get
2482 *
2483 * @param string $fieldName
2484 * @param string $context
2485 * @see CRM_Core_DAO::buildOptionsContext
2486 * @param array $props
2487 * whatever is known about this bao object.
2488 *
2489 * @return array|bool
2490 */
2491 public static function buildOptions($fieldName, $context = NULL, $props = []) {
2492 // If a given bao does not override this function
2493 $baoName = get_called_class();
2494 return CRM_Core_PseudoConstant::get($baoName, $fieldName, $props, $context);
2495 }
2496
2497 /**
2498 * Populate option labels for this object's fields.
2499 *
2500 * @throws exception if called directly on the base class
2501 */
2502 public function getOptionLabels() {
2503 $fields = $this->fields();
2504 if ($fields === NULL) {
2505 throw new Exception('Cannot call getOptionLabels on CRM_Core_DAO');
2506 }
2507 foreach ($fields as $field) {
2508 $name = CRM_Utils_Array::value('name', $field);
2509 if ($name && isset($this->$name)) {
2510 $label = CRM_Core_PseudoConstant::getLabel(get_class($this), $name, $this->$name);
2511 if ($label !== FALSE) {
2512 // Append 'label' onto the field name
2513 $labelName = $name . '_label';
2514 $this->$labelName = $label;
2515 }
2516 }
2517 }
2518 }
2519
2520 /**
2521 * Provides documentation and validation for the buildOptions $context param
2522 *
2523 * @param string $context
2524 *
2525 * @throws Exception
2526 * @return array
2527 */
2528 public static function buildOptionsContext($context = NULL) {
2529 $contexts = [
2530 'get' => "get: all options are returned, even if they are disabled; labels are translated.",
2531 'create' => "create: options are filtered appropriately for the object being created/updated; labels are translated.",
2532 'search' => "search: searchable options are returned; labels are translated.",
2533 'validate' => "validate: all options are returned, even if they are disabled; machine names are used in place of labels.",
2534 'abbreviate' => "abbreviate: enabled options are returned; labels are replaced with abbreviations.",
2535 'match' => "match: enabled options are returned using machine names as keys; labels are translated.",
2536 ];
2537 // Validation: enforce uniformity of this param
2538 if ($context !== NULL && !isset($contexts[$context])) {
2539 throw new Exception("'$context' is not a valid context for buildOptions.");
2540 }
2541 return $contexts;
2542 }
2543
2544 /**
2545 * @param string $fieldName
2546 * @return bool|array
2547 */
2548 public function getFieldSpec($fieldName) {
2549 $fields = $this->fields();
2550 $fieldKeys = $this->fieldKeys();
2551
2552 // Support "unique names" as well as sql names
2553 $fieldKey = $fieldName;
2554 if (empty($fields[$fieldKey])) {
2555 $fieldKey = CRM_Utils_Array::value($fieldName, $fieldKeys);
2556 }
2557 // If neither worked then this field doesn't exist. Return false.
2558 if (empty($fields[$fieldKey])) {
2559 return FALSE;
2560 }
2561 return $fields[$fieldKey];
2562 }
2563
2564 /**
2565 * Get SQL where clause for SQL filter syntax input parameters.
2566 *
2567 * SQL version of api function to assign filters to the DAO based on the syntax
2568 * $field => array('IN' => array(4,6,9))
2569 * OR
2570 * $field => array('LIKE' => array('%me%))
2571 * etc
2572 *
2573 * @param string $fieldName
2574 * Name of fields.
2575 * @param array $filter
2576 * filter to be applied indexed by operator.
2577 * @param string $type
2578 * type of field (not actually used - nor in api @todo ).
2579 * @param string $alias
2580 * alternative field name ('as') @todo- not actually used.
2581 * @param bool $returnSanitisedArray
2582 * Return a sanitised array instead of a clause.
2583 * this is primarily so we can add filters @ the api level to the Query object based fields
2584 *
2585 * @throws Exception
2586 *
2587 * @return NULL|string|array
2588 * a string is returned if $returnSanitisedArray is not set, otherwise and Array or NULL
2589 * depending on whether it is supported as yet
2590 */
2591 public static function createSQLFilter($fieldName, $filter, $type = NULL, $alias = NULL, $returnSanitisedArray = FALSE) {
2592 foreach ($filter as $operator => $criteria) {
2593 if (in_array($operator, self::acceptedSQLOperators(), TRUE)) {
2594 switch ($operator) {
2595 // unary operators
2596 case 'IS NULL':
2597 case 'IS NOT NULL':
2598 if (!$returnSanitisedArray) {
2599 return (sprintf('%s %s', $fieldName, $operator));
2600 }
2601 else {
2602 return (sprintf('%s %s ', $fieldName, $operator));
2603 }
2604 break;
2605
2606 // ternary operators
2607 case 'BETWEEN':
2608 case 'NOT BETWEEN':
2609 if ((empty($criteria[0]) && !in_array($criteria[0], ['0', 0]))|| (empty($criteria[1]) && !in_array($criteria[1], ['0', 0]))) {
2610 throw new Exception("invalid criteria for $operator");
2611 }
2612 if (!$returnSanitisedArray) {
2613 return (sprintf('%s ' . $operator . ' "%s" AND "%s"', $fieldName, CRM_Core_DAO::escapeString($criteria[0]), CRM_Core_DAO::escapeString($criteria[1])));
2614 }
2615 else {
2616 // not yet implemented (tests required to implement)
2617 return NULL;
2618 }
2619 break;
2620
2621 // n-ary operators
2622 case 'IN':
2623 case 'NOT IN':
2624 if (empty($criteria)) {
2625 throw new Exception("invalid criteria for $operator");
2626 }
2627 $escapedCriteria = array_map([
2628 'CRM_Core_DAO',
2629 'escapeString',
2630 ], $criteria);
2631 if (!$returnSanitisedArray) {
2632 return (sprintf('%s %s ("%s")', $fieldName, $operator, implode('", "', $escapedCriteria)));
2633 }
2634 return $escapedCriteria;
2635
2636 // binary operators
2637
2638 default:
2639 if (!$returnSanitisedArray) {
2640 return (sprintf('%s %s "%s"', $fieldName, $operator, CRM_Core_DAO::escapeString($criteria)));
2641 }
2642 else {
2643 // not yet implemented (tests required to implement)
2644 return NULL;
2645 }
2646 }
2647 }
2648 }
2649 }
2650
2651 /**
2652 * @see http://issues.civicrm.org/jira/browse/CRM-9150
2653 * support for other syntaxes is discussed in ticket but being put off for now
2654 * @return array
2655 */
2656 public static function acceptedSQLOperators() {
2657 return [
2658 '=',
2659 '<=',
2660 '>=',
2661 '>',
2662 '<',
2663 'LIKE',
2664 "<>",
2665 "!=",
2666 "NOT LIKE",
2667 'IN',
2668 'NOT IN',
2669 'BETWEEN',
2670 'NOT BETWEEN',
2671 'IS NOT NULL',
2672 'IS NULL',
2673 ];
2674 }
2675
2676 /**
2677 * SQL has a limit of 64 characters on various names:
2678 * table name, trigger name, column name ...
2679 *
2680 * For custom groups and fields we generated names from user entered input
2681 * which can be longer than this length, this function helps with creating
2682 * strings that meet various criteria.
2683 *
2684 * @param string $string
2685 * The string to be shortened.
2686 * @param int $length
2687 * The max length of the string.
2688 *
2689 * @param bool $makeRandom
2690 *
2691 * @return string
2692 */
2693 public static function shortenSQLName($string, $length = 60, $makeRandom = FALSE) {
2694 // early return for strings that meet the requirements
2695 if (strlen($string) <= $length) {
2696 return $string;
2697 }
2698
2699 // easy return for calls that dont need a randomized uniq string
2700 if (!$makeRandom) {
2701 return substr($string, 0, $length);
2702 }
2703
2704 // the string is longer than the length and we need a uniq string
2705 // for the same tablename we need the same uniq string every time
2706 // hence we use md5 on the string, which is not random
2707 // we'll append 8 characters to the end of the tableName
2708 $md5string = substr(md5($string), 0, 8);
2709 return substr($string, 0, $length - 8) . "_{$md5string}";
2710 }
2711
2712 /**
2713 * https://issues.civicrm.org/jira/browse/CRM-17748
2714 * Sets the internal options to be used on a query
2715 *
2716 * @param array $options
2717 *
2718 */
2719 public function setOptions($options) {
2720 if (is_array($options)) {
2721 $this->_options = $options;
2722 }
2723 }
2724
2725 /**
2726 * https://issues.civicrm.org/jira/browse/CRM-17748
2727 * wrapper to pass internal DAO options down to DB_mysql/DB_Common level
2728 *
2729 * @param array $options
2730 *
2731 */
2732 protected function _setDBOptions($options) {
2733 global $_DB_DATAOBJECT;
2734
2735 if (is_array($options) && count($options)) {
2736 $conn = &$_DB_DATAOBJECT['CONNECTIONS'][$this->_database_dsn_md5];
2737 foreach ($options as $option_name => $option_value) {
2738 $conn->setOption($option_name, $option_value);
2739 }
2740 }
2741 }
2742
2743 /**
2744 * @deprecated
2745 * @param array $params
2746 */
2747 public function setApiFilter(&$params) {
2748 }
2749
2750 /**
2751 * Generates acl clauses suitable for adding to WHERE or ON when doing an api.get for this entity
2752 *
2753 * Return format is in the form of fieldname => clauses starting with an operator. e.g.:
2754 * @code
2755 * array(
2756 * 'location_type_id' => array('IS NOT NULL', 'IN (1,2,3)')
2757 * )
2758 * @endcode
2759 *
2760 * Note that all array keys must be actual field names in this entity. Use subqueries to filter on other tables e.g. custom values.
2761 *
2762 * @return array
2763 */
2764 public function addSelectWhereClause() {
2765 $clauses = [];
2766 $fields = $this->fields();
2767 foreach ($fields as $fieldName => $field) {
2768 // Clause for contact-related entities like Email, Relationship, etc.
2769 if (strpos($fieldName, 'contact_id') === 0 && CRM_Utils_Array::value('FKClassName', $field) == 'CRM_Contact_DAO_Contact') {
2770 $clauses[$fieldName] = CRM_Utils_SQL::mergeSubquery('Contact');
2771 }
2772 // Clause for an entity_table/entity_id combo
2773 if ($fieldName == 'entity_id' && isset($fields['entity_table'])) {
2774 $relatedClauses = [];
2775 $relatedEntities = $this->buildOptions('entity_table', 'get');
2776 foreach ((array) $relatedEntities as $table => $ent) {
2777 if (!empty($ent)) {
2778 $ent = CRM_Core_DAO_AllCoreTables::getBriefName(CRM_Core_DAO_AllCoreTables::getClassForTable($table));
2779 $subquery = CRM_Utils_SQL::mergeSubquery($ent);
2780 if ($subquery) {
2781 $relatedClauses[] = "(entity_table = '$table' AND entity_id " . implode(' AND entity_id ', $subquery) . ")";
2782 }
2783 else {
2784 $relatedClauses[] = "(entity_table = '$table')";
2785 }
2786 }
2787 }
2788 if ($relatedClauses) {
2789 $clauses['id'] = 'IN (SELECT id FROM `' . $this->tableName() . '` WHERE (' . implode(') OR (', $relatedClauses) . '))';
2790 }
2791 }
2792 }
2793 CRM_Utils_Hook::selectWhereClause($this, $clauses);
2794 return $clauses;
2795 }
2796
2797 /**
2798 * This returns the final permissioned query string for this entity
2799 *
2800 * With acls from related entities + additional clauses from hook_civicrm_selectWhereClause
2801 *
2802 * @param string $tableAlias
2803 * @return array
2804 */
2805 public static function getSelectWhereClause($tableAlias = NULL) {
2806 $bao = new static();
2807 if ($tableAlias === NULL) {
2808 $tableAlias = $bao->tableName();
2809 }
2810 $clauses = [];
2811 foreach ((array) $bao->addSelectWhereClause() as $field => $vals) {
2812 $clauses[$field] = NULL;
2813 if ($vals) {
2814 $clauses[$field] = "(`$tableAlias`.`$field` IS NULL OR (`$tableAlias`.`$field` " . implode(" AND `$tableAlias`.`$field` ", (array) $vals) . '))';
2815 }
2816 }
2817 return $clauses;
2818 }
2819
2820 /**
2821 * ensure database name is 'safe', i.e. only contains word characters (includes underscores)
2822 * and dashes, and contains at least one [a-z] case insenstive.
2823 *
2824 * @param $database
2825 *
2826 * @return bool
2827 */
2828 public static function requireSafeDBName($database) {
2829 $matches = [];
2830 preg_match(
2831 "/^[\w\-]*[a-z]+[\w\-]*$/i",
2832 $database,
2833 $matches
2834 );
2835 if (empty($matches)) {
2836 return FALSE;
2837 }
2838 return TRUE;
2839 }
2840
2841 /**
2842 * Transform an array to a serialized string for database storage.
2843 *
2844 * @param array|null $value
2845 * @param int $serializationType
2846 * @return string|null
2847 *
2848 * @throws \Exception
2849 */
2850 public static function serializeField($value, $serializationType) {
2851 if ($value === NULL) {
2852 return NULL;
2853 }
2854 switch ($serializationType) {
2855 case self::SERIALIZE_SEPARATOR_BOOKEND:
2856 return $value === [] ? '' : CRM_Utils_Array::implodePadded($value);
2857
2858 case self::SERIALIZE_SEPARATOR_TRIMMED:
2859 return is_array($value) ? implode(self::VALUE_SEPARATOR, $value) : $value;
2860
2861 case self::SERIALIZE_JSON:
2862 return is_array($value) ? json_encode($value) : $value;
2863
2864 case self::SERIALIZE_PHP:
2865 return is_array($value) ? serialize($value) : $value;
2866
2867 case self::SERIALIZE_COMMA:
2868 return is_array($value) ? implode(',', $value) : $value;
2869
2870 default:
2871 throw new Exception('Unknown serialization method for field.');
2872 }
2873 }
2874
2875 /**
2876 * Transform a serialized string from the database into an array.
2877 *
2878 * @param string|null $value
2879 * @param $serializationType
2880 *
2881 * @return array|null
2882 * @throws CRM_Core_Exception
2883 */
2884 public static function unSerializeField($value, $serializationType) {
2885 if ($value === NULL) {
2886 return NULL;
2887 }
2888 if ($value === '') {
2889 return [];
2890 }
2891 switch ($serializationType) {
2892 case self::SERIALIZE_SEPARATOR_BOOKEND:
2893 return (array) CRM_Utils_Array::explodePadded($value);
2894
2895 case self::SERIALIZE_SEPARATOR_TRIMMED:
2896 return explode(self::VALUE_SEPARATOR, trim($value));
2897
2898 case self::SERIALIZE_JSON:
2899 return strlen($value) ? json_decode($value, TRUE) : [];
2900
2901 case self::SERIALIZE_PHP:
2902 return strlen($value) ? unserialize($value, ['allowed_classes' => FALSE]) : [];
2903
2904 case self::SERIALIZE_COMMA:
2905 return explode(',', trim(str_replace(', ', '', $value)));
2906
2907 default:
2908 throw new CRM_Core_Exception('Unknown serialization method for field.');
2909 }
2910 }
2911
2912 /**
2913 * @return array
2914 */
2915 public static function getEntityRefFilters() {
2916 return [];
2917 }
2918
2919 /**
2920 * Get exportable fields with pseudoconstants rendered as an extra field.
2921 *
2922 * @param string $baoClass
2923 *
2924 * @return array
2925 */
2926 public static function getExportableFieldsWithPseudoConstants($baoClass) {
2927 if (method_exists($baoClass, 'exportableFields')) {
2928 $fields = $baoClass::exportableFields();
2929 }
2930 else {
2931 $fields = $baoClass::export();
2932 }
2933 CRM_Core_DAO::appendPseudoConstantsToFields($fields);
2934 return $fields;
2935 }
2936
2937 }