Merge pull request #11226 from seamuslee001/CRM-21378
[civicrm-core.git] / CRM / Core / BAO / OptionValue.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
0f03f337 6 | Copyright CiviCRM LLC (c) 2004-2017 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
0f03f337 31 * @copyright CiviCRM LLC (c) 2004-2017
6a488035
TO
32 */
33class CRM_Core_BAO_OptionValue extends CRM_Core_DAO_OptionValue {
34
35 /**
fe482240 36 * Class constructor.
6a488035 37 */
00be9182 38 public function __construct() {
6a488035
TO
39 parent::__construct();
40 }
77b97be7 41
9fe6051a 42 /**
8eedd10a 43 * Create option value.
44 *
45 * Note that the create function calls 'add' but has more business logic.
77b97be7 46 *
6a0b768e
TO
47 * @param array $params
48 * Input parameters.
77b97be7
EM
49 *
50 * @return object
51 */
00be9182 52 public static function create($params) {
9b873358 53 if (empty($params['id'])) {
c87bbced 54 self::setDefaults($params);
55 }
56 $ids = array();
a7488080 57 if (!empty($params['id'])) {
c87bbced 58 $ids = array('optionValue' => $params['id']);
59 }
d3e86119 60 return CRM_Core_BAO_OptionValue::add($params, $ids);
c87bbced 61 }
353ffa53 62
c87bbced 63 /**
fe482240 64 * Set default Parameters.
c87bbced 65 * This functions sets default parameters if not set:
66 * - name & label are set to each other as required (it might make more sense for one
67 * to be required but this would mean a change to the api level)
9fe6051a 68 * - weight & value will be set to their respective option groups next values
69 * if nothing is passed in.
70 *
71 * Note this function does not check for presence of $params['id'] so should only be called
72 * if 'id' is not present
c87bbced 73 *
9fe6051a 74 * @param array $params
c87bbced 75 */
9b873358
TO
76 public static function setDefaults(&$params) {
77 if (CRM_Utils_Array::value('label', $params, NULL) === NULL) {
c87bbced 78 $params['label'] = $params['name'];
79 }
9b873358 80 if (CRM_Utils_Array::value('name', $params, NULL) === NULL) {
c87bbced 81 $params['name'] = $params['label'];
82 }
9b873358 83 if (CRM_Utils_Array::value('weight', $params, NULL) === NULL) {
983e888c 84 $params['weight'] = self::getDefaultWeight($params);
c87bbced 85 }
9b873358 86 if (CRM_Utils_Array::value('value', $params, NULL) === NULL) {
1c6b7d30 87 $params['value'] = self::getDefaultValue($params);
c87bbced 88 }
89 }
77b97be7 90
9fe6051a 91 /**
fe482240 92 * Get next available value.
9fe6051a 93 * We will take the highest numeric value (or 0 if no numeric values exist)
94 * and add one. The calling function is responsible for any
95 * more complex decision making
77b97be7 96 *
9fe6051a 97 * @param array $params
77b97be7
EM
98 *
99 * @return int
9fe6051a 100 */
9b873358 101 public static function getDefaultWeight($params) {
1c6b7d30 102 return (int) CRM_Utils_Weight::getDefaultWeight('CRM_Core_DAO_OptionValue',
353ffa53 103 array('option_group_id' => $params['option_group_id']));
1c6b7d30 104 }
105
106 /**
0880a9d0 107 * Get next available value.
1c6b7d30 108 * We will take the highest numeric value (or 0 if no numeric values exist)
109 * and add one. The calling function is responsible for any
110 * more complex decision making
111 * @param array $params
112 */
9b873358 113 public static function getDefaultValue($params) {
353ffa53
TO
114 $bao = new CRM_Core_BAO_OptionValue();
115 $bao->option_group_id = $params['option_group_id'];
116 if (isset($params['domain_id'])) {
117 $bao->domain_id = $params['domain_id'];
118 }
119 $bao->selectAdd();
120 $bao->whereAdd("value REGEXP '^[0-9]+$'");
121 $bao->selectAdd('(ROUND(COALESCE(MAX(CONVERT(value, UNSIGNED)),0)) +1) as nextvalue');
122 $bao->find(TRUE);
123 return $bao->nextvalue;
9fe6051a 124 }
353ffa53 125
6a488035 126 /**
fe482240 127 * Fetch object based on array of properties.
6a488035 128 *
6a0b768e
TO
129 * @param array $params
130 * (reference ) an assoc array of name/value pairs.
131 * @param array $defaults
132 * (reference ) an assoc array to hold the flattened values.
6a488035 133 *
16b10e64 134 * @return CRM_Core_BAO_OptionValue
6a488035 135 */
00be9182 136 public static function retrieve(&$params, &$defaults) {
6a488035
TO
137 $optionValue = new CRM_Core_DAO_OptionValue();
138 $optionValue->copyValues($params);
139 if ($optionValue->find(TRUE)) {
140 CRM_Core_DAO::storeValues($optionValue, $defaults);
141 return $optionValue;
142 }
143 return NULL;
144 }
145
146 /**
fe482240 147 * Update the is_active flag in the db.
6a488035 148 *
6a0b768e
TO
149 * @param int $id
150 * Id of the database record.
151 * @param bool $is_active
152 * Value we want to set the is_active field.
6a488035 153 *
a6c01b45 154 * @return Object
b44e3f84 155 * DAO object on success, null otherwise
6a488035 156 */
00be9182 157 public static function setIsActive($id, $is_active) {
6a488035
TO
158 return CRM_Core_DAO::setFieldValue('CRM_Core_DAO_OptionValue', $id, 'is_active', $is_active);
159 }
160
161 /**
fe482240 162 * Add an Option Value.
6a488035 163 *
6a0b768e
TO
164 * @param array $params
165 * Reference array contains the values submitted by the form.
166 * @param array $ids
167 * Reference array contains the id.
6a488035 168 *
6a488035 169 *
7c285037 170 * @return CRM_Core_DAO_OptionValue
6a488035 171 */
0be95659 172 public static function add(&$params, $ids = array()) {
6a488035 173 // CRM-10921: do not reset attributes to default if this is an update
9fe6051a 174 //@todo consider if defaults are being set in the right place. 'dumb' defaults like
175 // these would be usefully set @ the api layer so they are visible to api users
176 // complex defaults like the domain id below would make sense in the setDefauls function
177 // but unclear what other ways this function is being used
a7488080 178 if (empty($ids['optionValue'])) {
6a488035
TO
179 $params['is_active'] = CRM_Utils_Array::value('is_active', $params, FALSE);
180 $params['is_default'] = CRM_Utils_Array::value('is_default', $params, FALSE);
181 $params['is_optgroup'] = CRM_Utils_Array::value('is_optgroup', $params, FALSE);
182 $params['filter'] = CRM_Utils_Array::value('filter', $params, FALSE);
183 }
58eaa092
CW
184 // Update custom field data to reflect the new value
185 elseif (isset($params['value'])) {
186 CRM_Core_BAO_CustomOption::updateValue($ids['optionValue'], $params['value']);
187 }
6a488035
TO
188
189 // action is taken depending upon the mode
190 $optionValue = new CRM_Core_DAO_OptionValue();
191 $optionValue->copyValues($params);
192
a7488080 193 if (!empty($params['is_default'])) {
6a488035
TO
194 $query = 'UPDATE civicrm_option_value SET is_default = 0 WHERE option_group_id = %1';
195
196 // tweak default reset, and allow multiple default within group.
197 if ($resetDefaultFor = CRM_Utils_Array::value('reset_default_for', $params)) {
198 if (is_array($resetDefaultFor)) {
199 $colName = key($resetDefaultFor);
200 $colVal = $resetDefaultFor[$colName];
201 $query .= " AND ( $colName IN ( $colVal ) )";
202 }
203 }
204
205 $p = array(1 => array($params['option_group_id'], 'Integer'));
206 CRM_Core_DAO::executeQuery($query, $p);
207 }
89ab5601
PJ
208
209 // CRM-13814 : evalute option group id
210 if (!array_key_exists('option_group_id', $params) && !empty($ids['optionValue'])) {
211 $groupId = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionValue',
212 $ids['optionValue'], 'option_group_id', 'id'
213 );
214 }
215 else {
216 $groupId = $params['option_group_id'];
217 }
218
6a488035 219 $groupName = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup',
89ab5601 220 $groupId, 'name', 'id'
6a488035 221 );
e5720c45
SL
222 if (empty($ids['optionValue']) && empty($params['id']) && !empty($params['value'])) {
223 $domainSpecifc = in_array($groupName, CRM_Core_OptionGroup::$_domainIDGroups) ? TRUE : FALSE;
224 $dao = new CRM_Core_DAO_OptionValue();
225 $dao->value = $params['value'];
226 $dao->option_group_id = $groupId;
227 if ($dao->find(TRUE)) {
228 throw new CRM_Core_Exception('Value already exists in the database');
229 }
230 }
6a488035
TO
231 if (in_array($groupName, CRM_Core_OptionGroup::$_domainIDGroups)) {
232 $optionValue->domain_id = CRM_Utils_Array::value('domain_id', $params, CRM_Core_Config::domainID());
233 }
234
235 $optionValue->id = CRM_Utils_Array::value('optionValue', $ids);
236 $optionValue->save();
a4a33486 237 CRM_Core_PseudoConstant::flush();
6a488035
TO
238 return $optionValue;
239 }
240
241 /**
fe482240 242 * Delete Option Value.
6a488035 243 *
c490a46a 244 * @param int $optionValueId
6a488035 245 *
5c766a0b 246 * @return bool
6a488035 247 *
6a488035 248 */
00be9182 249 public static function del($optionValueId) {
6a488035
TO
250 $optionValue = new CRM_Core_DAO_OptionValue();
251 $optionValue->id = $optionValueId;
a60c0bc8
SL
252 if (!$optionValue->find()) {
253 return FALSE;
254 }
6a488035 255 if (self::updateRecords($optionValueId, CRM_Core_Action::DELETE)) {
a4a33486 256 CRM_Core_PseudoConstant::flush();
a60c0bc8
SL
257 $optionValue->delete();
258 return TRUE;
6a488035
TO
259 }
260 return FALSE;
261 }
262
263 /**
fe482240 264 * Retrieve activity type label and description.
6a488035 265 *
6a0b768e
TO
266 * @param int $activityTypeId
267 * Activity type id.
6a488035 268 *
a6c01b45
CW
269 * @return array
270 * label and description
6a488035 271 */
00be9182 272 public static function getActivityTypeDetails($activityTypeId) {
6a488035
TO
273 $query = "SELECT civicrm_option_value.label, civicrm_option_value.description
274 FROM civicrm_option_value
275 LEFT JOIN civicrm_option_group ON ( civicrm_option_value.option_group_id = civicrm_option_group.id )
276 WHERE civicrm_option_group.name = 'activity_type'
277 AND civicrm_option_value.value = {$activityTypeId} ";
278
279 $dao = CRM_Core_DAO::executeQuery($query);
280
281 $dao->fetch();
282
283 return array($dao->label, $dao->description);
284 }
285
286 /**
287 * Get the Option Value title.
288 *
6a0b768e
TO
289 * @param int $id
290 * Id of Option Value.
6a488035 291 *
a6c01b45
CW
292 * @return string
293 * title
6a488035 294 *
6a488035
TO
295 */
296 public static function getTitle($id) {
297 return CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionValue', $id, 'label');
298 }
299
300 /**
100fef9d 301 * Updates contacts affected by the option value passed.
6a488035 302 *
6a0b768e
TO
303 * @param int $optionValueId
304 * The option value id.
305 * @param int $action
306 * The action describing whether prefix/suffix was UPDATED or DELETED.
6a488035 307 *
7a6073fd 308 * @return bool
6a488035 309 */
00be9182 310 public static function updateRecords(&$optionValueId, $action) {
6a488035
TO
311 //finding group name
312 $optionValue = new CRM_Core_DAO_OptionValue();
313 $optionValue->id = $optionValueId;
314 $optionValue->find(TRUE);
315
316 $optionGroup = new CRM_Core_DAO_OptionGroup();
317 $optionGroup->id = $optionValue->option_group_id;
318 $optionGroup->find(TRUE);
319
320 // group name
321 $gName = $optionGroup->name;
322 // value
323 $value = $optionValue->value;
324
325 // get the proper group name & affected field name
67744c4e 326 // todo: this may no longer be needed for individuals - check inputs
6a488035
TO
327 $individuals = array(
328 'gender' => 'gender_id',
329 'individual_prefix' => 'prefix_id',
330 'individual_suffix' => 'suffix_id',
353ffa53
TO
331 'communication_style' => 'communication_style_id',
332 // Not only Individuals -- but the code seems to be generic for all contact types, despite the naming...
6a488035
TO
333 );
334 $contributions = array('payment_instrument' => 'payment_instrument_id');
353ffa53
TO
335 $activities = array('activity_type' => 'activity_type_id');
336 $participant = array('participant_role' => 'role_id');
337 $eventType = array('event_type' => 'event_type_id');
338 $aclRole = array('acl_role' => 'acl_role_id');
6a488035
TO
339
340 $all = array_merge($individuals, $contributions, $activities, $participant, $eventType, $aclRole);
341 $fieldName = '';
342
343 foreach ($all as $name => $id) {
344 if ($gName == $name) {
345 $fieldName = $id;
346 }
347 }
348 if ($fieldName == '') {
349 return TRUE;
350 }
351
352 if (array_key_exists($gName, $individuals)) {
353 $contactDAO = new CRM_Contact_DAO_Contact();
354
355 $contactDAO->$fieldName = $value;
356 $contactDAO->find();
357
358 while ($contactDAO->fetch()) {
359 if ($action == CRM_Core_Action::DELETE) {
360 $contact = new CRM_Contact_DAO_Contact();
361 $contact->id = $contactDAO->id;
362 $contact->find(TRUE);
363
364 // make sure dates doesn't get reset
365 $contact->birth_date = CRM_Utils_Date::isoToMysql($contact->birth_date);
366 $contact->deceased_date = CRM_Utils_Date::isoToMysql($contact->deceased_date);
367 $contact->$fieldName = 'NULL';
368 $contact->save();
369 }
370 }
371
372 return TRUE;
373 }
374
375 if (array_key_exists($gName, $contributions)) {
376 $contribution = new CRM_Contribute_DAO_Contribution();
377 $contribution->$fieldName = $value;
378 $contribution->find();
379 while ($contribution->fetch()) {
380 if ($action == CRM_Core_Action::DELETE) {
381 $contribution->$fieldName = 'NULL';
382 $contribution->save();
383 }
384 }
385 return TRUE;
386 }
387
388 if (array_key_exists($gName, $activities)) {
389 $activity = new CRM_Activity_DAO_Activity();
390 $activity->$fieldName = $value;
391 $activity->find();
392 while ($activity->fetch()) {
393 $activity->delete();
394 }
395 return TRUE;
396 }
397
398 //delete participant role, type and event type option value
399 if (array_key_exists($gName, $participant)) {
400 $participantValue = new CRM_Event_DAO_Participant();
401 $participantValue->$fieldName = $value;
402 if ($participantValue->find(TRUE)) {
403 return FALSE;
404 }
405 return TRUE;
406 }
407
408 //delete event type option value
409 if (array_key_exists($gName, $eventType)) {
410 $event = new CRM_Event_DAO_Event();
411 $event->$fieldName = $value;
412 if ($event->find(TRUE)) {
413 return FALSE;
414 }
415 return TRUE;
416 }
417
418 //delete acl_role option value
419 if (array_key_exists($gName, $aclRole)) {
420 $entityRole = new CRM_ACL_DAO_EntityRole();
421 $entityRole->$fieldName = $value;
422
423 $aclDAO = new CRM_ACL_DAO_ACL();
424 $aclDAO->entity_id = $value;
425 if ($entityRole->find(TRUE) || $aclDAO->find(TRUE)) {
426 return FALSE;
427 }
428 return TRUE;
429 }
430 }
431
432 /**
100fef9d 433 * Updates options values weights.
6a488035 434 *
c490a46a 435 * @param int $opGroupId
6a0b768e
TO
436 * @param array $opWeights
437 * Options value , weight pair.
6a488035 438 */
00be9182 439 public static function updateOptionWeights($opGroupId, $opWeights) {
6a488035
TO
440 if (!is_array($opWeights) || empty($opWeights)) {
441 return;
442 }
443
444 foreach ($opWeights as $opValue => $opWeight) {
445 $optionValue = new CRM_Core_DAO_OptionValue();
446 $optionValue->option_group_id = $opGroupId;
447 $optionValue->value = $opValue;
448 if ($optionValue->find(TRUE)) {
449 $optionValue->weight = $opWeight;
450 $optionValue->save();
451 }
452 $optionValue->free();
453 }
454 }
455
456 /**
457 * Get the values of all option values given an option group ID. Store in system cache
458 * Does not take any filtering arguments. The object is to avoid hitting the DB and retrieve
459 * from memory
460 *
6a0b768e
TO
461 * @param int $optionGroupID
462 * The option group for which we want the values from.
6a488035 463 *
a6c01b45
CW
464 * @return array
465 * an array of array of values for this option group
6a488035 466 */
00be9182 467 public static function getOptionValuesArray($optionGroupID) {
6a488035 468 // check if we can get the field values from the system cache
353ffa53
TO
469 $cacheKey = "CRM_Core_BAO_OptionValue_OptionGroupID_{$optionGroupID}";
470 $cache = CRM_Utils_Cache::singleton();
6a488035
TO
471 $optionValues = $cache->get($cacheKey);
472 if (empty($optionValues)) {
473 $dao = new CRM_Core_DAO_OptionValue();
474 $dao->option_group_id = $optionGroupID;
475 $dao->orderBy('weight ASC, label ASC');
476 $dao->find();
477
478 $optionValues = array();
479 while ($dao->fetch()) {
480 $optionValues[$dao->id] = array();
481 CRM_Core_DAO::storeValues($dao, $optionValues[$dao->id]);
482 }
483
484 $cache->set($cacheKey, $optionValues);
485 }
486
487 return $optionValues;
488 }
489
490 /**
491 * Get the values of all option values given an option group ID as a key => value pair
492 * Use above cached function to make it super efficient
493 *
6a0b768e
TO
494 * @param int $optionGroupID
495 * The option group for which we want the values from.
6a488035 496 *
a6c01b45
CW
497 * @return array
498 * an associative array of label, value pairs
6a488035 499 */
00be9182 500 public static function getOptionValuesAssocArray($optionGroupID) {
6a488035
TO
501 $optionValues = self::getOptionValuesArray($optionGroupID);
502
503 $options = array();
504 foreach ($optionValues as $id => $value) {
505 $options[$value['value']] = $value['label'];
506 }
507 return $options;
508 }
353ffa53 509
6a488035
TO
510 /**
511 * Get the values of all option values given an option group Name as a key => value pair
512 * Use above cached function to make it super efficient
513 *
6a0b768e
TO
514 * @param string $optionGroupName
515 * The option group name for which we want the values from.
6a488035 516 *
a6c01b45
CW
517 * @return array
518 * an associative array of label, value pairs
6a488035 519 */
00be9182 520 public static function getOptionValuesAssocArrayFromName($optionGroupName) {
6a488035
TO
521 $dao = new CRM_Core_DAO_OptionGroup();
522 $dao->name = $optionGroupName;
523 $dao->selectAdd();
524 $dao->selectAdd('id');
525 $dao->find(TRUE);
526 $optionValues = self::getOptionValuesArray($dao->id);
527
528 $options = array();
529 foreach ($optionValues as $id => $value) {
530 $options[$value['value']] = $value['label'];
531 }
532 return $options;
533 }
534
6f408d71 535 /**
536 * Ensure an option value exists.
537 *
538 * This function is intended to be called from the upgrade script to ensure
539 * that an option value exists, without hitting an error if it already exists.
540 *
541 * This is sympathetic to sites who might pre-add it.
542 */
543 public static function ensureOptionValueExists($params) {
544 $existingValues = civicrm_api3('OptionValue', 'get', array(
bf87703e 545 'option_group_id' => $params['option_group_id'],
6f408d71 546 'name' => $params['name'],
34273b2a 547 'return' => 'id',
6f408d71 548 ));
549 if (!$existingValues['count']) {
550 civicrm_api3('OptionValue', 'create', $params);
551 }
552 }
553
6a488035 554}