Merge pull request #12921 from colemanw/ajaxMode
[civicrm-core.git] / api / v3 / Setting.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
1f4ea726 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 +--------------------------------------------------------------------+
26 */
27
28/**
c28e1768 29 * This api exposes CiviCRM configuration settings.
6a488035 30 *
b081365f 31 * @package CiviCRM_APIv3
61fe4988
EM
32 */
33
34/**
35 * Get fields for setting api calls.
36 *
d0997921 37 * @param array $params
61fe4988 38 *
645ee340 39 * @return array
6a488035 40 */
6a488035 41function civicrm_api3_setting_getfields($params) {
9b873358 42 if (!empty($params['action']) && strtolower($params['action']) == 'getvalue') {
6a488035
TO
43 $result = array(
44 'name' => array(
45 'title' => 'name of setting field',
46 'api.required' => 1,
47 'type' => CRM_Utils_Type::T_STRING),
c14d6dd1 48 'group' => array(
6a488035 49 'api.required' => 0,
1fdb479f 50 'title' => 'Setting Group',
6a488035 51 'description' => 'Settings Group. This is required if the setting is not stored in config',
21dfd5f5 52 'type' => CRM_Utils_Type::T_STRING),
e7483cbe 53 );
244bbdd8 54 return civicrm_api3_create_success($result, $params, 'Setting', 'getfields');
6a488035 55 }
9b873358 56 if (!empty($params['name'])) {
6a488035
TO
57 //am of two minds about special handling for 'name' as opposed to other filters - but is does make most common
58 //usage really easy
59 $params['filters']['name'] = $params['name'];
60 }
61 $result = CRM_Core_BAO_Setting::getSettingSpecification(
35671d00 62 CRM_Utils_Array::value('component_id', $params),
6a488035 63 CRM_Utils_Array::value('filters', $params, array()),
35671d00
TO
64 CRM_Utils_Array::value('domain_id', $params, NULL),
65 CRM_Utils_Array::value('profile', $params, NULL)
6a488035
TO
66 );
67 // find any supplemental information
9b873358 68 if (!empty($params['action'])) {
f60289e9 69 $specFunction = '_civicrm_api3_setting_' . strtolower($params['action']) . '_spec';
6a488035
TO
70 if (function_exists($specFunction)) {
71 $specFunction($result);
72 }
73 }
244bbdd8 74 return civicrm_api3_create_success($result, $params, 'Setting', 'getfields');
6a488035 75}
11e09c59
TO
76
77/**
1747ab99
EM
78 * Alter metadata for getfields functions.
79 *
d0997921 80 * @param array $params
6a488035 81 */
f60289e9 82function _civicrm_api3_setting_getfields_spec(&$params) {
b2ed8e73
CW
83 $params['filters'] = array(
84 'title' => 'Filters',
85 'description' => 'Fields you wish to filter by e.g. array("group_name" => "CiviCRM Preferences")',
86 );
87 $params['component_id'] = array(
88 'title' => 'Component ID',
89 'description' => 'ID of relevant component',
90 );
91 $params['profile'] = array(
92 'title' => 'Profile',
93 'description' => 'Profile is passed through to hooks & added to cachestring',
94 );
6a488035 95}
11e09c59
TO
96
97/**
1747ab99
EM
98 * Return default values for settings.
99 *
100 * We will domain key this as it could vary by domain (ie. urls)
6a488035 101 * as we will be creating the option for a function rather than an value to be in the defaults
1747ab99
EM
102 * Note that is not in place as yet.
103 *
d0997921 104 * @param array $params
1747ab99 105 *
645ee340
EM
106 * @return array
107 * @throws \CiviCRM_API3_Exception
108 * @throws \Exception
6a488035 109 */
9b873358 110function civicrm_api3_setting_getdefaults(&$params) {
244bbdd8 111 $settings = civicrm_api3('Setting', 'getfields', $params);
6a488035
TO
112 $domains = _civicrm_api3_setting_getDomainArray($params);
113 $defaults = array();
9b873358 114 foreach ($domains as $domainID) {
6a488035 115 $defaults[$domainID] = array();
9b873358
TO
116 foreach ($settings['values'] as $setting => $spec) {
117 if (array_key_exists('default', $spec) && !is_null($spec['default'])) {
6a488035
TO
118 $defaults[$domainID][$setting] = $spec['default'];
119 }
6a488035
TO
120 }
121 }
244bbdd8 122 return civicrm_api3_create_success($defaults, $params, 'Setting', 'getfields');
6a488035 123}
11e09c59 124/**
244bbdd8 125 * Metadata for Setting create function.
11e09c59 126 *
cf470720
TO
127 * @param array $params
128 * Parameters as passed to the API.
11e09c59 129 */
f60289e9 130function _civicrm_api3_setting_getdefaults_spec(&$params) {
6a488035 131 $params['domain_id'] = array(
5a159702
EM
132 'api.default' => 'current_domain',
133 'description' => 'Defaults may differ by domain - if you do not pass in a domain id this will default to the current domain
134 an array or "all" are acceptable values for multiple domains',
135 'title' => 'Setting Domain',
6a488035
TO
136 );
137}
11e09c59 138
70599df6 139/**
140 * Get options for settings.
141 *
142 * @param array $params
143 *
144 * @return array
145 * @throws \API_Exception
146 */
76068c6a
TO
147function civicrm_api3_setting_getoptions($params) {
148 $specs = CRM_Core_BAO_Setting::getSettingSpecification();
149
150 if (empty($specs[$params['field']]) || empty($specs[$params['field']]['pseudoconstant'])) {
151 throw new API_Exception("The field '" . $params['field'] . "' has no associated option list.");
152 }
153
154 $pseudoconstant = $specs[$params['field']]['pseudoconstant'];
155
156 // It would be nice if we could leverage CRM_Core_PseudoConstant::get() somehow,
157 // but it's tightly coupled to DAO/field. However, if you really need to support
158 // more pseudoconstant types, then probably best to refactor it. For now, KISS.
159 if (!empty($pseudoconstant['callback'])) {
160 $values = Civi\Core\Resolver::singleton()->call($pseudoconstant['callback'], array());
161 return civicrm_api3_create_success($values, $params, 'Setting', 'getoptions');
162 }
03c5ceba 163 elseif (!empty($pseudoconstant['optionGroupName'])) {
164 return civicrm_api3_create_success(
165 CRM_Core_OptionGroup::values($pseudoconstant['optionGroupName'], FALSE, FALSE, TRUE),
166 $params, 'Setting', 'getoptions'
167 );
168 }
76068c6a
TO
169
170 throw new API_Exception("The field '" . $params['field'] . "' uses an unsupported option list.");
171}
172
11e09c59 173/**
9d32e6f7
EM
174 * Revert settings to defaults.
175 *
d0997921 176 * @param array $params
9d32e6f7 177 *
645ee340
EM
178 * @return array
179 * @throws \Exception
6a488035 180 */
9b873358 181function civicrm_api3_setting_revert(&$params) {
244bbdd8
CW
182 $defaults = civicrm_api('Setting', 'getdefaults', $params);
183 $fields = civicrm_api('Setting', 'getfields', $params);
6a488035
TO
184 $fields = $fields['values'];
185 $domains = _civicrm_api3_setting_getDomainArray($params);
186 $result = array();
9b873358 187 foreach ($domains as $domainID) {
6a488035 188 $valuesToRevert = array_intersect_key($defaults['values'][$domainID], $fields);
9b873358 189 if (!empty($valuesToRevert)) {
6a488035
TO
190 $valuesToRevert['version'] = $params['version'];
191 $valuesToRevert['domain_id'] = $domainID;
192 // note that I haven't looked at how the result would appear with multiple domains in play
244bbdd8 193 $result = array_merge($result, civicrm_api('Setting', 'create', $valuesToRevert));
6a488035
TO
194 }
195 }
196
244bbdd8 197 return civicrm_api3_create_success($result, $params, 'Setting', 'revert');
6a488035 198}
11e09c59
TO
199
200/**
dc64d047
EM
201 * Alter metadata for getfields functions.
202 *
d0997921 203 * @param array $params
11e09c59 204 */
f60289e9 205function _civicrm_api3_setting_revert_spec(&$params) {
b2ed8e73
CW
206 $params['name'] = array(
207 'title' => 'Name',
208 'description' => 'Setting Name belongs to',
209 );
210 $params['component_id'] = array(
211 'title' => 'Component ID',
212 'description' => 'ID of relevant component',
213 );
6a488035
TO
214 $params['domain_id'] = array(
215 'api.default' => 'current_domain',
dc64d047
EM
216 'description' => 'Defaults may differ by domain - if you do not pass in a domain id this will default to the current domain'
217 . ' an array or "all" are acceptable values for multiple domains',
5a159702 218 'title' => 'Setting Domain',
6a488035
TO
219 );
220}
221
11e09c59 222/**
1747ab99
EM
223 * Revert settings to defaults.
224 *
d0997921 225 * @param array $params
1747ab99 226 *
645ee340
EM
227 * @return array
228 * @throws \CiviCRM_API3_Exception
229 * @throws \Exception
11e09c59 230 */
9b873358 231function civicrm_api3_setting_fill(&$params) {
244bbdd8 232 $defaults = civicrm_api3('Setting', 'getdefaults', $params);
6a488035
TO
233 $domains = _civicrm_api3_setting_getDomainArray($params);
234 $result = array();
9b873358 235 foreach ($domains as $domainID) {
6a488035
TO
236 $apiArray = array(
237 'version' => $params['version'],
21dfd5f5 238 'domain_id' => $domainID,
6a488035 239 );
244bbdd8 240 $existing = civicrm_api3('Setting', 'get', $apiArray);
6a488035 241 $valuesToFill = array_diff_key($defaults['values'][$domainID], $existing['values'][$domainID]);
9b873358 242 if (!empty($valuesToFill)) {
244bbdd8 243 $result = array_merge($result, civicrm_api('Setting', 'create', $valuesToFill + $apiArray));
6a488035
TO
244 }
245 }
244bbdd8 246 return civicrm_api3_create_success($result, $params, 'Setting', 'fill');
6a488035 247}
11e09c59
TO
248
249/**
9d32e6f7
EM
250 * Alter metadata for getfields functions.
251 *
d0997921 252 * @param array $params
11e09c59 253 */
f60289e9 254function _civicrm_api3_setting_fill_spec(&$params) {
b2ed8e73
CW
255 $params['name'] = array(
256 'title' => 'Name',
257 'description' => 'Setting Name belongs to',
258 );
259 $params['component_id'] = array(
260 'title' => 'Component ID',
261 'description' => 'ID of relevant component',
262 );
6a488035 263 $params['domain_id'] = array(
5a159702
EM
264 'api.default' => 'current_domain',
265 'title' => 'Setting Domain',
1747ab99 266 'description' => 'Defaults may differ by domain - if you do not pass in a domain id this will default to the '
dc64d047 267 . 'current domain, an array or "all" are acceptable values for multiple domains',
6a488035
TO
268 );
269}
270
271/**
35823763 272 * Create or update a setting.
6a488035 273 *
cf470720 274 * @param array $params
35823763 275 * Parameters as per getfields.
6a488035 276 *
a6c01b45 277 * @return array
72b3a70c 278 * api result array
6a488035
TO
279 */
280function civicrm_api3_setting_create($params) {
281 $domains = _civicrm_api3_setting_getDomainArray($params);
282 $result = CRM_Core_BAO_Setting::setItems($params, $domains);
244bbdd8 283 return civicrm_api3_create_success($result, $params, 'Setting', 'create');
6a488035 284}
11e09c59
TO
285
286/**
1747ab99 287 * Metadata for setting create function.
6a488035 288 *
cf470720
TO
289 * @param array $params
290 * Parameters as passed to the API.
6a488035 291 */
f60289e9 292function _civicrm_api3_setting_create_spec(&$params) {
6a488035
TO
293 $params['domain_id'] = array(
294 'api.default' => 'current_domain',
5a159702 295 'title' => 'Setting Domain',
6a488035 296 'description' => 'if you do not pass in a domain id this will default to the current domain
21dfd5f5 297 an array or "all" are acceptable values for multiple domains',
e7483cbe 298 );
35671d00 299 $params['group'] = array(
e7483cbe
J
300 'title' => 'Setting Group',
301 'description' => 'if you know the group defining it will make the api more efficient',
302 );
6a488035
TO
303}
304
305/**
35823763 306 * Returns array of settings matching input parameters.
6a488035 307 *
cf470720 308 * @param array $params
35823763 309 * Array of one or more valid property_name=>value pairs.
6a488035 310 *
a6c01b45 311 * @return array
72b3a70c 312 * Array of matching settings
6a488035
TO
313 */
314function civicrm_api3_setting_get($params) {
315 $domains = _civicrm_api3_setting_getDomainArray($params);
299cd62a 316 $result = CRM_Core_BAO_Setting::getItems($params, $domains, CRM_Utils_Array::value('return', $params, array()));
244bbdd8 317 return civicrm_api3_create_success($result, $params, 'Setting', 'get');
6a488035 318}
11e09c59 319/**
1747ab99 320 * Metadata for setting create function.
11e09c59 321 *
cf470720
TO
322 * @param array $params
323 * Parameters as passed to the API.
11e09c59 324 */
f60289e9 325function _civicrm_api3_setting_get_spec(&$params) {
6a488035 326 $params['domain_id'] = array(
5a159702
EM
327 'api.default' => 'current_domain',
328 'title' => 'Setting Domain',
21dfd5f5 329 'description' => 'if you do not pass in a domain id this will default to the current domain',
6a488035
TO
330 );
331 $params['group'] = array(
5a159702 332 'title' => 'Setting Group',
21dfd5f5 333 'description' => 'if you know the group defining it will make the api more efficient',
35671d00 334 );
6a488035
TO
335}
336/**
1747ab99
EM
337 * Returns value for specific parameter.
338 *
339 * Function requires more fields than 'get' but is intended for
6a488035
TO
340 * runtime usage & should be quicker
341 *
cf470720 342 * @param array $params
1747ab99 343 * Array of one or more valid.
6a488035
TO
344 * property_name=>value pairs.
345 *
a6c01b45 346 * @return array
1747ab99 347 * API result array.
6a488035
TO
348 */
349function civicrm_api3_setting_getvalue($params) {
86bfd7a8
TO
350 //$config = CRM_Core_Config::singleton();
351 //if (isset($config->$params['name'])) {
352 // return $config->$params['name'];
353 //}
6a488035 354 return CRM_Core_BAO_Setting::getItem(
5cb4bffc 355 NULL,
6a488035
TO
356 CRM_Utils_Array::value('name', $params),
357 CRM_Utils_Array::value('component_id', $params),
358 CRM_Utils_Array::value('default_value', $params),
359 CRM_Utils_Array::value('contact_id', $params),
360 CRM_Utils_Array::value('domain_id', $params)
361 );
362}
363
11e09c59 364/**
1747ab99 365 * Metadata for setting create function.
11e09c59 366 *
cf470720
TO
367 * @param array $params
368 * Parameters as passed to the API.
11e09c59 369 */
f60289e9 370function _civicrm_api3_setting_getvalue_spec(&$params) {
6a488035
TO
371
372 $params['group'] = array(
e7483cbe
J
373 'title' => 'Settings Group',
374 'api.required' => TRUE,
6a488035
TO
375 );
376 $params['name'] = array(
e7483cbe
J
377 'title' => 'Setting Name',
378 'api.aliases' => array('return'),
6a488035
TO
379 );
380 $params['default_value'] = array(
e7483cbe 381 'title' => 'Default Value',
6a488035
TO
382 );
383 $params['component_id'] = array(
e7483cbe 384 'title' => 'Component Id',
6a488035
TO
385 );
386 $params['contact_id'] = array(
e7483cbe 387 'title' => 'Contact Id',
6a488035
TO
388 );
389 $params['domain_id'] = array(
5a159702 390 'title' => 'Setting Domain',
21dfd5f5 391 'description' => 'if you do not pass in a domain id this will default to the current domain',
6a488035
TO
392 );
393}
11e09c59
TO
394
395/**
1747ab99
EM
396 * Converts domain input into an array.
397 *
398 * If an array is passed in this is used, if 'all' is passed
6a488035 399 * in this is converted to 'all arrays'
f60289e9 400 *
401 * Really domain_id should always be set but doing an empty check because at the moment
402 * using crm-editable will pass an id & default won't be applied
1747ab99
EM
403 * we did talk about id being a pseudonym for domain_id in this api so applying it here.
404 *
d0997921 405 * @param array $params
1747ab99 406 *
645ee340
EM
407 * @return array
408 * @throws \Exception
6a488035 409 */
9b873358
TO
410function _civicrm_api3_setting_getDomainArray(&$params) {
411 if (empty($params['domain_id']) && isset($params['id'])) {
f60289e9 412 $params['domain_id'] = $params['id'];
413 }
414
9b873358 415 if ($params['domain_id'] == 'current_domain') {
6a488035
TO
416 $params['domain_id'] = CRM_Core_Config::domainID();
417 }
418
9b873358 419 if ($params['domain_id'] == 'all') {
35671d00 420 $domainAPIResult = civicrm_api('domain', 'get', array('version' => 3, 'return' => 'id'));
6a488035
TO
421 if (isset($domainAPIResult['values'])) {
422 $params['domain_id'] = array_keys($domainAPIResult['values']);
423 }
92e4c2a5 424 else {
6a488035
TO
425 throw new Exception('All domains not retrieved - problem with Domain Get api call ' . $domainAPIResult['error_message']);
426 }
427 }
9b873358 428 if (is_array($params['domain_id'])) {
6a488035
TO
429 $domains = $params['domain_id'];
430 }
92e4c2a5 431 else {
6a488035
TO
432 $domains = array($params['domain_id']);
433 }
434 return $domains;
435}