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