Merge pull request #19692 from demeritcowboy/case-custom-money-5.35
[civicrm-core.git] / CRM / Core / BAO / CustomField.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 +--------------------------------------------------------------------+
e70a7fc0 10 */
6a488035
TO
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
16 */
17
18/**
19 * Business objects for managing custom data fields.
6a488035
TO
20 */
21class CRM_Core_BAO_CustomField extends CRM_Core_DAO_CustomField {
22
6a488035
TO
23 /**
24 * Array to hold (formatted) fields for import
25 *
26 * @var array
6a488035
TO
27 */
28 public static $_importFields = NULL;
29
30 /**
fe482240 31 * Build and retrieve the list of data types and descriptions.
6a488035 32 *
a6c01b45
CW
33 * @return array
34 * Data type => Description
6a488035 35 */
5d2f1ed6
CW
36 public static function dataType() {
37 return [
38 'String' => ts('Alphanumeric'),
39 'Int' => ts('Integer'),
40 'Float' => ts('Number'),
41 'Money' => ts('Money'),
42 'Memo' => ts('Note'),
43 'Date' => ts('Date'),
44 'Boolean' => ts('Yes or No'),
45 'StateProvince' => ts('State/Province'),
46 'Country' => ts('Country'),
47 'File' => ts('File'),
48 'Link' => ts('Link'),
49 'ContactReference' => ts('Contact Reference'),
50 ];
6a488035
TO
51 }
52
89d4a22f 53 /**
54 * Build the map of custom field's data types and there respective Util type
55 *
56 * @return array
57 * Data data-type => CRM_Utils_Type
58 */
59 public static function dataToType() {
60 return [
61 'String' => CRM_Utils_Type::T_STRING,
62 'Int' => CRM_Utils_Type::T_INT,
8ad22b15 63 'Money' => CRM_Utils_Type::T_MONEY,
64 'Memo' => CRM_Utils_Type::T_LONGTEXT,
89d4a22f 65 'Float' => CRM_Utils_Type::T_FLOAT,
89d4a22f 66 'Date' => CRM_Utils_Type::T_DATE,
8ad22b15 67 'DateTime' => CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME,
89d4a22f 68 'Boolean' => CRM_Utils_Type::T_BOOLEAN,
69 'StateProvince' => CRM_Utils_Type::T_INT,
8ad22b15 70 'File' => CRM_Utils_Type::T_STRING,
89d4a22f 71 'Link' => CRM_Utils_Type::T_STRING,
72 'ContactReference' => CRM_Utils_Type::T_INT,
8ad22b15 73 'Country' => CRM_Utils_Type::T_INT,
89d4a22f 74 ];
75 }
76
6a488035 77 /**
fe482240 78 * Takes an associative array and creates a custom field object.
6a488035
TO
79 *
80 * This function is invoked from within the web form layer and also from the api layer
81 *
6a0b768e
TO
82 * @param array $params
83 * (reference) an assoc array of name/value pairs.
6a488035 84 *
16b10e64 85 * @return CRM_Core_DAO_CustomField
6a488035 86 */
f557467c 87 public static function create($params) {
051f2455 88 $changeSerialize = self::getChangeSerialize($params);
f45a42ba 89 $customField = self::createCustomFieldRecord($params);
051f2455
CW
90 // When deserializing a field, the update needs to run before the schema change
91 if ($changeSerialize === 0) {
92 CRM_Core_DAO::singleValueQuery(self::getAlterSerializeSQL($customField));
93 }
e43db21d 94 $op = empty($params['id']) ? 'add' : 'modify';
ead0c08f 95 self::createField($customField, $op);
051f2455
CW
96 // When serializing a field, the update needs to run after the schema change
97 if ($changeSerialize === 1) {
98 CRM_Core_DAO::singleValueQuery(self::getAlterSerializeSQL($customField));
99 }
edd71ef9 100
e43db21d 101 CRM_Utils_Hook::post(($op === 'add' ? 'create' : 'edit'), 'CustomField', $customField->id, $customField);
54ac54a2 102
6a488035 103 CRM_Utils_System::flushCache();
58159c3b 104 // Flush caches is not aggressive about clearing the specific cache we know we want to clear
105 // so do it manually. Ideally we wouldn't need to clear others...
106 Civi::cache('metadata')->clear();
6a488035
TO
107
108 return $customField;
109 }
110
e5ce15c3 111 /**
112 * Create/ update several fields at once in a mysql efficient way.
113 *
114 * https://lab.civicrm.org/dev/core/issues/1093
115 *
116 * The intention is that apiv4 would expose any BAO with bulkSave as a new action.
117 *
118 * @param array $bulkParams
119 * Array of arrays as would be passed into create
120 * @param array $defaults
121 * Default parameters to be be merged into each of the params.
0623f992 122 *
123 * @throws \CiviCRM_API3_Exception
e5ce15c3 124 */
d3e1ba37 125 public static function bulkSave($bulkParams, $defaults = []) {
051f2455 126 $addedColumns = $sql = $customFields = $pre = $post = [];
d3e1ba37 127 foreach ($bulkParams as $index => $fieldParams) {
e5ce15c3 128 $params = array_merge($defaults, $fieldParams);
051f2455 129 $changeSerialize = self::getChangeSerialize($params);
e5ce15c3 130 $customField = self::createCustomFieldRecord($params);
051f2455
CW
131 // Serialize/deserialize sql must run after/before the table is altered
132 if ($changeSerialize === 0) {
133 $pre[] = self::getAlterSerializeSQL($customField);
134 }
135 if ($changeSerialize === 1) {
136 $post[] = self::getAlterSerializeSQL($customField);
137 }
d3e1ba37 138 $fieldSQL = self::getAlterFieldSQL($customField, empty($params['id']) ? 'add' : 'modify');
e5ce15c3 139 if (!isset($params['custom_group_id'])) {
140 $params['custom_group_id'] = civicrm_api3('CustomField', 'getvalue', ['id' => $customField->id, 'return' => 'custom_group_id']);
141 }
03e3a32e
CW
142 $tableName = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomGroup', $customField->custom_group_id, 'table_name');
143 $sql[$tableName][] = $fieldSQL;
144 $addedColumns[$tableName][] = $customField->name;
d3e1ba37 145 $customFields[$index] = $customField;
e5ce15c3 146 }
47e86ed3 147
051f2455
CW
148 foreach ($pre as $query) {
149 CRM_Core_DAO::executeQuery($query);
150 }
151
e5ce15c3 152 foreach ($sql as $tableName => $statements) {
153 // CRM-7007: do not i18n-rewrite this query
154 CRM_Core_DAO::executeQuery("ALTER TABLE $tableName " . implode(', ', $statements), [], TRUE, NULL, FALSE, FALSE);
47e86ed3
CR
155
156 if (CRM_Core_Config::singleton()->logging) {
157 $logging = new CRM_Logging_Schema();
158 $logging->fixSchemaDifferencesFor($tableName, ['ADD' => $addedColumns[$tableName]]);
159 }
160
03e3a32e 161 Civi::service('sql_triggers')->rebuild($tableName, TRUE);
e5ce15c3 162 }
051f2455
CW
163
164 foreach ($post as $query) {
165 CRM_Core_DAO::executeQuery($query);
166 }
167
e5ce15c3 168 CRM_Utils_System::flushCache();
d3e1ba37
CW
169 foreach ($customFields as $index => $customField) {
170 CRM_Utils_Hook::post(empty($bulkParams[$index]['id']) ? 'create' : 'edit', 'CustomField', $customField->id, $customField);
e5ce15c3 171 }
172 }
173
6a488035 174 /**
fe482240 175 * Fetch object based on array of properties.
6a488035 176 *
6a0b768e 177 * @param array $params
9b85cd33 178 * An assoc array of name/value pairs.
6a0b768e
TO
179 * @param array $defaults
180 * (reference ) an assoc array to hold the flattened values.
6a488035 181 *
16b10e64 182 * @return CRM_Core_DAO_CustomField
6a488035 183 */
9b85cd33 184 public static function retrieve($params, &$defaults) {
6a488035
TO
185 return CRM_Core_DAO::commonRetrieve('CRM_Core_DAO_CustomField', $params, $defaults);
186 }
187
188 /**
fe482240 189 * Update the is_active flag in the db.
6a488035 190 *
6a0b768e
TO
191 * @param int $id
192 * Id of the database record.
193 * @param bool $is_active
194 * Value we want to set the is_active field.
6a488035 195 *
8a4fede3 196 * @return bool
197 * true if we found and updated the object, else false
6a488035 198 */
00be9182 199 public static function setIsActive($id, $is_active) {
6a488035
TO
200
201 CRM_Utils_System::flushCache();
202
203 //enable-disable CustomField
204 CRM_Core_BAO_UFField::setUFField($id, $is_active);
205 return CRM_Core_DAO::setFieldValue('CRM_Core_DAO_CustomField', $id, 'is_active', $is_active);
206 }
207
208 /**
209 * Get the field title.
210 *
6a0b768e
TO
211 * @param int $id
212 * Id of field.
6a488035 213 *
a6c01b45
CW
214 * @return string
215 * name
6a488035
TO
216 */
217 public static function getTitle($id) {
218 return CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomField', $id, 'label');
219 }
220
2921fb78
CW
221 /**
222 * @param string $context
223 * @return array|bool
224 */
3b66f502 225 public function getOptions($context = NULL) {
2921fb78 226 CRM_Core_DAO::buildOptionsContext($context);
2921fb78
CW
227
228 if (!$this->id) {
229 return FALSE;
230 }
cec0bbb8 231 $cacheKey = "CRM_Core_BAO_CustomField_getOptions_{$this->id}_$context";
c67c18bb
JG
232 $cache = CRM_Utils_Cache::singleton();
233 $options = $cache->get($cacheKey);
234 if (!isset($options)) {
235 if (!$this->data_type || !$this->custom_group_id) {
236 $this->find(TRUE);
237 }
2921fb78 238
c67c18bb
JG
239 // This will hold the list of options in format key => label
240 $options = [];
6c5d3fc7 241
c67c18bb
JG
242 if (!empty($this->option_group_id)) {
243 $options = CRM_Core_OptionGroup::valuesByID(
1453c6db 244 $this->option_group_id, FALSE, FALSE, FALSE, $context == 'validate' ? 'name' : 'label', !($context == 'validate' || $context == 'get')
c67c18bb
JG
245 );
246 }
247 elseif ($this->data_type === 'StateProvince') {
248 $options = CRM_Core_PseudoConstant::stateProvince();
249 }
250 elseif ($this->data_type === 'Country') {
251 $options = $context == 'validate' ? CRM_Core_PseudoConstant::countryIsoCode() : CRM_Core_PseudoConstant::country();
252 }
253 elseif ($this->data_type === 'Boolean') {
5f627bb5 254 $options = $context == 'validate' ? [0, 1] : CRM_Core_SelectValues::boolean();
c67c18bb
JG
255 }
256 CRM_Utils_Hook::customFieldOptions($this->id, $options, FALSE);
5f627bb5 257 CRM_Utils_Hook::fieldOptions($this->getEntity(), "custom_{$this->id}", $options, ['context' => $context]);
c67c18bb 258 $cache->set($cacheKey, $options);
3b66f502 259 }
2921fb78
CW
260 return $options;
261 }
262
3221e413
CW
263 /**
264 * @inheritDoc
265 */
266 public static function buildOptions($fieldName, $context = NULL, $props = []) {
267 $options = parent::buildOptions($fieldName, $context, $props);
268 // This provides legacy support for APIv3, allowing no-longer-existent html types
269 if ($fieldName == 'html_type' && isset($props['version']) && $props['version'] == 3) {
270 $options['Multi-Select'] = 'Multi-Select';
a7bcb32d 271 $options['Select Country'] = 'Select Country';
3221e413 272 $options['Multi-Select Country'] = 'Multi-Select Country';
a7bcb32d 273 $options['Select State/Province'] = 'Select State/Province';
3221e413
CW
274 $options['Multi-Select State/Province'] = 'Multi-Select State/Province';
275 }
276 return $options;
277 }
278
6a488035
TO
279 /**
280 * Store and return an array of all active custom fields.
281 *
6a0b768e 282 * @param string $customDataType
1f61a7b1 283 * Type of Custom Data; 'ANY' is a synonym for "all contact data types".
6a0b768e
TO
284 * @param bool $showAll
285 * If true returns all fields (includes disabled fields).
286 * @param bool $inline
287 * If true returns all inline fields (includes disabled fields).
288 * @param int $customDataSubType
289 * Custom Data sub type value.
290 * @param int $customDataSubName
291 * Custom Data sub name value.
292 * @param bool $onlyParent
293 * Return only top level custom data, for eg, only Participant and ignore subname and subtype.
294 * @param bool $onlySubType
295 * Return only custom data for subtype.
296 * @param bool $checkPermission
297 * If false, do not include permissioning clause.
6a488035 298 *
a6c01b45
CW
299 * @return array
300 * an array of active custom fields.
1fbda76b 301 * @throws \CRM_Core_Exception
6a488035 302 */
f9f40af3
TO
303 public static function &getFields(
304 $customDataType = 'Individual',
305 $showAll = FALSE,
306 $inline = FALSE,
307 $customDataSubType = NULL,
308 $customDataSubName = NULL,
309 $onlyParent = FALSE,
310 $onlySubType = FALSE,
311 $checkPermission = TRUE
6a488035 312 ) {
0400dfac 313 if (empty($customDataType)) {
5f627bb5 314 $customDataType = ['Contact', 'Individual', 'Organization', 'Household'];
0400dfac 315 }
1f61a7b1 316 if ($customDataType === 'ANY') {
317 // NULL should have been respected but the line above broke that.
318 // boo for us not having enough unit tests back them.
319 $customDataType = NULL;
320 }
645a0241 321 if ($customDataType && !is_array($customDataType)) {
6a488035 322
645a0241 323 if (in_array($customDataType, CRM_Contact_BAO_ContactType::subTypes())) {
6a488035
TO
324 // This is the case when getFieldsForImport() requires fields
325 // limited strictly to a subtype.
326 $customDataSubType = $customDataType;
645a0241
TO
327 $customDataType = CRM_Contact_BAO_ContactType::getBasicType($customDataType);
328 $onlySubType = TRUE;
6a488035
TO
329 }
330
645a0241 331 if (in_array($customDataType, array_keys(CRM_Core_SelectValues::customGroupExtends()))) {
6a488035
TO
332 // this makes the method flexible to support retrieving fields
333 // for multiple extends value.
5f627bb5 334 $customDataType = [$customDataType];
6a488035
TO
335 }
336 }
337
5439e6fb 338 $customDataSubType = CRM_Utils_Array::explodePadded($customDataSubType);
6a488035
TO
339
340 if (is_array($customDataType)) {
341 $cacheKey = implode('_', $customDataType);
342 }
343 else {
344 $cacheKey = $customDataType;
345 }
346
347 $cacheKey .= !empty($customDataSubType) ? ('_' . implode('_', $customDataSubType)) : '_0';
348 $cacheKey .= $customDataSubName ? "{$customDataSubName}_" : '_0';
349 $cacheKey .= $showAll ? '_1' : '_0';
350 $cacheKey .= $inline ? '_1_' : '_0_';
351 $cacheKey .= $onlyParent ? '_1_' : '_0_';
352 $cacheKey .= $onlySubType ? '_1_' : '_0_';
d0d9e105 353 $cacheKey .= $checkPermission ? '_1_' . CRM_Core_Session::getLoggedInContactID() . '_' : '_0_0_';
f4de748f 354 $cacheKey .= '_' . CRM_Core_Config::domainID() . '_';
6a488035
TO
355
356 $cgTable = CRM_Core_DAO_CustomGroup::getTableName();
357
358 // also get the permission stuff here
359 if ($checkPermission) {
360 $permissionClause = CRM_Core_Permission::customGroupClause(CRM_Core_Permission::VIEW,
361 "{$cgTable}."
362 );
363 }
364 else {
365 $permissionClause = '(1)';
366 }
367
368 // lets md5 permission clause and take first 8 characters
369 $cacheKey .= substr(md5($permissionClause), 0, 8);
370
371 if (strlen($cacheKey) > 40) {
372 $cacheKey = md5($cacheKey);
373 }
374
375 if (!self::$_importFields ||
376 CRM_Utils_Array::value($cacheKey, self::$_importFields) === NULL
377 ) {
378 if (!self::$_importFields) {
5f627bb5 379 self::$_importFields = [];
6a488035
TO
380 }
381
382 // check if we can retrieve from database cache
9cdf85c1 383 $fields = Civi::Cache('fields')->get("custom importableFields $cacheKey");
6a488035
TO
384
385 if ($fields === NULL) {
6a488035
TO
386
387 $extends = '';
388 if (is_array($customDataType)) {
389 $value = NULL;
390 foreach ($customDataType as $dataType) {
645a0241 391 if (in_array($dataType, array_keys(CRM_Core_SelectValues::customGroupExtends()))) {
5f627bb5 392 if (in_array($dataType, ['Individual', 'Household', 'Organization'])) {
6a488035
TO
393 $val = "'" . CRM_Utils_Type::escape($dataType, 'String') . "', 'Contact' ";
394 }
395 else {
396 $val = "'" . CRM_Utils_Type::escape($dataType, 'String') . "'";
397 }
398 $value = $value ? $value . ", {$val}" : $val;
399 }
400 }
401 if ($value) {
402 $extends = "AND $cgTable.extends IN ( $value ) ";
403 }
404 }
405
4f57b83f 406 if (!empty($customDataType) && empty($extends)) {
0400dfac 407 // $customDataType specified a filter, but there is no corresponding SQL ($extends)
5f627bb5 408 self::$_importFields[$cacheKey] = [];
837afcfe
TO
409 return self::$_importFields[$cacheKey];
410 }
411
6a488035
TO
412 if ($onlyParent) {
413 $extends .= " AND $cgTable.extends_entity_column_value IS NULL AND $cgTable.extends_entity_column_id IS NULL ";
414 }
1fbda76b 415 // Temporary hack - in 5.27 a new field is added to civicrm_custom_field. There is a high
416 // risk this function is called before the upgrade page can be reached and if
417 // so it will potentially result in fatal error.
84ad04e8 418 $serializeField = CRM_Core_BAO_Domain::isDBVersionAtLeast('5.27.alpha1') ? "custom_field.serialize," : '';
6a488035 419
84ad04e8 420 $query = "SELECT custom_field.id, custom_field.label,
6a488035 421 $cgTable.title,
84ad04e8 422 custom_field.data_type,
423 custom_field.html_type,
424 custom_field.default_value,
425 custom_field.options_per_line, custom_field.text_length,
426 custom_field.custom_group_id,
427 custom_field.is_required,
428 custom_field.column_name,
429 $cgTable.extends, custom_field.is_search_range,
6a488035
TO
430 $cgTable.extends_entity_column_value,
431 $cgTable.extends_entity_column_id,
84ad04e8 432 custom_field.is_view,
433 custom_field.option_group_id,
434 custom_field.date_format,
435 custom_field.time_format,
14f42e31 436 $cgTable.is_multiple,
1fbda76b 437 $serializeField
a1120b3c 438 $cgTable.table_name,
14f42e31 439 og.name as option_group_name
84ad04e8 440 FROM civicrm_custom_field custom_field
6a488035 441 INNER JOIN $cgTable
84ad04e8 442 ON custom_field.custom_group_id = $cgTable.id
14f42e31 443 LEFT JOIN civicrm_option_group og
84ad04e8 444 ON custom_field.option_group_id = og.id
6a488035
TO
445 WHERE ( 1 ) ";
446
447 if (!$showAll) {
84ad04e8 448 $query .= " AND custom_field.is_active = 1 AND $cgTable.is_active = 1 ";
6a488035
TO
449 }
450
451 if ($inline) {
452 $query .= " AND $cgTable.style = 'Inline' ";
453 }
454
455 //get the custom fields for specific type in
456 //combination with fields those support any type.
457 if (!empty($customDataSubType)) {
5f627bb5 458 $subtypeClause = [];
6a488035 459 foreach ($customDataSubType as $subtype) {
9a760581 460 $subtype = CRM_Core_DAO::VALUE_SEPARATOR . CRM_Utils_Type::escape($subtype, 'String') . CRM_Core_DAO::VALUE_SEPARATOR;
6a488035
TO
461 $subtypeClause[] = "$cgTable.extends_entity_column_value LIKE '%{$subtype}%'";
462 }
463 if (!$onlySubType) {
464 $subtypeClause[] = "$cgTable.extends_entity_column_value IS NULL";
465 }
466 $query .= " AND ( " . implode(' OR ', $subtypeClause) . " )";
467 }
468
469 if ($customDataSubName) {
470 $query .= " AND ( $cgTable.extends_entity_column_id = $customDataSubName ) ";
471 }
472
473 // also get the permission stuff here
474 if ($checkPermission) {
475 $permissionClause = CRM_Core_Permission::customGroupClause(CRM_Core_Permission::VIEW,
476 "{$cgTable}.", TRUE
477 );
478 }
479 else {
480 $permissionClause = '(1)';
481 }
482
483 $query .= " $extends AND $permissionClause
484 ORDER BY $cgTable.weight, $cgTable.title,
84ad04e8 485 custom_field.weight, custom_field.label";
6a488035
TO
486
487 $dao = CRM_Core_DAO::executeQuery($query);
488
5f627bb5 489 $fields = [];
6a488035 490 while (($dao->fetch()) != NULL) {
cef2e96c 491 $regexp = preg_replace('/[.,;:!?]/', '', NULL);
1f61a7b1 492 $fields[$dao->id]['id'] = $dao->id;
6a488035 493 $fields[$dao->id]['label'] = $dao->label;
cef2e96c 494 // This seems broken, but not in a new way.
495 $fields[$dao->id]['headerPattern'] = '/' . preg_quote($regexp, '/') . '/';
496 // To support the consolidation of various functions & their expectations.
497 $fields[$dao->id]['title'] = $dao->label;
498 $fields[$dao->id]['custom_field_id'] = $dao->id;
6a488035
TO
499 $fields[$dao->id]['groupTitle'] = $dao->title;
500 $fields[$dao->id]['data_type'] = $dao->data_type;
cef2e96c 501 $fields[$dao->id]['name'] = 'custom_' . $dao->id;
502 $fields[$dao->id]['type'] = CRM_Utils_Array::value($dao->data_type, self::dataToType());
6a488035 503 $fields[$dao->id]['html_type'] = $dao->html_type;
a389ed51 504 $fields[$dao->id]['default_value'] = $dao->default_value;
6a488035
TO
505 $fields[$dao->id]['text_length'] = $dao->text_length;
506 $fields[$dao->id]['options_per_line'] = $dao->options_per_line;
507 $fields[$dao->id]['custom_group_id'] = $dao->custom_group_id;
508 $fields[$dao->id]['extends'] = $dao->extends;
509 $fields[$dao->id]['is_search_range'] = $dao->is_search_range;
510 $fields[$dao->id]['extends_entity_column_value'] = $dao->extends_entity_column_value;
511 $fields[$dao->id]['extends_entity_column_id'] = $dao->extends_entity_column_id;
512 $fields[$dao->id]['is_view'] = $dao->is_view;
513 $fields[$dao->id]['is_multiple'] = $dao->is_multiple;
514 $fields[$dao->id]['option_group_id'] = $dao->option_group_id;
515 $fields[$dao->id]['date_format'] = $dao->date_format;
516 $fields[$dao->id]['time_format'] = $dao->time_format;
817cf27c 517 $fields[$dao->id]['is_required'] = $dao->is_required;
a1120b3c
CW
518 $fields[$dao->id]['table_name'] = $dao->table_name;
519 $fields[$dao->id]['column_name'] = $dao->column_name;
d51a6a62 520 $fields[$dao->id]['serialize'] = $serializeField ? $dao->serialize : (int) self::isSerialized($dao);
cef2e96c 521 $fields[$dao->id]['where'] = $dao->table_name . '.' . $dao->column_name;
1f61a7b1 522 // Probably we should use a different fn to get the extends tables but this is a refactor so not changing that now.
523 $fields[$dao->id]['extends_table'] = array_key_exists($dao->extends, CRM_Core_BAO_CustomQuery::$extendsMap) ? CRM_Core_BAO_CustomQuery::$extendsMap[$dao->extends] : '';
524 if (in_array($dao->extends, CRM_Contact_BAO_ContactType::subTypes())) {
525 // if $extends is a subtype, refer contact table
526 $fields[$dao->id]['extends_table'] = 'civicrm_contact';
527 }
528 // Search table is used by query object searches..
529 $fields[$dao->id]['search_table'] = ($fields[$dao->id]['extends_table'] == 'civicrm_contact') ? 'contact_a' : $fields[$dao->id]['extends_table'];
14f42e31 530 self::getOptionsForField($fields[$dao->id], $dao->option_group_name);
6a488035
TO
531 }
532
9cdf85c1 533 Civi::cache('fields')->set("custom importableFields $cacheKey", $fields);
6a488035
TO
534 }
535 self::$_importFields[$cacheKey] = $fields;
536 }
537
538 return self::$_importFields[$cacheKey];
539 }
540
541 /**
542 * Return the field ids and names (with groups) for import purpose.
543 *
2a6da8d7 544 * @param int|string $contactType Contact type
6a0b768e
TO
545 * @param bool $showAll
546 * If true returns all fields (includes disabled fields).
547 * @param bool $onlyParent
548 * Return fields ONLY related to basic types.
549 * @param bool $search
550 * When called from search and multiple records need to be returned.
551 * @param bool $checkPermission
552 * If false, do not include permissioning clause.
2a6da8d7
EM
553 *
554 * @param bool $withMultiple
6a488035 555 *
a6c01b45 556 * @return array
6a488035 557 */
b60efd6a 558 public static function getFieldsForImport(
f9f40af3
TO
559 $contactType = 'Individual',
560 $showAll = FALSE,
561 $onlyParent = FALSE,
562 $search = FALSE,
6a488035 563 $checkPermission = TRUE,
f9f40af3 564 $withMultiple = FALSE
6a488035
TO
565 ) {
566 // Note: there are situations when we want getFieldsForImport() return fields related
567 // ONLY to basic contact types, but NOT subtypes. And thats where $onlyParent is helpful
568 $fields = &self::getFields($contactType,
569 $showAll,
570 FALSE,
571 NULL,
572 NULL,
573 $onlyParent,
574 FALSE,
575 $checkPermission
576 );
577
cef2e96c 578 $importableFields = [];
6a488035
TO
579 foreach ($fields as $id => $values) {
580 // for now we should not allow multiple fields in profile / export etc, hence unsetting
581 if (!$search &&
8cc574cf 582 (!empty($values['is_multiple']) && !$withMultiple)
6a488035
TO
583 ) {
584 continue;
585 }
b7d6b1fa 586 if (!empty($values['text_length'])) {
587 $values['maxlength'] = (int) $values['text_length'];
588 }
6a488035
TO
589
590 /* generate the key for the fields array */
591
592 $key = "custom_$id";
cef2e96c 593 $importableFields[$key] = $values;
594 $importableFields[$key]['import'] = 1;
6a488035
TO
595 }
596
597 return $importableFields;
598 }
599
600 /**
fe482240 601 * Get the field id from an import key.
6a488035 602 *
6a0b768e
TO
603 * @param string $key
604 * The key to parse.
6a488035 605 *
2a6da8d7 606 * @param bool $all
b60efd6a 607 *
72b3a70c
CW
608 * @return int|null
609 * The id (if exists)
6a488035
TO
610 */
611 public static function getKeyID($key, $all = FALSE) {
5f627bb5 612 $match = [];
6a488035
TO
613 if (preg_match('/^custom_(\d+)_?(-?\d+)?$/', $key, $match)) {
614 if (!$all) {
615 return $match[1];
616 }
617 else {
5f627bb5 618 return [
6a488035
TO
619 $match[1],
620 CRM_Utils_Array::value(2, $match),
5f627bb5 621 ];
6a488035
TO
622 }
623 }
5f627bb5 624 return $all ? [NULL, NULL] : NULL;
6a488035
TO
625 }
626
627 /**
fe482240 628 * Use the cache to get all values of a specific custom field.
6a488035 629 *
6a0b768e
TO
630 * @param int $fieldID
631 * The custom field ID.
6a488035 632 *
01057d41 633 * @return CRM_Core_BAO_CustomField
5c766a0b 634 * The field object.
ac15829d 635 * @throws CRM_Core_Exception
6a488035 636 */
00be9182 637 public static function getFieldObject($fieldID) {
01057d41 638 $field = new CRM_Core_BAO_CustomField();
6a488035
TO
639
640 // check if we can get the field values from the system cache
f9f40af3
TO
641 $cacheKey = "CRM_Core_DAO_CustomField_{$fieldID}";
642 $cache = CRM_Utils_Cache::singleton();
6a488035
TO
643 $fieldValues = $cache->get($cacheKey);
644 if (empty($fieldValues)) {
645 $field->id = $fieldID;
646 if (!$field->find(TRUE)) {
ac15829d 647 throw new CRM_Core_Exception('Cannot find Custom Field');
6a488035
TO
648 }
649
5f627bb5 650 $fieldValues = [];
6a488035
TO
651 CRM_Core_DAO::storeValues($field, $fieldValues);
652
653 $cache->set($cacheKey, $fieldValues);
654 }
655 else {
656 $field->copyValues($fieldValues);
657 }
658
659 return $field;
660 }
661
662 /**
3a7773be 663 * Add a custom field to an existing form.
6a488035 664 *
6a0b768e
TO
665 * @param CRM_Core_Form $qf
666 * Form object (reference).
667 * @param string $elementName
668 * Name of the custom field.
100fef9d 669 * @param int $fieldId
6a0b768e
TO
670 * @param bool $useRequired
671 * True if required else false.
672 * @param bool $search
673 * True if used for search else false.
674 * @param string $label
675 * Label for custom field.
3a7773be
CW
676 * @return \HTML_QuickForm_Element|null
677 * @throws \CiviCRM_API3_Exception
6a488035 678 */
f9f40af3 679 public static function addQuickFormElement(
3a7773be 680 $qf, $elementName, $fieldId, $useRequired = TRUE, $search = FALSE, $label = NULL
6a488035 681 ) {
6a488035 682 $field = self::getFieldObject($fieldId);
3130209f 683 $widget = $field->html_type;
2b31bc15 684 $element = NULL;
5f627bb5 685 $customFieldAttributes = [];
2dd1b730 686
a2eb6152
AH
687 if (!isset($label)) {
688 $label = $field->label;
689 }
690
4367e964
AH
691 // DAO stores attributes as a string, but it's hard to manipulate and
692 // CRM_Core_Form::add() wants them as an array.
693 $fieldAttributes = self::attributesFromString($field->attributes);
694
a7d0519b 695 // Custom field HTML should indicate group+field name
be09038f 696 $groupName = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomGroup', $field->custom_group_id);
4367e964 697 $fieldAttributes['data-crm-custom'] = $groupName . ':' . $field->name;
2dd1b730 698
6a488035 699 // Fixed for Issue CRM-2183
3130209f
CW
700 if ($widget == 'TextArea' && $search) {
701 $widget = 'Text';
702 }
703
a2eb6152 704 $placeholder = $search ? ts('- any %1 -', [1 => $label]) : ts('- select %1 -', [1 => $label]);
6a488035 705
4367e964 706 if (in_array($widget, [
f9f40af3 707 'Select',
f9f40af3 708 'CheckBox',
21dfd5f5 709 'Radio',
4367e964 710 ])) {
01057d41 711 $options = $field->getOptions($search ? 'search' : 'create');
3130209f
CW
712
713 // Consolidate widget types to simplify the below switch statement
4367e964 714 if ($search) {
3130209f
CW
715 $widget = 'Select';
716 }
3ef93345 717
3130209f 718 // Search field is always multi-select
3221e413 719 if ($search || (self::isSerialized($field) && $widget === 'Select')) {
190240f0 720 $fieldAttributes['class'] = ltrim(($fieldAttributes['class'] ?? '') . ' huge');
4367e964
AH
721 $fieldAttributes['multiple'] = 'multiple';
722 $fieldAttributes['placeholder'] = $placeholder;
3130209f 723 }
3ef93345 724
3130209f 725 // Add data for popup link. Normally this is handled by CRM_Core_Form->addSelect
3ef93345 726 $canEditOptions = CRM_Core_Permission::check('administer CiviCRM');
4367e964 727 if ($field->option_group_id && !$search && $canEditOptions) {
5f627bb5 728 $customFieldAttributes += [
01057d41 729 'data-api-entity' => $field->getEntity(),
3130209f
CW
730 'data-api-field' => 'custom_' . $field->id,
731 'data-option-edit-path' => 'civicrm/admin/options/' . CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', $field->option_group_id),
5f627bb5 732 ];
4367e964 733 $fieldAttributes = array_merge($fieldAttributes, $customFieldAttributes);
8a6cfaa9 734 }
8a6cfaa9
CW
735 }
736
0afd6ed2
CW
737 $rangeDataTypes = ['Int', 'Float', 'Money'];
738
b60efd6a 739 // at some point in time we might want to split the below into small functions
6a488035 740
3130209f 741 switch ($widget) {
6a488035 742 case 'Text':
3130209f 743 case 'Link':
0afd6ed2 744 if ($field->is_search_range && $search && in_array($field->data_type, $rangeDataTypes)) {
4367e964
AH
745 $qf->add('text', $elementName . '_from', $label . ' ' . ts('From'), $fieldAttributes);
746 $qf->add('text', $elementName . '_to', ts('To'), $fieldAttributes);
6a488035
TO
747 }
748 else {
a6e63388 749 if ($field->text_length) {
4367e964 750 $fieldAttributes['maxlength'] = $field->text_length;
a6e63388 751 if ($field->text_length < 20) {
4367e964 752 $fieldAttributes['size'] = $field->text_length;
a6e63388 753 }
754 }
2b31bc15 755 $element = $qf->add('text', $elementName, $label,
4367e964 756 $fieldAttributes,
6a488035
TO
757 $useRequired && !$search
758 );
759 }
760 break;
761
762 case 'TextArea':
4367e964
AH
763 $fieldAttributes['rows'] = $field->note_rows ?? 4;
764 $fieldAttributes['cols'] = $field->note_columns ?? 60;
765
2f940a36 766 if ($field->text_length) {
4367e964 767 $fieldAttributes['maxlength'] = $field->text_length;
2f940a36 768 }
2b31bc15 769 $element = $qf->add('textarea',
6a488035
TO
770 $elementName,
771 $label,
4367e964 772 $fieldAttributes,
6a488035
TO
773 $useRequired && !$search
774 );
775 break;
776
777 case 'Select Date':
153b5662
WA
778 //CRM-18379: Fix for date range of 'Select Date' custom field when include in profile.
779 $minYear = isset($field->start_date_years) ? (date('Y') - $field->start_date_years) : NULL;
780 $maxYear = isset($field->end_date_years) ? (date('Y') + $field->end_date_years) : NULL;
781
5f627bb5 782 $params = [
013ac5df 783 'date' => $field->date_format,
153b5662 784 'minDate' => isset($minYear) ? $minYear . '-01-01' : NULL,
d696827c 785 //CRM-18487 - max date should be the last date of the year.
786 'maxDate' => isset($maxYear) ? $maxYear . '-12-31' : NULL,
013ac5df 787 'time' => $field->time_format ? $field->time_format * 12 : FALSE,
5f627bb5 788 ];
6a488035 789 if ($field->is_search_range && $search) {
4367e964
AH
790 $qf->add('datepicker', $elementName . '_from', $label, $fieldAttributes + array('placeholder' => ts('From')), FALSE, $params);
791 $qf->add('datepicker', $elementName . '_to', NULL, $fieldAttributes + array('placeholder' => ts('To')), FALSE, $params);
6a488035
TO
792 }
793 else {
4367e964 794 $element = $qf->add('datepicker', $elementName, $label, $fieldAttributes, $useRequired && !$search, $params);
6a488035
TO
795 }
796 break;
797
798 case 'Radio':
0afd6ed2 799 if ($field->is_search_range && $search && in_array($field->data_type, $rangeDataTypes)) {
4367e964
AH
800 $qf->add('text', $elementName . '_from', $label . ' ' . ts('From'), $fieldAttributes);
801 $qf->add('text', $elementName . '_to', ts('To'), $fieldAttributes);
6a488035 802 }
8a4f27dc 803 else {
4367e964 804 $fieldAttributes = array_merge($fieldAttributes, $customFieldAttributes);
44e7c198 805 if ($search || empty($useRequired)) {
4367e964 806 $fieldAttributes['allowClear'] = TRUE;
44e7c198 807 }
4367e964 808 $qf->addRadio($elementName, $label, $options, $fieldAttributes, NULL, $useRequired);
8a4f27dc 809 }
6a488035
TO
810 break;
811
3130209f 812 // For all select elements
6a488035 813 case 'Select':
190240f0 814 $fieldAttributes['class'] = ltrim(($fieldAttributes['class'] ?? '') . ' crm-select2');
e71fb06f
KE
815
816 if (empty($fieldAttributes['multiple'])) {
817 $options = ['' => $placeholder] + $options;
3130209f 818 }
e71fb06f
KE
819 $element = $qf->add('select', $elementName, $label, $options, $useRequired && !$search, $fieldAttributes);
820
821 // Add and/or option for fields that store multiple values
822 if ($search && self::isSerialized($field)) {
823 $qf->addRadio($elementName . '_operator', '', [
824 'or' => ts('Any'),
825 'and' => ts('All'),
826 ], [], NULL, FALSE, [
827 'or' => ['title' => ts('Results may contain any of the selected options')],
828 'and' => ['title' => ts('Results must have all of the selected options')],
829 ]);
830 $qf->setDefaults([$elementName . '_operator' => 'or']);
6a488035 831 }
3130209f 832 break;
6a488035 833
6a488035 834 case 'CheckBox':
5f627bb5 835 $check = [];
3130209f 836 foreach ($options as $v => $l) {
4367e964
AH
837 // TODO: I'm not sure if this is supposed to exclude whatever might be
838 // in $field->attributes (available in array format as
839 // $fieldAttributes). Leaving as-is for now.
3ef93345 840 $check[] = &$qf->addElement('advcheckbox', $v, NULL, $l, $customFieldAttributes);
6a488035 841 }
3ef93345
MD
842
843 $group = $element = $qf->addGroup($check, $elementName, $label);
844 $optionEditKey = 'data-option-edit-path';
845 if (isset($customFieldAttributes[$optionEditKey])) {
846 $group->setAttribute($optionEditKey, $customFieldAttributes[$optionEditKey]);
847 }
848
6a488035 849 if ($useRequired && !$search) {
5f627bb5 850 $qf->addRule($elementName, ts('%1 is a required field.', [1 => $label]), 'required');
6a488035
TO
851 }
852 break;
853
854 case 'File':
855 // we should not build upload file in search mode
856 if ($search) {
2b31bc15 857 return NULL;
6a488035 858 }
2b31bc15 859 $element = $qf->add(
6a488035
TO
860 strtolower($field->html_type),
861 $elementName,
862 $label,
4367e964 863 $fieldAttributes,
6a488035
TO
864 $useRequired && !$search
865 );
866 $qf->addUploadElement($elementName);
867 break;
868
6a488035 869 case 'RichTextEditor':
4367e964
AH
870 $fieldAttributes['rows'] = $field->note_rows;
871 $fieldAttributes['cols'] = $field->note_columns;
2f940a36 872 if ($field->text_length) {
4367e964 873 $fieldAttributes['maxlength'] = $field->text_length;
2f940a36 874 }
4367e964 875 $element = $qf->add('wysiwyg', $elementName, $label, $fieldAttributes, $useRequired && !$search);
6a488035
TO
876 break;
877
878 case 'Autocomplete-Select':
5f627bb5 879 static $customUrls = [];
6a488035 880 if ($field->data_type == 'ContactReference') {
f40e966a 881 // break if contact does not have permission to access ContactReference
882 if (!CRM_Core_Permission::check('access contact reference fields')) {
883 break;
884 }
190240f0 885 $fieldAttributes['class'] = ltrim(($fieldAttributes['class'] ?? '') . ' crm-form-contact-reference huge');
4367e964 886 $fieldAttributes['data-api-entity'] = 'Contact';
a61d2ab7
CW
887 if (!empty($field->serialize) || $search) {
888 $fieldAttributes['multiple'] = TRUE;
889 }
4367e964 890 $element = $qf->add('text', $elementName, $label, $fieldAttributes, $useRequired && !$search);
1b4d9e39 891
6a488035 892 $urlParams = "context=customfield&id={$field->id}";
8d90652e
AF
893 $idOfelement = $elementName;
894 // dev/core#362 if in an onbehalf profile clean up the name to get rid of square brackets that break the select 2 js
c94a15af 895 // However this caused regression https://lab.civicrm.org/dev/core/issues/619 so it has been hacked back to
896 // only affecting on behalf - next time someone looks at this code it should be with a view to overhauling it
897 // rather than layering on more hacks.
898 if (substr($elementName, 0, 8) === 'onbehalf' && strpos($elementName, '[') && strpos($elementName, ']')) {
8d90652e
AF
899 $idOfelement = substr(substr($elementName, (strpos($elementName, '[') + 1)), 0, -1);
900 }
901 $customUrls[$idOfelement] = CRM_Utils_System::url('civicrm/ajax/contactref',
6a488035
TO
902 $urlParams,
903 FALSE, NULL, FALSE
904 );
905
6a488035
TO
906 }
907 else {
2fea9ed9 908 // FIXME: This won't work with customFieldOptions hook
4367e964 909 $fieldAttributes += [
af00ced5 910 'entity' => 'OptionValue',
1b4d9e39 911 'placeholder' => $placeholder,
0bdc1b6d 912 'multiple' => $search ? TRUE : !empty($field->serialize),
5f627bb5
SL
913 'api' => [
914 'params' => ['option_group_id' => $field->option_group_id, 'is_active' => 1],
915 ],
916 ];
4367e964 917 $element = $qf->addEntityRef($elementName, $label, $fieldAttributes, $useRequired && !$search);
6a488035
TO
918 }
919
920 $qf->assign('customUrls', $customUrls);
921 break;
922 }
923
924 switch ($field->data_type) {
925 case 'Int':
926 // integers will have numeric rule applied to them.
e71fb06f 927 if ($field->is_search_range && $search && $widget != 'Select') {
5f627bb5
SL
928 $qf->addRule($elementName . '_from', ts('%1 From must be an integer (whole number).', [1 => $label]), 'integer');
929 $qf->addRule($elementName . '_to', ts('%1 To must be an integer (whole number).', [1 => $label]), 'integer');
6a488035 930 }
3130209f 931 elseif ($widget == 'Text') {
5f627bb5 932 $qf->addRule($elementName, ts('%1 must be an integer (whole number).', [1 => $label]), 'integer');
6a488035
TO
933 }
934 break;
935
936 case 'Float':
937 if ($field->is_search_range && $search) {
5f627bb5
SL
938 $qf->addRule($elementName . '_from', ts('%1 From must be a number (with or without decimal point).', [1 => $label]), 'numeric');
939 $qf->addRule($elementName . '_to', ts('%1 To must be a number (with or without decimal point).', [1 => $label]), 'numeric');
6a488035 940 }
3130209f 941 elseif ($widget == 'Text') {
5f627bb5 942 $qf->addRule($elementName, ts('%1 must be a number (with or without decimal point).', [1 => $label]), 'numeric');
6a488035
TO
943 }
944 break;
945
946 case 'Money':
947 if ($field->is_search_range && $search) {
5f627bb5
SL
948 $qf->addRule($elementName . '_from', ts('%1 From must in proper money format. (decimal point/comma/space is allowed).', [1 => $label]), 'money');
949 $qf->addRule($elementName . '_to', ts('%1 To must in proper money format. (decimal point/comma/space is allowed).', [1 => $label]), 'money');
6a488035 950 }
3130209f 951 elseif ($widget == 'Text') {
5f627bb5 952 $qf->addRule($elementName, ts('%1 must be in proper money format. (decimal point/comma/space is allowed).', [1 => $label]), 'money');
6a488035
TO
953 }
954 break;
955
956 case 'Link':
3130209f 957 $element->setAttribute('class', "url");
eef9a6da 958 $qf->addRule($elementName, ts('Enter a valid web address beginning with \'http://\' or \'https://\'.'), 'wikiURL');
6a488035
TO
959 break;
960 }
961 if ($field->is_view && !$search) {
962 $qf->freeze($elementName);
963 }
2b31bc15 964 return $element;
6a488035
TO
965 }
966
4367e964
AH
967 /**
968 * Take a string of HTML element attributes and turn it into an associative
969 * array.
970 *
971 * @param string $attrString
972 * The attributes as a string, e.g. `rows=3 cols=40`.
973 *
974 * @return array
975 * The attributes as an array, e.g. `['rows' => 3, 'cols' => 40]`.
976 */
977 public static function attributesFromString($attrString) {
978 $attributes = [];
979 foreach (explode(' ', $attrString) as $at) {
980 if (strpos($at, '=')) {
981 list($k, $v) = explode('=', $at);
982 $attributes[$k] = trim($v, ' "');
983 }
984 }
985 return $attributes;
986 }
987
6a488035
TO
988 /**
989 * Delete the Custom Field.
990 *
6a0b768e
TO
991 * @param object $field
992 * The field object.
6a488035
TO
993 */
994 public static function deleteField($field) {
995 CRM_Utils_System::flushCache();
996
997 // first delete the custom option group and values associated with this field
998 if ($field->option_group_id) {
999 //check if option group is related to any other field, if
1000 //not delete the option group and related option values
1001 self::checkOptionGroup($field->option_group_id);
1002 }
6a488035
TO
1003 // next drop the column from the custom value table
1004 self::createField($field, 'delete');
1005
1006 $field->delete();
1007 CRM_Core_BAO_UFField::delUFField($field->id);
751dec04 1008 CRM_Core_BAO_Mapping::removeFieldFromMapping('custom_' . $field->id);
6a488035 1009 CRM_Utils_Weight::correctDuplicateWeights('CRM_Core_DAO_CustomField');
54ac54a2
CW
1010
1011 CRM_Utils_Hook::post('delete', 'CustomField', $field->id, $field);
6a488035
TO
1012 }
1013
1014 /**
3b66f502 1015 * @param string|int|array|null $value
28241a61 1016 * @param CRM_Core_BAO_CustomField|int|array|string $field
cf346323 1017 * @param int $entityId
3b66f502 1018 *
51a3717f 1019 * @return string
9113bb82 1020 *
1021 * @throws \CRM_Core_Exception
3b66f502 1022 */
cf346323 1023 public static function displayValue($value, $field, $entityId = NULL) {
28241a61 1024 $field = is_array($field) ? $field['id'] : $field;
51a3717f
CW
1025 $fieldId = is_object($field) ? $field->id : (int) str_replace('custom_', '', $field);
1026
1027 if (!$fieldId) {
9113bb82 1028 throw new CRM_Core_Exception('CRM_Core_BAO_CustomField::displayValue requires a field id');
51a3717f 1029 }
3b66f502 1030
01057d41
CW
1031 if (!is_a($field, 'CRM_Core_BAO_CustomField')) {
1032 $field = self::getFieldObject($fieldId);
3b66f502 1033 }
01057d41 1034
5f627bb5 1035 $fieldInfo = ['options' => $field->getOptions()] + (array) $field;
01057d41 1036
21d40964
PN
1037 $displayValue = self::formatDisplayValue($value, $fieldInfo, $entityId);
1038
1039 // Call hook to alter display value.
1040 CRM_Utils_Hook::alterCustomFieldDisplayValue($displayValue, $value, $entityId, $fieldInfo);
1041
1042 return $displayValue;
3b66f502
CW
1043 }
1044
3b66f502
CW
1045 /**
1046 * Lower-level logic for rendering a custom field value
1047 *
1048 * @param string|array $value
1049 * @param array $field
080d719e 1050 * @param int|null $entityId
3b66f502 1051 *
51a3717f 1052 * @return string
3b66f502 1053 */
080d719e 1054 private static function formatDisplayValue($value, $field, $entityId = NULL) {
51a3717f 1055
3b66f502 1056 if (self::isSerialized($field) && !is_array($value)) {
74d79c61 1057 $value = CRM_Utils_Array::explodePadded($value);
3b66f502
CW
1058 }
1059 // CRM-12989 fix
6ebb4fa8
ML
1060 if ($field['html_type'] == 'CheckBox' && $value) {
1061 $value = CRM_Utils_Array::convertCheckboxFormatToArray($value);
3b66f502 1062 }
51a3717f
CW
1063
1064 $display = is_array($value) ? implode(', ', $value) : (string) $value;
1065
3b66f502
CW
1066 switch ($field['html_type']) {
1067
1068 case 'Select':
1069 case 'Autocomplete-Select':
1070 case 'Radio':
6a488035 1071 case 'CheckBox':
a61d2ab7
CW
1072 if ($field['data_type'] == 'ContactReference' && (is_array($value) || is_numeric($value))) {
1073 $displayNames = [];
1074 foreach ((array) $value as $contactId) {
1075 $displayNames[] = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $contactId, 'display_name');
69b2206a 1076 }
a61d2ab7
CW
1077 $display = implode(', ', $displayNames);
1078 }
1079 elseif ($field['data_type'] == 'ContactReference') {
1080 $display = $value;
6a488035 1081 }
3b66f502 1082 elseif (is_array($value)) {
5f627bb5 1083 $v = [];
3b66f502 1084 foreach ($value as $key => $val) {
9c1bc317 1085 $v[] = $field['options'][$val] ?? NULL;
6a488035 1086 }
6a488035
TO
1087 $display = implode(', ', $v);
1088 }
3b66f502 1089 else {
51a3717f 1090 $display = CRM_Utils_Array::value($value, $field['options'], '');
bfe563af 1091 // For float type (see Number and Money) $value would be decimal like
1092 // 1.00 (because it is stored in db as decimal), while options array
1093 // key would be integer like 1. In this case expression on line above
1094 // would return empty string (default value), despite the fact that
1095 // matching option exists in the array.
1096 // In such cases we could just get intval($value) and fetch matching
1097 // option again, but this would not work if key is float like 5.6.
1098 // So we need to truncate trailing zeros to make it work as expected.
1099 if ($display === '' && strpos($value, '.') !== FALSE) {
1100 // Use round() to truncate trailing zeros, e.g:
1101 // 10.00 -> 10, 10.60 -> 10.6, 10.69 -> 10.69.
1102 $value = (string) round($value, 5);
1103 $display = $field['options'][$value] ?? '';
1104 }
3b66f502 1105 }
6a488035
TO
1106 break;
1107
1108 case 'Select Date':
51a3717f
CW
1109 $customFormat = NULL;
1110
74d79c61
CW
1111 // FIXME: Are there any legitimate reasons why $value would be an array?
1112 // Or should we throw an exception here if it is?
1113 $value = is_array($value) ? CRM_Utils_Array::first($value) : $value;
1114
ed0ca248 1115 $actualPHPFormats = CRM_Utils_Date::datePluginToPHPFormats();
9c1bc317 1116 $format = $field['date_format'] ?? NULL;
51a3717f
CW
1117
1118 if ($format) {
1119 if (array_key_exists($format, $actualPHPFormats)) {
1120 $customTimeFormat = (array) $actualPHPFormats[$format];
1121 switch (CRM_Utils_Array::value('time_format', $field)) {
1122 case 1:
1123 $customTimeFormat[] = 'g:iA';
1124 break;
1125
1126 case 2:
1127 $customTimeFormat[] = 'G:i';
1128 break;
1129
1130 default:
c65ec456
JP
1131 //If time is not selected remove time from value.
1132 $value = $value ? date('Y-m-d', strtotime($value)) : '';
51a3717f
CW
1133 }
1134 $customFormat = implode(" ", $customTimeFormat);
6a488035 1135 }
6a488035 1136 }
51a3717f 1137 $display = CRM_Utils_Date::processDate($value, NULL, FALSE, $customFormat);
6a488035
TO
1138 break;
1139
6a488035 1140 case 'File':
5f7e0d20 1141 // In the context of displaying a profile, show file/image
e34e6979 1142 if ($value) {
1143 if ($entityId) {
1470f70a
CW
1144 if (CRM_Utils_Rule::positiveInteger($value)) {
1145 $fileId = $value;
1146 }
1147 else {
1148 $fileId = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_File', $value, 'id', 'uri');
1149 }
1150 $url = self::getFileURL($entityId, $field['id'], $fileId);
e34e6979 1151 if ($url) {
1152 $display = $url['file_url'];
1153 }
1154 }
1155 else {
1156 // In other contexts show a paperclip icon
5a1bbef4 1157 if (CRM_Utils_Rule::integer($value)) {
1158 $icons = CRM_Core_BAO_File::paperIconAttachment('*', $value);
419b013b
D
1159
1160 $file_description = '';
1161 try {
1162 $file_description = civicrm_api3('File', 'getvalue', ['return' => "description", 'id' => $value]);
1163 }
1164 catch (CiviCRM_API3_Exception $dontcare) {
1165 // don't care
1166 }
1167
1168 $display = "{$icons[$value]}{$file_description}";
5a1bbef4 1169 }
1170 else {
1171 //CRM-18396, if filename is passed instead
1172 $display = $value;
1173 }
5f7e0d20 1174 }
6a488035
TO
1175 }
1176 break;
1177
8472b684
CW
1178 case 'Link':
1179 $display = $display ? "<a href=\"$display\" target=\"_blank\">$display</a>" : $display;
1180 break;
1181
6a488035 1182 case 'TextArea':
51a3717f 1183 $display = nl2br($display);
6a488035 1184 break;
5d4ee51f 1185
1186 case 'Text':
1187 if ($field['data_type'] == 'Money' && isset($value)) {
aa965915 1188 // $value can also be an array(while using IN operator from search builder or api).
5d4ee51f 1189 foreach ((array) $value as $val) {
9a4f958b 1190 $disp[] = CRM_Utils_Money::format($val, NULL, NULL, TRUE);
5d4ee51f 1191 }
1192 $display = implode(', ', $disp);
1193 }
1194 break;
6a488035 1195 }
51a3717f 1196 return $display;
6a488035
TO
1197 }
1198
1199 /**
fe482240 1200 * Set default values for custom data used in profile.
6a488035 1201 *
6a0b768e
TO
1202 * @param int $customFieldId
1203 * Custom field id.
1204 * @param string $elementName
1205 * Custom field name.
1206 * @param array $defaults
1207 * Associated array of fields.
1208 * @param int $contactId
1209 * Contact id.
1210 * @param int $mode
1211 * Profile mode.
1212 * @param mixed $value
1213 * If passed - dont fetch value from db,.
6a488035 1214 * just format the given value
6a488035 1215 */
2da40d21 1216 public static function setProfileDefaults(
f9f40af3 1217 $customFieldId,
6a488035
TO
1218 $elementName,
1219 &$defaults,
1220 $contactId = NULL,
1221 $mode = NULL,
1222 $value = NULL
1223 ) {
1224 //get the type of custom field
1225 $customField = new CRM_Core_BAO_CustomField();
1226 $customField->id = $customFieldId;
1227 $customField->find(TRUE);
1228
1229 if (!$contactId) {
1230 if ($mode == CRM_Profile_Form::MODE_CREATE) {
1231 $value = $customField->default_value;
1232 }
1233 }
1234 else {
1235 if (!isset($value)) {
f9f40af3
TO
1236 $info = self::getTableColumnGroup($customFieldId);
1237 $query = "SELECT {$info[0]}.{$info[1]} as value FROM {$info[0]} WHERE {$info[0]}.entity_id = {$contactId}";
6a488035
TO
1238 $result = CRM_Core_DAO::executeQuery($query);
1239 if ($result->fetch()) {
1240 $value = $result->value;
1241 }
1242 }
1243
1244 if ($customField->data_type == 'Country') {
1245 if (!$value) {
1246 $config = CRM_Core_Config::singleton();
1247 if ($config->defaultContactCountry) {
d14f0a66 1248 $value = CRM_Core_BAO_Country::defaultContactCountry();
6a488035
TO
1249 }
1250 }
1251 }
1252 }
1253
1254 //set defaults if mode is registration
1255 if (!trim($value) &&
1256 ($value !== 0) &&
5f627bb5 1257 (!in_array($mode, [CRM_Profile_Form::MODE_EDIT, CRM_Profile_Form::MODE_SEARCH]))
6a488035
TO
1258 ) {
1259 $value = $customField->default_value;
1260 }
1261
1262 if ($customField->data_type == 'Money' && isset($value)) {
1263 $value = number_format($value, 2);
1264 }
e1d699d7 1265 if (self::isSerialized($customField) && $value) {
08cde786
CW
1266 $customOption = CRM_Core_BAO_CustomOption::getCustomOption($customFieldId, FALSE);
1267 $defaults[$elementName] = [];
1268 $checkedValue = CRM_Utils_Array::explodePadded($value);
1269 foreach ($customOption as $val) {
1270 if (in_array($val['value'], $checkedValue)) {
1271 if ($customField->html_type == 'CheckBox') {
1272 $defaults[$elementName][$val['value']] = 1;
1273 }
1274 else {
1275 $defaults[$elementName][$val['value']] = $val['value'];
6a488035
TO
1276 }
1277 }
08cde786
CW
1278 }
1279 }
1280 else {
1281 $defaults[$elementName] = $value;
6a488035
TO
1282 }
1283 }
1284
b5c2afd0 1285 /**
b60efd6a 1286 * Get file url.
b5c2afd0 1287 *
100fef9d
CW
1288 * @param int $contactID
1289 * @param int $cfID
1290 * @param int $fileID
b5c2afd0
EM
1291 * @param bool $absolute
1292 *
ad37ac8e 1293 * @param string $multiRecordWhereClause
1294 *
b5c2afd0
EM
1295 * @return array
1296 */
00be9182 1297 public static function getFileURL($contactID, $cfID, $fileID = NULL, $absolute = FALSE, $multiRecordWhereClause = NULL) {
6a488035
TO
1298 if ($contactID) {
1299 if (!$fileID) {
5f627bb5
SL
1300 $params = ['id' => $cfID];
1301 $defaults = [];
6a488035
TO
1302 CRM_Core_DAO::commonRetrieve('CRM_Core_DAO_CustomField', $params, $defaults);
1303 $columnName = $defaults['column_name'];
1304
1305 //table name of custom data
1306 $tableName = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomGroup',
1307 $defaults['custom_group_id'],
1308 'table_name', 'id'
1309 );
1310
1311 //query to fetch id from civicrm_file
b42d84aa 1312 if ($multiRecordWhereClause) {
1313 $query = "SELECT {$columnName} FROM {$tableName} where entity_id = {$contactID} AND {$multiRecordWhereClause}";
1314 }
1315 else {
1316 $query = "SELECT {$columnName} FROM {$tableName} where entity_id = {$contactID}";
1317 }
6a488035
TO
1318 $fileID = CRM_Core_DAO::singleValueQuery($query);
1319 }
1320
5f627bb5 1321 $result = [];
6a488035
TO
1322 if ($fileID) {
1323 $fileType = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_File',
1324 $fileID,
1325 'mime_type',
1326 'id'
1327 );
1328 $result['file_id'] = $fileID;
1329
1330 if ($fileType == 'image/jpeg' ||
1331 $fileType == 'image/pjpeg' ||
1332 $fileType == 'image/gif' ||
1333 $fileType == 'image/x-png' ||
1334 $fileType == 'image/png'
1335 ) {
1336 $entityId = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_EntityFile',
1337 $fileID,
1338 'entity_id',
c55199e1 1339 'file_id'
6a488035 1340 );
9bbc34f1 1341 list($path) = CRM_Core_BAO_File::path($fileID, $entityId);
efddd94f 1342 $fileHash = CRM_Core_BAO_File::generateFileHash($entityId, $fileID);
6a488035 1343 $url = CRM_Utils_System::url('civicrm/file',
0ada9416 1344 "reset=1&id=$fileID&eid=$entityId&fcs=$fileHash",
6a488035
TO
1345 $absolute, NULL, TRUE, TRUE
1346 );
f3726153 1347 $result['file_url'] = CRM_Utils_File::getFileURL($path, $fileType, $url);
6a488035 1348 }
f3726153 1349 // for non image files
6a488035
TO
1350 else {
1351 $uri = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_File',
1352 $fileID,
1353 'uri'
1354 );
0ada9416 1355 $fileHash = CRM_Core_BAO_File::generateFileHash($contactID, $fileID);
6a488035 1356 $url = CRM_Utils_System::url('civicrm/file',
ff9aeadb 1357 "reset=1&id=$fileID&eid=$contactID&fcs=$fileHash",
6a488035
TO
1358 $absolute, NULL, TRUE, TRUE
1359 );
f3726153 1360 $result['file_url'] = CRM_Utils_File::getFileURL($uri, $fileType, $url);
6a488035
TO
1361 }
1362 }
1363 return $result;
1364 }
1365 }
1366
1367 /**
fe482240 1368 * Format custom fields before inserting.
6a488035 1369 *
6a0b768e
TO
1370 * @param int $customFieldId
1371 * Custom field id.
1372 * @param array $customFormatted
1373 * Formatted array.
bb06e9ed 1374 * @param mixed $value
6a0b768e
TO
1375 * Value of custom field.
1376 * @param string $customFieldExtend
1377 * Custom field extends.
1378 * @param int $customValueId
1379 * Custom option value id.
1380 * @param int $entityId
1381 * Entity id (contribution, membership...).
1382 * @param bool $inline
1383 * Consider inline custom groups only.
1384 * @param bool $checkPermission
1385 * If false, do not include permissioning clause.
1386 * @param bool $includeViewOnly
1387 * If true, fields marked 'View Only' are included. Required for APIv3.
6a488035 1388 *
a1a2a83d 1389 * @return array|NULL
a6c01b45 1390 * formatted custom field array
6a488035 1391 */
2da40d21 1392 public static function formatCustomField(
f9f40af3 1393 $customFieldId, &$customFormatted, $value,
6a488035
TO
1394 $customFieldExtend, $customValueId = NULL,
1395 $entityId = NULL,
1396 $inline = FALSE,
211353a8 1397 $checkPermission = TRUE,
f9f40af3 1398 $includeViewOnly = FALSE
6a488035
TO
1399 ) {
1400 //get the custom fields for the entity
1401 //subtype and basic type
1402 $customDataSubType = NULL;
e25c4389 1403 if ($customFieldExtend) {
6a488035
TO
1404 // This is the case when getFieldsForImport() requires fields
1405 // of subtype and its parent.CRM-5143
d9ef38cc 1406 // CRM-16065 - Custom field set data not being saved if contact has more than one contact sub type
1407 $customDataSubType = array_intersect(CRM_Contact_BAO_ContactType::subTypes(), (array) $customFieldExtend);
1408 if (!empty($customDataSubType) && is_array($customDataSubType)) {
e25c4389 1409 $customFieldExtend = CRM_Contact_BAO_ContactType::getBasicType($customDataSubType);
1410 if (is_array($customFieldExtend)) {
1411 $customFieldExtend = array_unique(array_values($customFieldExtend));
1412 }
d9ef38cc 1413 }
6a488035
TO
1414 }
1415
1416 $customFields = CRM_Core_BAO_CustomField::getFields($customFieldExtend,
1417 FALSE,
1418 $inline,
1419 $customDataSubType,
1420 NULL,
1421 FALSE,
1422 FALSE,
1423 $checkPermission
1424 );
1425
1426 if (!array_key_exists($customFieldId, $customFields)) {
6c552737 1427 return NULL;
6a488035
TO
1428 }
1429
1430 // return if field is a 'code' field
211353a8 1431 if (!$includeViewOnly && !empty($customFields[$customFieldId]['is_view'])) {
a1a2a83d 1432 return NULL;
6a488035
TO
1433 }
1434
1435 list($tableName, $columnName, $groupID) = self::getTableColumnGroup($customFieldId);
1436
6a488035
TO
1437 if (!$customValueId &&
1438 // we always create new entites for is_multiple unless specified
1439 !$customFields[$customFieldId]['is_multiple'] &&
1440 $entityId
1441 ) {
1442 $query = "
1443SELECT id
1444 FROM $tableName
1445 WHERE entity_id={$entityId}";
1446
1447 $customValueId = CRM_Core_DAO::singleValueQuery($query);
1448 }
1449
1450 //fix checkbox, now check box always submits values
1451 if ($customFields[$customFieldId]['html_type'] == 'CheckBox') {
1452 if ($value) {
1453 // Note that only during merge this is not an array, and you can directly use value
1454 if (is_array($value)) {
5f627bb5 1455 $selectedValues = [];
6a488035
TO
1456 foreach ($value as $selId => $val) {
1457 if ($val) {
1458 $selectedValues[] = $selId;
1459 }
1460 }
1461 if (!empty($selectedValues)) {
1462 $value = CRM_Core_DAO::VALUE_SEPARATOR . implode(CRM_Core_DAO::VALUE_SEPARATOR,
f9f40af3
TO
1463 $selectedValues
1464 ) . CRM_Core_DAO::VALUE_SEPARATOR;
6a488035
TO
1465 }
1466 else {
1467 $value = '';
1468 }
1469 }
1470 }
1471 }
c54649bf 1472 elseif (self::isSerialized($customFields[$customFieldId])) {
0bdc1b6d
CW
1473 // Select2 v3 returns a comma-separated string.
1474 if ($customFields[$customFieldId]['html_type'] == 'Autocomplete-Select' && is_string($value)) {
1475 $value = explode(',', $value);
1476 }
1477
c54649bf 1478 $value = $value ? CRM_Utils_Array::implodePadded($value) : '';
6a488035
TO
1479 }
1480
c54649bf 1481 if (self::isSerialized($customFields[$customFieldId]) &&
6a488035
TO
1482 $customFields[$customFieldId]['data_type'] == 'String' &&
1483 !empty($customFields[$customFieldId]['text_length']) &&
1484 !empty($value)
1485 ) {
1486 // lets make sure that value is less than the length, else we'll
1487 // be losing some data, CRM-7481
1488 if (strlen($value) >= $customFields[$customFieldId]['text_length']) {
1489 // need to do a few things here
1490
1491 // 1. lets find a new length
1492 $newLength = $customFields[$customFieldId]['text_length'];
1493 $minLength = strlen($value);
1494 while ($newLength < $minLength) {
1495 $newLength = $newLength * 2;
1496 }
1497
1498 // set the custom field meta data to have a length larger than value
1499 // alter the custom value table column to match this length
1500 CRM_Core_BAO_SchemaHandler::alterFieldLength($customFieldId, $tableName, $columnName, $newLength);
1501 }
1502 }
1503
1504 $date = NULL;
1505 if ($customFields[$customFieldId]['data_type'] == 'Date') {
1506 if (!CRM_Utils_System::isNull($value)) {
1507 $format = $customFields[$customFieldId]['date_format'];
1508 $date = CRM_Utils_Date::processDate($value, NULL, FALSE, 'YmdHis', $format);
1509 }
1510 $value = $date;
1511 }
1512
1513 if ($customFields[$customFieldId]['data_type'] == 'Float' ||
1514 $customFields[$customFieldId]['data_type'] == 'Money'
1515 ) {
1516 if (!$value) {
1517 $value = 0;
1518 }
1519
1520 if ($customFields[$customFieldId]['data_type'] == 'Money') {
1521 $value = CRM_Utils_Rule::cleanMoney($value);
1522 }
1523 }
1524
1525 if (($customFields[$customFieldId]['data_type'] == 'StateProvince' ||
1526 $customFields[$customFieldId]['data_type'] == 'Country'
1527 ) &&
1528 empty($value)
1529 ) {
1530 // CRM-3415
1531 $value = 0;
1532 }
1533
e5077b06 1534 $fileID = NULL;
6a488035
TO
1535
1536 if ($customFields[$customFieldId]['data_type'] == 'File') {
1537 if (empty($value)) {
1538 return;
1539 }
1540
1541 $config = CRM_Core_Config::singleton();
1542
756b5b30 1543 // If we are already passing the file id as a value then retrieve and set the file data
1544 if (CRM_Utils_Rule::integer($value)) {
1545 $fileDAO = new CRM_Core_DAO_File();
1546 $fileDAO->id = $value;
1547 $fileDAO->find(TRUE);
07702f3e 1548 if ($fileDAO->N) {
756b5b30 1549 $fileID = $value;
1550 $fName = $fileDAO->uri;
1551 $mimeType = $fileDAO->mime_type;
1552 }
1553 }
33d245c8
CW
1554 else {
1555 $fName = $value['name'];
1556 $mimeType = $value['type'];
1557 }
756b5b30 1558
6a488035
TO
1559 $filename = pathinfo($fName, PATHINFO_BASENAME);
1560
756b5b30 1561 // rename this file to go into the secure directory only if
1562 // user has uploaded new file not existing verfied on the basis of $fileID
ecc6bd60 1563 if (empty($fileID) && !rename($fName, $config->customFileUploadDir . $filename)) {
6a488035 1564 CRM_Core_Error::statusBounce(ts('Could not move custom file to custom upload directory'));
6a488035
TO
1565 }
1566
ecc6bd60 1567 if ($customValueId && empty($fileID)) {
6a488035
TO
1568 $query = "
1569SELECT $columnName
1570 FROM $tableName
1571 WHERE id = %1";
5f627bb5 1572 $params = [1 => [$customValueId, 'Integer']];
e5077b06 1573 $fileID = CRM_Core_DAO::singleValueQuery($query, $params);
6a488035
TO
1574 }
1575
1576 $fileDAO = new CRM_Core_DAO_File();
1577
e5077b06
AM
1578 if ($fileID) {
1579 $fileDAO->id = $fileID;
6a488035
TO
1580 }
1581
1582 $fileDAO->uri = $filename;
1583 $fileDAO->mime_type = $mimeType;
c13ff164 1584 $fileDAO->upload_date = date('YmdHis');
6a488035 1585 $fileDAO->save();
e5077b06 1586 $fileID = $fileDAO->id;
6a488035
TO
1587 $value = $filename;
1588 }
1589
1590 if (!is_array($customFormatted)) {
5f627bb5 1591 $customFormatted = [];
6a488035
TO
1592 }
1593
1594 if (!array_key_exists($customFieldId, $customFormatted)) {
5f627bb5 1595 $customFormatted[$customFieldId] = [];
6a488035
TO
1596 }
1597
1598 $index = -1;
1599 if ($customValueId) {
1600 $index = $customValueId;
1601 }
1602
1603 if (!array_key_exists($index, $customFormatted[$customFieldId])) {
5f627bb5 1604 $customFormatted[$customFieldId][$index] = [];
6a488035 1605 }
5f627bb5 1606 $customFormatted[$customFieldId][$index] = [
6a488035
TO
1607 'id' => $customValueId > 0 ? $customValueId : NULL,
1608 'value' => $value,
1609 'type' => $customFields[$customFieldId]['data_type'],
1610 'custom_field_id' => $customFieldId,
1611 'custom_group_id' => $groupID,
1612 'table_name' => $tableName,
1613 'column_name' => $columnName,
e5077b06 1614 'file_id' => $fileID,
6a488035 1615 'is_multiple' => $customFields[$customFieldId]['is_multiple'],
5f627bb5 1616 ];
6a488035
TO
1617
1618 //we need to sort so that custom fields are created in the order of entry
1619 krsort($customFormatted[$customFieldId]);
1620 return $customFormatted;
1621 }
1622
b5c2afd0 1623 /**
b60efd6a
EM
1624 * Get default custom table schema.
1625 *
c490a46a 1626 * @param array $params
b5c2afd0
EM
1627 *
1628 * @return array
1629 */
b60efd6a 1630 public static function defaultCustomTableSchema($params) {
6a488035 1631 // add the id and extends_id
799f3149
SL
1632 $collation = CRM_Core_BAO_SchemaHandler::getInUseCollation();
1633 $characterSet = 'utf8';
1634 if (stripos($collation, 'utf8mb4') !== FALSE) {
1635 $characterSet = 'utf8mb4';
1636 }
5f627bb5 1637 $table = [
6a488035
TO
1638 'name' => $params['name'],
1639 'is_multiple' => $params['is_multiple'],
799f3149 1640 'attributes' => "ENGINE=InnoDB DEFAULT CHARACTER SET {$characterSet} COLLATE {$collation}",
5f627bb5
SL
1641 'fields' => [
1642 [
6a488035
TO
1643 'name' => 'id',
1644 'type' => 'int unsigned',
1645 'primary' => TRUE,
1646 'required' => TRUE,
1647 'attributes' => 'AUTO_INCREMENT',
1648 'comment' => 'Default MySQL primary key',
5f627bb5
SL
1649 ],
1650 [
6a488035
TO
1651 'name' => 'entity_id',
1652 'type' => 'int unsigned',
1653 'required' => TRUE,
1654 'comment' => 'Table that this extends',
1655 'fk_table_name' => $params['extends_name'],
1656 'fk_field_name' => 'id',
1657 'fk_attributes' => 'ON DELETE CASCADE',
5f627bb5
SL
1658 ],
1659 ],
1660 ];
6a488035 1661
80ad1850
SL
1662 // If on MySQL 5.6 include ROW_FORMAT=DYNAMIC to fix unit tests
1663 $databaseVersion = CRM_Utils_SQL::getDatabaseVersion();
1664 if (version_compare($databaseVersion, '5.7', '<') && version_compare($databaseVersion, '5.6', '>=')) {
1665 $table['attributes'] = $table['attributes'] . ' ROW_FORMAT=DYNAMIC';
1666 }
1667
6a488035 1668 if (!$params['is_multiple']) {
5f627bb5
SL
1669 $table['indexes'] = [
1670 [
6a488035
TO
1671 'unique' => TRUE,
1672 'field_name_1' => 'entity_id',
5f627bb5
SL
1673 ],
1674 ];
6a488035
TO
1675 }
1676 return $table;
1677 }
1678
b5c2afd0 1679 /**
b60efd6a
EM
1680 * Create custom field.
1681 *
1682 * @param CRM_Core_DAO_CustomField $field
1683 * @param string $operation
b5c2afd0 1684 */
ead0c08f 1685 public static function createField($field, $operation) {
3111965c 1686 $sql = str_repeat(' ', 8);
e5ce15c3 1687 $tableName = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomGroup', $field->custom_group_id, 'table_name');
1688 $sql .= "ALTER TABLE " . $tableName;
1689 $sql .= self::getAlterFieldSQL($field, $operation);
3111965c 1690
1691 // CRM-7007: do not i18n-rewrite this query
1692 CRM_Core_DAO::executeQuery($sql, [], TRUE, NULL, FALSE, FALSE);
1693
1694 $config = CRM_Core_Config::singleton();
1695 if ($config->logging) {
1696 // CRM-16717 not sure why this was originally limited to add.
1697 // For example custom tables can have field length changes - which need to flow through to logging.
1698 // Are there any modifies we DON'T was to call this function for (& shouldn't it be clever enough to cope?)
e5ce15c3 1699 if ($operation === 'add' || $operation === 'modify') {
3111965c 1700 $logging = new CRM_Logging_Schema();
e5ce15c3 1701 $logging->fixSchemaDifferencesFor($tableName, [trim(strtoupper($operation)) => [$field->column_name]]);
3111965c 1702 }
1703 }
1704
ead0c08f 1705 Civi::service('sql_triggers')->rebuild($tableName, TRUE);
3111965c 1706 }
1707
1708 /**
1709 * @param CRM_Core_DAO_CustomField $field
a61d2ab7 1710 * @param string $operation add|modify|delete
3111965c 1711 *
1712 * @return bool
1713 */
e5ce15c3 1714 public static function getAlterFieldSQL($field, $operation) {
c914d4dd 1715 $params = self::prepareCreateParams($field, $operation);
e5ce15c3 1716 // Let's suppress the required flag, since that can cause an sql issue... for unknown reasons since we are calling
1717 // a function only used by Custom Field creation...
3111965c 1718 $params['required'] = FALSE;
ba9c74ab 1719 return CRM_Core_BAO_SchemaHandler::getFieldAlterSQL($params);
6a488035
TO
1720 }
1721
721c9da1 1722 /**
051f2455 1723 * Get query to reformat existing values for a field when changing its serialize attribute
721c9da1
CW
1724 *
1725 * @param CRM_Core_DAO_CustomField $field
051f2455 1726 * @return string
721c9da1 1727 */
051f2455 1728 private static function getAlterSerializeSQL($field) {
721c9da1
CW
1729 $table = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomGroup', $field->custom_group_id, 'table_name');
1730 $col = $field->column_name;
1731 $sp = CRM_Core_DAO::VALUE_SEPARATOR;
1732 if ($field->serialize) {
051f2455 1733 return "UPDATE `$table` SET `$col` = CONCAT('$sp', `$col`, '$sp') WHERE `$col` IS NOT NULL AND `$col` NOT LIKE '$sp%' AND `$col` != ''";
721c9da1
CW
1734 }
1735 else {
051f2455 1736 return "UPDATE `$table` SET `$col` = SUBSTRING_INDEX(SUBSTRING(`$col`, 2), '$sp', 1) WHERE `$col` LIKE '$sp%'";
721c9da1 1737 }
721c9da1
CW
1738 }
1739
6a488035 1740 /**
fe482240 1741 * Determine whether it would be safe to move a field.
6a488035 1742 *
6a0b768e
TO
1743 * @param int $fieldID
1744 * FK to civicrm_custom_field.
1745 * @param int $newGroupID
1746 * FK to civicrm_custom_group.
6a488035 1747 *
5c766a0b
TO
1748 * @return array
1749 * array(string) or TRUE
6a488035 1750 */
00be9182 1751 public static function _moveFieldValidate($fieldID, $newGroupID) {
5f627bb5 1752 $errors = [];
6a488035
TO
1753
1754 $field = new CRM_Core_DAO_CustomField();
1755 $field->id = $fieldID;
1756 if (!$field->find(TRUE)) {
1757 $errors['fieldID'] = 'Invalid ID for custom field';
1758 return $errors;
1759 }
1760
1761 $oldGroup = new CRM_Core_DAO_CustomGroup();
1762 $oldGroup->id = $field->custom_group_id;
1763 if (!$oldGroup->find(TRUE)) {
1764 $errors['fieldID'] = 'Invalid ID for old custom group';
1765 return $errors;
1766 }
1767
1768 $newGroup = new CRM_Core_DAO_CustomGroup();
1769 $newGroup->id = $newGroupID;
1770 if (!$newGroup->find(TRUE)) {
1771 $errors['newGroupID'] = 'Invalid ID for new custom group';
1772 return $errors;
1773 }
1774
1775 $query = "
1776SELECT b.id
1777FROM civicrm_custom_field a
1778INNER JOIN civicrm_custom_field b
1779WHERE a.id = %1
1780AND a.label = b.label
1781AND b.custom_group_id = %2
1782";
5f627bb5
SL
1783 $params = [
1784 1 => [$field->id, 'Integer'],
1785 2 => [$newGroup->id, 'Integer'],
1786 ];
6a488035
TO
1787 $count = CRM_Core_DAO::singleValueQuery($query, $params);
1788 if ($count > 0) {
1789 $errors['newGroupID'] = ts('A field of the same label exists in the destination group');
1790 }
1791
1792 $tableName = $oldGroup->table_name;
1793 $columnName = $field->column_name;
1794
1795 $query = "
1796SELECT count(*)
1797FROM $tableName
1798WHERE $columnName is not null
1799";
e03e1641 1800 $count = CRM_Core_DAO::singleValueQuery($query);
6a488035
TO
1801 if ($count > 0) {
1802 $query = "
1803SELECT extends
1804FROM civicrm_custom_group
1805WHERE id IN ( %1, %2 )
1806";
5f627bb5
SL
1807 $params = [
1808 1 => [$oldGroup->id, 'Integer'],
1809 2 => [$newGroup->id, 'Integer'],
1810 ];
6a488035
TO
1811
1812 $dao = CRM_Core_DAO::executeQuery($query, $params);
5f627bb5 1813 $extends = [];
6a488035
TO
1814 while ($dao->fetch()) {
1815 $extends[] = $dao->extends;
1816 }
1817 if ($extends[0] != $extends[1]) {
1818 $errors['newGroupID'] = ts('The destination group extends a different entity type.');
1819 }
1820 }
1821
1822 return empty($errors) ? TRUE : $errors;
1823 }
1824
1825 /**
b60efd6a 1826 * Move a custom data field from one group (table) to another.
6a488035 1827 *
6a0b768e
TO
1828 * @param int $fieldID
1829 * FK to civicrm_custom_field.
1830 * @param int $newGroupID
1831 * FK to civicrm_custom_group.
ac15829d
SL
1832 *
1833 * @throws CRM_Core_Exception
6a488035 1834 */
00be9182 1835 public static function moveField($fieldID, $newGroupID) {
6a488035
TO
1836 $validation = self::_moveFieldValidate($fieldID, $newGroupID);
1837 if (TRUE !== $validation) {
ac15829d 1838 throw new CRM_Core_Exception(implode(' ', $validation));
6a488035
TO
1839 }
1840 $field = new CRM_Core_DAO_CustomField();
1841 $field->id = $fieldID;
1842 $field->find(TRUE);
1843
1844 $newGroup = new CRM_Core_DAO_CustomGroup();
1845 $newGroup->id = $newGroupID;
1846 $newGroup->find(TRUE);
1847
1848 $oldGroup = new CRM_Core_DAO_CustomGroup();
1849 $oldGroup->id = $field->custom_group_id;
1850 $oldGroup->find(TRUE);
1851
1852 $add = clone$field;
1853 $add->custom_group_id = $newGroup->id;
1854 self::createField($add, 'add');
1855
4f426b76
BS
1856 $sql = "INSERT INTO {$newGroup->table_name} (entity_id, `{$field->column_name}`)
1857 SELECT entity_id, `{$field->column_name}` FROM {$oldGroup->table_name}
1858 ON DUPLICATE KEY UPDATE `{$field->column_name}` = {$oldGroup->table_name}.`{$field->column_name}`
6a488035
TO
1859 ";
1860 CRM_Core_DAO::executeQuery($sql);
1861
1862 $del = clone$field;
1863 $del->custom_group_id = $oldGroup->id;
1864 self::createField($del, 'delete');
1865
1866 $add->save();
1867
1868 CRM_Utils_System::flushCache();
1869 }
1870
554a91f6 1871 /**
1872 * Create an option value for a custom field option group ID.
1873 *
1874 * @param array $params
1875 * @param string $value
1876 * @param \CRM_Core_DAO_OptionGroup $optionGroup
bb6bfd68 1877 * @param string $index
554a91f6 1878 * @param string $dataType
1879 */
bb6bfd68 1880 protected static function createOptionValue(&$params, $value, CRM_Core_DAO_OptionGroup $optionGroup, $index, $dataType) {
554a91f6 1881 if (strlen(trim($value))) {
1882 $optionValue = new CRM_Core_DAO_OptionValue();
1883 $optionValue->option_group_id = $optionGroup->id;
bb6bfd68
CW
1884 $optionValue->label = $params['option_label'][$index];
1885 $optionValue->name = $params['option_name'][$index] ?? CRM_Utils_String::titleToVar($params['option_label'][$index]);
554a91f6 1886 switch ($dataType) {
1887 case 'Money':
1888 $optionValue->value = CRM_Utils_Rule::cleanMoney($value);
1889 break;
1890
1891 case 'Int':
1892 $optionValue->value = intval($value);
1893 break;
1894
1895 case 'Float':
1896 $optionValue->value = floatval($value);
1897 break;
1898
1899 default:
1900 $optionValue->value = trim($value);
1901 }
1902
bb6bfd68
CW
1903 $optionValue->weight = $params['option_weight'][$index];
1904 $optionValue->is_active = $params['option_status'][$index] ?? FALSE;
1905 $optionValue->description = $params['option_description'][$index] ?? NULL;
1906 $optionValue->color = $params['option_color'][$index] ?? NULL;
1907 $optionValue->icon = $params['option_icon'][$index] ?? NULL;
554a91f6 1908 $optionValue->save();
1909 }
1910 }
1911
4f166aec 1912 /**
1913 * Prepare for the create operation.
1914 *
1915 * Munge params, create the option values if needed.
1916 *
1917 * This could be called by a single create or a batchCreate.
1918 *
1919 * @param array $params
4f166aec 1920 *
1921 * @return array
1922 */
e43db21d 1923 protected static function prepareCreate($params) {
1924 $op = empty($params['id']) ? 'create' : 'edit';
4f166aec 1925 CRM_Utils_Hook::pre($op, 'CustomField', CRM_Utils_Array::value('id', $params), $params);
b5c280fc 1926 $params['is_append_field_id_to_column_name'] = !isset($params['column_name']);
4f166aec 1927 if ($op === 'create') {
1928 CRM_Core_DAO::setCreateDefaults($params, self::getDefaults());
1929 if (!isset($params['column_name'])) {
1930 // if add mode & column_name not present, calculate it.
1931 $params['column_name'] = strtolower(CRM_Utils_String::munge($params['label'], '_', 32));
1932 }
1933 if (!isset($params['name'])) {
1934 $params['name'] = CRM_Utils_String::munge($params['label'], '_', 64);
1935 }
1936 }
1937 else {
299e3946 1938 $params['column_name'] = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomField', $params['id'], 'column_name');
4f166aec 1939 }
1940
299e3946
CW
1941 $htmlType = $params['html_type'] ?? NULL;
1942 $dataType = $params['data_type'] ?? NULL;
4f166aec 1943
299e3946
CW
1944 if ($htmlType === 'Select Date' && empty($params['date_format'])) {
1945 $params['date_format'] = Civi::settings()->get('dateInputFormat');
1946 }
4f166aec 1947
fdd11b39
CW
1948 // Checkboxes are always serialized in current schema
1949 if ($htmlType == 'CheckBox') {
1950 $params['serialize'] = CRM_Core_DAO::SERIALIZE_SEPARATOR_BOOKEND;
1951 }
1952
1953 if (!empty($params['serialize'])) {
299e3946
CW
1954 if (isset($params['default_checkbox_option'])) {
1955 $defaultArray = [];
1956 foreach (array_keys($params['default_checkbox_option']) as $k => $v) {
1957 if ($params['option_value'][$v]) {
1958 $defaultArray[] = $params['option_value'][$v];
4f166aec 1959 }
1960 }
299e3946
CW
1961
1962 if (!empty($defaultArray)) {
1963 // also add the separator before and after the value per new convention (CRM-1604)
1964 $params['default_value'] = CRM_Utils_Array::implodePadded($defaultArray);
4f166aec 1965 }
299e3946
CW
1966 }
1967 else {
1968 if (!empty($params['default_option']) && isset($params['option_value'][$params['default_option']])) {
1969 $params['default_value'] = $params['option_value'][$params['default_option']];
1970 }
1971 }
4f166aec 1972 }
1973
4f166aec 1974 // create any option group & values if required
299e3946
CW
1975 $allowedOptionTypes = ['String', 'Int', 'Float', 'Money'];
1976 if ($htmlType != 'Text' && in_array($dataType, $allowedOptionTypes)) {
4f166aec 1977 //CRM-16659: if option_value then create an option group for this custom field.
1978 if ($params['option_type'] == 1 && (empty($params['option_group_id']) || !empty($params['option_value']))) {
1979 // first create an option group for this custom group
1980 $optionGroup = new CRM_Core_DAO_OptionGroup();
1981 $optionGroup->name = "{$params['column_name']}_" . date('YmdHis');
1982 $optionGroup->title = $params['label'];
1983 $optionGroup->is_active = 1;
1984 // Don't set reserved as it's not a built-in option group and may be useful for other custom fields.
1985 $optionGroup->is_reserved = 0;
1986 $optionGroup->data_type = $dataType;
1987 $optionGroup->save();
1988 $params['option_group_id'] = $optionGroup->id;
1989 if (!empty($params['option_value']) && is_array($params['option_value'])) {
1990 foreach ($params['option_value'] as $k => $v) {
1991 self::createOptionValue($params, $v, $optionGroup, $k, $dataType);
1992 }
1993 }
1994 }
1995 }
1996
1997 // check for orphan option groups
1998 if (!empty($params['option_group_id'])) {
1999 if (!empty($params['id'])) {
2000 self::fixOptionGroups($params['id'], $params['option_group_id']);
2001 }
2002
2003 // if we do not have a default value
2004 // retrieve it from one of the other custom fields which use this option group
2005 if (empty($params['default_value'])) {
2006 //don't insert only value separator as default value, CRM-4579
5967bdb6 2007 $defaultValue = self::getOptionGroupDefault($params['option_group_id'], !empty($params['serialize']));
4f166aec 2008
299e3946 2009 if (!CRM_Utils_System::isNull(explode(CRM_Core_DAO::VALUE_SEPARATOR, $defaultValue))) {
4f166aec 2010 $params['default_value'] = $defaultValue;
2011 }
2012 }
2013 }
2014
33482697
CW
2015 // Set default textarea attributes
2016 if ($op == 'create' && !isset($params['attributes']) && $htmlType == 'TextArea') {
4f166aec 2017 $params['attributes'] = 'rows=4, cols=60';
2018 }
2019 return $params;
2020 }
2021
f45a42ba 2022 /**
2023 * Create database entry for custom field and related option groups.
2024 *
2025 * @param array $params
2026 *
2027 * @return CRM_Core_DAO_CustomField
2028 */
2029 protected static function createCustomFieldRecord($params) {
2030 $transaction = new CRM_Core_Transaction();
2031 $params = self::prepareCreate($params);
2032
2033 $customField = new CRM_Core_DAO_CustomField();
2034 $customField->copyValues($params);
2035 $customField->save();
2036
2037 //create/drop the index when we toggle the is_searchable flag
2038 $op = empty($params['id']) ? 'add' : 'modify';
2039 if ($op !== 'modify') {
2040 if ($params['is_append_field_id_to_column_name']) {
2041 $params['column_name'] .= "_{$customField->id}";
2042 }
2043 $customField->column_name = $params['column_name'];
2044 $customField->save();
2045 }
2046
2047 // complete transaction - note that any table alterations include an implicit commit so this is largely meaningless.
2048 $transaction->commit();
2049
2050 // make sure all values are present in the object for further processing
2051 $customField->find(TRUE);
721c9da1 2052
f45a42ba 2053 return $customField;
2054 }
2055
051f2455
CW
2056 /**
2057 * @param $params
2058 * @return int|null
2059 */
2060 protected static function getChangeSerialize($params) {
2061 if (isset($params['serialize']) && !empty($params['id'])) {
2062 if ($params['serialize'] != CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomField', $params['id'], 'serialize')) {
2063 return (int) $params['serialize'];
2064 }
2065 }
2066 return NULL;
2067 }
2068
1600a9c0 2069 /**
2070 * Move custom data from one contact to another.
2071 *
2072 * This is currently the start of a refactoring. The theory is each
2073 * entity could have a 'move' function with a DAO default one to fall back on.
2074 *
2075 * At the moment this only does a small part of the process - ie deleting a file field that
2076 * is about to be overwritten. However, the goal is the whole process around the move for
2077 * custom data should be in here.
2078 *
2079 * This is currently called by the merge class but it makes sense that api could
2080 * expose move actions as moving (e.g) contributions feels like a common
2081 * ask that should be handled by the form layer.
2082 *
2083 * @param int $oldContactID
2084 * @param int $newContactID
2085 * @param int[] $fieldIDs
2086 * Optional list field ids to move.
2087 *
2088 * @throws \CiviCRM_API3_Exception
2089 * @throws \Exception
2090 */
2091 public function move($oldContactID, $newContactID, $fieldIDs) {
2092 if (empty($fieldIDs)) {
2093 return;
2094 }
2095 $fields = civicrm_api3('CustomField', 'get', ['id' => ['IN' => $fieldIDs], 'return' => ['custom_group_id.is_multiple', 'custom_group_id.table_name', 'column_name', 'data_type'], 'options' => ['limit' => 0]])['values'];
2096 $return = [];
2097 foreach ($fieldIDs as $fieldID) {
2098 $return[] = 'custom_' . $fieldID;
2099 }
2100 $oldContact = civicrm_api3('Contact', 'getsingle', ['id' => $oldContactID, 'return' => $return]);
2101 $newContact = civicrm_api3('Contact', 'getsingle', ['id' => $newContactID, 'return' => $return]);
2102
2103 // The moveAllBelongings function has functionality to move custom fields. It doesn't work very well...
2104 // @todo handle all fields here but more immediately Country since that is broken at the moment.
2105 $fieldTypesNotHandledInMergeAttempt = ['File'];
2106 foreach ($fields as $field) {
2107 $isMultiple = !empty($field['custom_group_id.is_multiple']);
2108 if ($field['data_type'] === 'File' && !$isMultiple) {
2109 if (!empty($oldContact['custom_' . $field['id']]) && !empty($newContact['custom_' . $field['id']])) {
2110 CRM_Core_BAO_File::deleteFileReferences($oldContact['custom_' . $field['id']], $oldContactID, $field['id']);
2111 }
2112 if (!empty($oldContact['custom_' . $field['id']])) {
2113 CRM_Core_DAO::executeQuery("
2114 UPDATE civicrm_entity_file
2115 SET entity_id = $newContactID
2116 WHERE file_id = {$oldContact['custom_' . $field['id']]}"
2117 );
2118 }
2119 }
2120 if (in_array($field['data_type'], $fieldTypesNotHandledInMergeAttempt) && !$isMultiple) {
2121 CRM_Core_DAO::executeQuery(
4f426b76 2122 "INSERT INTO {$field['custom_group_id.table_name']} (entity_id, `{$field['column_name']}`)
1600a9c0 2123 VALUES ($newContactID, {$oldContact['custom_' . $field['id']]})
2124 ON DUPLICATE KEY UPDATE
4f426b76 2125 `{$field['column_name']}` = {$oldContact['custom_' . $field['id']]}
1600a9c0 2126 ");
2127 }
2128 }
2129 }
2130
6a488035 2131 /**
fe482240 2132 * Get the database table name and column name for a custom field.
6a488035 2133 *
6a0b768e
TO
2134 * @param int $fieldID
2135 * The fieldID of the custom field.
2136 * @param bool $force
2137 * Force the sql to be run again (primarily used for tests).
6a488035 2138 *
a6c01b45
CW
2139 * @return array
2140 * fatal is fieldID does not exists, else array of tableName, columnName
ac15829d 2141 * @throws \CRM_Core_Exception
6a488035 2142 */
00be9182 2143 public static function getTableColumnGroup($fieldID, $force = FALSE) {
f9f40af3
TO
2144 $cacheKey = "CRM_Core_DAO_CustomField_CustomGroup_TableColumn_{$fieldID}";
2145 $cache = CRM_Utils_Cache::singleton();
6a488035
TO
2146 $fieldValues = $cache->get($cacheKey);
2147 if (empty($fieldValues) || $force) {
2148 $query = "
2149SELECT cg.table_name, cf.column_name, cg.id
2150FROM civicrm_custom_group cg,
2151 civicrm_custom_field cf
2152WHERE cf.custom_group_id = cg.id
2153AND cf.id = %1";
5f627bb5 2154 $params = [1 => [$fieldID, 'Integer']];
6a488035
TO
2155 $dao = CRM_Core_DAO::executeQuery($query, $params);
2156
2157 if (!$dao->fetch()) {
ac15829d 2158 throw new CRM_Core_Exception("Cannot find table and column information for Custom Field " . $fieldID);
6a488035 2159 }
5f627bb5 2160 $fieldValues = [$dao->table_name, $dao->column_name, $dao->id];
6a488035
TO
2161 $cache->set($cacheKey, $fieldValues);
2162 }
2163 return $fieldValues;
2164 }
2165
2166 /**
fe482240 2167 * Get custom option groups.
6a488035 2168 *
c0fce6be
MW
2169 * @deprecated Use the API OptionGroup.get
2170 *
6a0b768e 2171 * @param array $includeFieldIds
b60efd6a 2172 * Ids of custom fields for which option groups must be included.
6a488035
TO
2173 *
2174 * Currently this is required in the cases where option groups are to be included
2175 * for inactive fields : CRM-5369
2176 *
72b3a70c 2177 * @return mixed
6a488035 2178 */
b60efd6a 2179 public static function customOptionGroup($includeFieldIds = NULL) {
6a488035
TO
2180 static $customOptionGroup = NULL;
2181
2182 $cacheKey = (empty($includeFieldIds)) ? 'onlyActive' : 'force';
2183 if ($cacheKey == 'force') {
2184 $customOptionGroup[$cacheKey] = NULL;
2185 }
2186
a7488080 2187 if (empty($customOptionGroup[$cacheKey])) {
6a488035
TO
2188 $whereClause = '( g.is_active = 1 AND f.is_active = 1 )';
2189
2190 //support for single as well as array format.
2191 if (!empty($includeFieldIds)) {
2192 if (is_array($includeFieldIds)) {
2193 $includeFieldIds = implode(',', $includeFieldIds);
2194 }
2195 $whereClause .= "OR f.id IN ( $includeFieldIds )";
2196 }
2197
2198 $query = "
2199 SELECT g.id, g.title
2200 FROM civicrm_option_group g
2201INNER JOIN civicrm_custom_field f ON ( g.id = f.option_group_id )
2202 WHERE {$whereClause}";
2203
2204 $dao = CRM_Core_DAO::executeQuery($query);
2205 while ($dao->fetch()) {
2206 $customOptionGroup[$cacheKey][$dao->id] = $dao->title;
2207 }
2208 }
2209
2210 return $customOptionGroup[$cacheKey];
2211 }
2212
58c232cb 2213 /**
2214 * Get defaults for new entity.
2215 *
2216 * @return array
2217 */
2218 public static function getDefaults() {
2219 return [
2220 'is_required' => FALSE,
2221 'is_searchable' => FALSE,
2222 'in_selector' => FALSE,
2223 'is_search_range' => FALSE,
2224 //CRM-15792 - Custom field gets disabled if is_active not set
2225 // this would ideally be a mysql default.
2226 'is_active' => TRUE,
2227 'is_view' => FALSE,
2228 ];
2229 }
2230
6a488035 2231 /**
fe482240 2232 * Fix orphan groups.
6a488035 2233 *
6a0b768e
TO
2234 * @param int $customFieldId
2235 * Custom field id.
2236 * @param int $optionGroupId
2237 * Option group id.
6a488035 2238 */
00be9182 2239 public static function fixOptionGroups($customFieldId, $optionGroupId) {
6a488035
TO
2240 // check if option group belongs to any custom Field else delete
2241 // get the current option group
2242 $currentOptionGroupId = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomField',
2243 $customFieldId,
2244 'option_group_id'
2245 );
2246 // get the updated option group
2247 // if both are same return
aa4143bb 2248 if (!$currentOptionGroupId || $currentOptionGroupId == $optionGroupId) {
6a488035
TO
2249 return;
2250 }
2251
2252 // check if option group is related to any other field
2253 self::checkOptionGroup($currentOptionGroupId);
2254 }
2255
2256 /**
b60efd6a 2257 * Check if option group is related to more than one custom field.
6a488035 2258 *
6a0b768e
TO
2259 * @param int $optionGroupId
2260 * Option group id.
6a488035 2261 */
00be9182 2262 public static function checkOptionGroup($optionGroupId) {
6a488035
TO
2263 $query = "
2264SELECT count(*)
2265FROM civicrm_custom_field
2266WHERE option_group_id = {$optionGroupId}";
2267
2268 $count = CRM_Core_DAO::singleValueQuery($query);
2269
2270 if ($count < 2) {
2271 //delete the option group
2272 CRM_Core_BAO_OptionGroup::del($optionGroupId);
2273 }
2274 }
2275
b5c2afd0 2276 /**
b60efd6a
EM
2277 * Get option group default.
2278 *
100fef9d 2279 * @param int $optionGroupId
5967bdb6 2280 * @param bool $serialize
b5c2afd0
EM
2281 *
2282 * @return null|string
2283 */
5967bdb6 2284 public static function getOptionGroupDefault($optionGroupId, $serialize) {
6a488035 2285 $query = "
5967bdb6 2286SELECT default_value, serialize
6a488035
TO
2287FROM civicrm_custom_field
2288WHERE option_group_id = {$optionGroupId}
5967bdb6 2289AND default_value IS NOT NULL";
6a488035 2290
f9f40af3 2291 $dao = CRM_Core_DAO::executeQuery($query);
6a488035 2292 while ($dao->fetch()) {
5967bdb6 2293 if ($dao->serialize == $serialize) {
6a488035
TO
2294 return $dao->default_value;
2295 }
5967bdb6 2296 $defaultValue = $dao->default_value;
6a488035
TO
2297 }
2298
5967bdb6
CW
2299 // Convert serialization
2300 if (isset($defaultValue) && $serialize) {
2301 return CRM_Utils_Array::implodePadded([$defaultValue]);
6a488035 2302 }
5967bdb6
CW
2303 elseif (isset($defaultValue)) {
2304 return CRM_Utils_Array::explodePadded($defaultValue)[0];
6a488035 2305 }
5967bdb6 2306 return NULL;
6a488035
TO
2307 }
2308
b5c2afd0 2309 /**
b60efd6a
EM
2310 * Post process function.
2311 *
c490a46a 2312 * @param array $params
100fef9d 2313 * @param int $entityID
b60efd6a 2314 * @param string $customFieldExtends
b5c2afd0 2315 * @param bool $inline
e9ff5391 2316 * @param bool $checkPermissions
b5c2afd0
EM
2317 *
2318 * @return array
2319 */
2da40d21 2320 public static function postProcess(
f9f40af3 2321 &$params,
6a488035
TO
2322 $entityID,
2323 $customFieldExtends,
e9ff5391 2324 $inline = FALSE,
2325 $checkPermissions = TRUE
6a488035 2326 ) {
5f627bb5 2327 $customData = [];
6a488035
TO
2328
2329 foreach ($params as $key => $value) {
2330 if ($customFieldInfo = CRM_Core_BAO_CustomField::getKeyID($key, TRUE)) {
2331
2332 // for autocomplete transfer hidden value instead of label
2333 if ($params[$key] && isset($params[$key . '_id'])) {
2334 $value = $params[$key . '_id'];
2335 }
2336
2337 // we need to append time with date
2338 if ($params[$key] && isset($params[$key . '_time'])) {
2339 $value .= ' ' . $params[$key . '_time'];
2340 }
2341
2342 CRM_Core_BAO_CustomField::formatCustomField($customFieldInfo[0],
2343 $customData,
2344 $value,
2345 $customFieldExtends,
2346 $customFieldInfo[1],
2347 $entityID,
e9ff5391 2348 $inline,
2349 $checkPermissions
6a488035
TO
2350 );
2351 }
2352 }
2353 return $customData;
2354 }
2355
2921fb78 2356 /**
b906accb 2357 * Get custom field ID from field/group name/title.
2921fb78 2358 *
b906accb 2359 * @param string $fieldName Field name or label
30b6e002 2360 * @param string|null $groupName (Optional) Group name or label
b906accb 2361 * @param bool $fullString Whether to return "custom_123" or "123"
b60efd6a 2362 *
b906accb
MW
2363 * @return string|int|null
2364 * @throws \CiviCRM_API3_Exception
b5c2afd0 2365 */
30b6e002
PF
2366 public static function getCustomFieldID($fieldName, $groupName = NULL, $fullString = FALSE) {
2367 $cacheKey = $groupName . '.' . $fieldName;
2368 if (!isset(Civi::$statics['CRM_Core_BAO_CustomField'][$cacheKey])) {
b906accb
MW
2369 $customFieldParams = [
2370 'name' => $fieldName,
2371 'label' => $fieldName,
2372 'options' => ['or' => [["name", "label"]]],
2373 ];
2374
30b6e002
PF
2375 if ($groupName) {
2376 $customFieldParams['custom_group_id.name'] = $groupName;
2377 $customFieldParams['custom_group_id.title'] = $groupName;
b906accb
MW
2378 $customFieldParams['options'] = ['or' => [["name", "label"], ["custom_group_id.name", "custom_group_id.title"]]];
2379 }
6a488035 2380
b906accb
MW
2381 $field = civicrm_api3('CustomField', 'get', $customFieldParams);
2382
2383 if (empty($field['id'])) {
30b6e002
PF
2384 Civi::$statics['CRM_Core_BAO_CustomField'][$cacheKey]['id'] = NULL;
2385 Civi::$statics['CRM_Core_BAO_CustomField'][$cacheKey]['string'] = NULL;
b906accb
MW
2386 }
2387 else {
30b6e002
PF
2388 Civi::$statics['CRM_Core_BAO_CustomField'][$cacheKey]['id'] = $field['id'];
2389 Civi::$statics['CRM_Core_BAO_CustomField'][$cacheKey]['string'] = 'custom_' . $field['id'];
b906accb 2390 }
6a488035 2391 }
b906accb
MW
2392
2393 if ($fullString) {
30b6e002 2394 return Civi::$statics['CRM_Core_BAO_CustomField'][$cacheKey]['string'];
6a488035 2395 }
30b6e002 2396 return Civi::$statics['CRM_Core_BAO_CustomField'][$cacheKey]['id'];
6a488035
TO
2397 }
2398
2399 /**
2400 * Given ID of a custom field, return its name as well as the name of the custom group it belongs to.
67f947ac
EM
2401 *
2402 * @param array $ids
2403 *
2404 * @return array
6a488035 2405 */
00be9182 2406 public static function getNameFromID($ids) {
6a488035
TO
2407 if (is_array($ids)) {
2408 $ids = implode(',', $ids);
2409 }
2410 $sql = "
2411SELECT f.id, f.name AS field_name, f.label AS field_label, g.name AS group_name, g.title AS group_title
2412FROM civicrm_custom_field f
2413INNER JOIN civicrm_custom_group g ON f.custom_group_id = g.id
2414WHERE f.id IN ($ids)";
2415
6a488035 2416 $dao = CRM_Core_DAO::executeQuery($sql);
5f627bb5 2417 $result = [];
6a488035 2418 while ($dao->fetch()) {
5f627bb5 2419 $result[$dao->id] = [
6a488035
TO
2420 'field_name' => $dao->field_name,
2421 'field_label' => $dao->field_label,
2422 'group_name' => $dao->group_name,
2423 'group_title' => $dao->group_title,
5f627bb5 2424 ];
6a488035
TO
2425 }
2426 return $result;
2427 }
2428
2429 /**
2430 * Validate custom data.
2431 *
6a0b768e
TO
2432 * @param array $params
2433 * Custom data submitted.
16b10e64 2434 * ie array( 'custom_1' => 'validate me' );
6a488035 2435 *
a6c01b45
CW
2436 * @return array
2437 * validation errors.
6a488035 2438 */
00be9182 2439 public static function validateCustomData($params) {
5f627bb5 2440 $errors = [];
6a488035
TO
2441 if (!is_array($params) || empty($params)) {
2442 return $errors;
2443 }
2444
6a488035 2445 //pick up profile fields.
5f627bb5 2446 $profileFields = [];
9c1bc317 2447 $ufGroupId = $params['ufGroupId'] ?? NULL;
6a488035
TO
2448 if ($ufGroupId) {
2449 $profileFields = CRM_Core_BAO_UFGroup::getFields($ufGroupId,
2450 FALSE,
2451 CRM_Core_Action::VIEW
2452 );
2453 }
2454
2455 //lets start w/ params.
2456 foreach ($params as $key => $value) {
2457 $customFieldID = self::getKeyID($key);
2458 if (!$customFieldID) {
2459 continue;
2460 }
2461
2462 //load the structural info for given field.
2463 $field = new CRM_Core_DAO_CustomField();
2464 $field->id = $customFieldID;
2465 if (!$field->find(TRUE)) {
2466 continue;
2467 }
2468 $dataType = $field->data_type;
2469
5f627bb5 2470 $profileField = CRM_Utils_Array::value($key, $profileFields, []);
9c1bc317
CW
2471 $fieldTitle = $profileField['title'] ?? NULL;
2472 $isRequired = $profileField['is_required'] ?? NULL;
6a488035
TO
2473 if (!$fieldTitle) {
2474 $fieldTitle = $field->label;
2475 }
2476
2477 //no need to validate.
2478 if (CRM_Utils_System::isNull($value) && !$isRequired) {
2479 continue;
2480 }
2481
2482 //lets validate first for required field.
2483 if ($isRequired && CRM_Utils_System::isNull($value)) {
5f627bb5 2484 $errors[$key] = ts('%1 is a required field.', [1 => $fieldTitle]);
6a488035
TO
2485 continue;
2486 }
2487
2488 //now time to take care of custom field form rules.
2489 $ruleName = $errorMsg = NULL;
2490 switch ($dataType) {
2491 case 'Int':
2492 $ruleName = 'integer';
2493 $errorMsg = ts('%1 must be an integer (whole number).',
2494 array(1 => $fieldTitle)
2495 );
2496 break;
2497
2498 case 'Money':
2499 $ruleName = 'money';
2500 $errorMsg = ts('%1 must in proper money format. (decimal point/comma/space is allowed).',
2501 array(1 => $fieldTitle)
2502 );
2503 break;
2504
2505 case 'Float':
2506 $ruleName = 'numeric';
2507 $errorMsg = ts('%1 must be a number (with or without decimal point).',
2508 array(1 => $fieldTitle)
2509 );
2510 break;
2511
2512 case 'Link':
2513 $ruleName = 'wikiURL';
2514 $errorMsg = ts('%1 must be valid Website.',
2515 array(1 => $fieldTitle)
2516 );
2517 break;
2518 }
2519
2520 if ($ruleName && !CRM_Utils_System::isNull($value)) {
2521 $valid = FALSE;
2522 $funName = "CRM_Utils_Rule::{$ruleName}";
2523 if (is_callable($funName)) {
2524 $valid = call_user_func($funName, $value);
2525 }
2526 if (!$valid) {
2527 $errors[$key] = $errorMsg;
2528 }
2529 }
2530 }
2531
2532 return $errors;
2533 }
2534
ffd93213 2535 /**
b60efd6a
EM
2536 * Is this field a multi record field.
2537 *
100fef9d 2538 * @param int $customId
ffd93213
EM
2539 *
2540 * @return bool
2541 */
00be9182 2542 public static function isMultiRecordField($customId) {
6a488035
TO
2543 $isMultipleWithGid = FALSE;
2544 if (!is_numeric($customId)) {
2545 $customId = self::getKeyID($customId);
2546 }
2547 if (is_numeric($customId)) {
2548 $sql = "SELECT cg.id cgId
2549 FROM civicrm_custom_group cg
2550 INNER JOIN civicrm_custom_field cf
2551 ON cg.id = cf.custom_group_id
2552WHERE cf.id = %1 AND cg.is_multiple = 1";
5f627bb5 2553 $params[1] = [$customId, 'Integer'];
6a488035
TO
2554 $dao = CRM_Core_DAO::executeQuery($sql, $params);
2555 if ($dao->fetch()) {
2556 if ($dao->cgId) {
2557 $isMultipleWithGid = $dao->cgId;
2558 }
2559 }
2560 }
2561
2562 return $isMultipleWithGid;
2563 }
3130209f 2564
1f8ac3d2
CW
2565 /**
2566 * Does this field type have any select options?
2567 *
2568 * @param array $field
2569 *
2570 * @return bool
2571 */
2572 public static function hasOptions($field) {
2573 // Fields retrieved via api are an array, or from the dao are an object. We'll accept either.
2574 $field = (array) $field;
2575 // This will include boolean fields with Yes/No options.
2576 if (in_array($field['html_type'], ['Radio', 'CheckBox'])) {
2577 return TRUE;
2578 }
2579 // Do this before the "Select" string search because date fields have a "Select Date" html_type
2580 // and contactRef fields have an "Autocomplete-Select" html_type - contacts are an FK not an option list.
2581 if (in_array($field['data_type'], ['ContactReference', 'Date'])) {
2582 return FALSE;
2583 }
2584 if (strpos($field['html_type'], 'Select') !== FALSE) {
2585 return TRUE;
2586 }
2587 return !empty($field['option_group_id']);
2588 }
2589
3130209f
CW
2590 /**
2591 * Does this field store a serialized string?
b60efd6a 2592 *
5ea026c1 2593 * @param CRM_Core_DAO_CustomField|array $field
b60efd6a 2594 *
3130209f
CW
2595 * @return bool
2596 */
00be9182 2597 public static function isSerialized($field) {
3130209f 2598 // Fields retrieved via api are an array, or from the dao are an object. We'll accept either.
3766bd36 2599 $html_type = is_object($field) ? $field->html_type : $field['html_type'];
5ea026c1
CW
2600 // APIv3 has a "legacy" mode where it returns old-style html_type of "Multi-Select"
2601 // If anyone is using this function in conjunction with legacy api output, we'll accomodate:
2602 if ($html_type === 'CheckBox' || strpos($html_type, 'Multi') !== FALSE) {
2603 return TRUE;
2604 }
d51a6a62 2605 // Otherwise this is the new standard as of 5.27
5ea026c1 2606 return is_object($field) ? !empty($field->serialize) : !empty($field['serialize']);
3130209f 2607 }
96025800 2608
01057d41
CW
2609 /**
2610 * Get api entity for this field
2611 *
2612 * @return string
2613 */
2614 public function getEntity() {
2615 $entity = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_CustomGroup', $this->custom_group_id, 'extends');
5f627bb5 2616 return in_array($entity, ['Individual', 'Household', 'Organization']) ? 'Contact' : $entity;
01057d41
CW
2617 }
2618
14f42e31 2619 /**
3b66f502 2620 * Set pseudoconstant properties for field metadata.
b60efd6a 2621 *
14f42e31
CW
2622 * @param array $field
2623 * @param string|null $optionGroupName
2624 */
2625 private static function getOptionsForField(&$field, $optionGroupName) {
2626 if ($optionGroupName) {
5f627bb5 2627 $field['pseudoconstant'] = [
14f42e31
CW
2628 'optionGroupName' => $optionGroupName,
2629 'optionEditPath' => 'civicrm/admin/options/' . $optionGroupName,
5f627bb5 2630 ];
14f42e31
CW
2631 }
2632 elseif ($field['data_type'] == 'Boolean') {
5f627bb5 2633 $field['pseudoconstant'] = [
14f42e31 2634 'callback' => 'CRM_Core_SelectValues::boolean',
5f627bb5 2635 ];
14f42e31
CW
2636 }
2637 elseif ($field['data_type'] == 'Country') {
5f627bb5 2638 $field['pseudoconstant'] = [
14f42e31
CW
2639 'table' => 'civicrm_country',
2640 'keyColumn' => 'id',
2641 'labelColumn' => 'name',
2642 'nameColumn' => 'iso_code',
5f627bb5 2643 ];
14f42e31
CW
2644 }
2645 elseif ($field['data_type'] == 'StateProvince') {
5f627bb5 2646 $field['pseudoconstant'] = [
14f42e31
CW
2647 'table' => 'civicrm_state_province',
2648 'keyColumn' => 'id',
2649 'labelColumn' => 'name',
5f627bb5 2650 ];
14f42e31
CW
2651 }
2652 }
2653
c914d4dd 2654 /**
2655 * @param CRM_Core_DAO_CustomField $field
a61d2ab7 2656 * @param 'add|modify|delete' $operation
c914d4dd 2657 *
2658 * @return array
2659 */
2660 protected static function prepareCreateParams($field, $operation) {
2661 $tableName = CRM_Core_DAO::getFieldValue(
2662 'CRM_Core_DAO_CustomGroup',
2663 $field->custom_group_id,
2664 'table_name'
2665 );
2666
2667 $params = [
2668 'table_name' => $tableName,
2669 'operation' => $operation,
2670 'name' => $field->column_name,
2671 'type' => CRM_Core_BAO_CustomValueTable::fieldToSQLType(
2672 $field->data_type,
2673 $field->text_length
2674 ),
2675 'required' => $field->is_required,
2676 'searchable' => $field->is_searchable,
2677 ];
2678
051f2455
CW
2679 // For adding/dropping FK constraints
2680 $params['fkName'] = CRM_Core_BAO_SchemaHandler::getIndexName($tableName, $field->column_name);
2681
a61d2ab7
CW
2682 $fkFields = [
2683 'Country' => 'civicrm_country',
2684 'StateProvince' => 'civicrm_state_province',
2685 'ContactReference' => 'civicrm_contact',
2686 'File' => 'civicrm_file',
2687 ];
2688 if (isset($fkFields[$field->data_type])) {
2689 // Serialized fields store value-separated strings which are incompatible with FK constraints
2690 if ($field->serialize) {
2691 $params['type'] = 'varchar(255)';
2692 }
2693 else {
2694 $params['fk_table_name'] = $fkFields[$field->data_type];
2695 $params['fk_field_name'] = 'id';
2696 $params['fk_attributes'] = 'ON DELETE SET NULL';
2697 }
c914d4dd 2698 }
a61d2ab7 2699
c914d4dd 2700 if (isset($field->default_value)) {
2701 $params['default'] = "'{$field->default_value}'";
2702 }
2703 return $params;
2704 }
2705
6a488035 2706}