Merge pull request #16609 from wmortada/core#1331-3
[civicrm-core.git] / api / v3 / utils.php
CommitLineData
6a488035 1<?php
6a488035 2/*
a30c801b
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/**
b081365f 13 * CiviCRM APIv3 utility functions.
6a488035
TO
14 *
15 * @package CiviCRM_APIv3
6a488035
TO
16 */
17
18/**
61fe4988 19 * Initialize CiviCRM - should be run at the start of each API function.
6a488035
TO
20 */
21function _civicrm_api3_initialize() {
22fd1690
ARW
22 require_once 'CRM/Core/ClassLoader.php';
23 CRM_Core_ClassLoader::singleton()->register();
24 CRM_Core_Config::singleton();
25}
6a488035 26
11e09c59 27/**
61fe4988 28 * Wrapper Function for civicrm_verify_mandatory to make it simple to pass either / or fields for checking.
6a488035 29 *
cf470720
TO
30 * @param array $params
31 * Array of fields to check.
32 * @param array $daoName
33 * String DAO to check for required fields (create functions only).
34 * @param array $keyoptions
35 * List of required fields options. One of the options is required.
a22a5119 36 *
37 * @throws \API_Exception
6a488035 38 */
cf8f0fff
CW
39function civicrm_api3_verify_one_mandatory($params, $daoName = NULL, $keyoptions = []) {
40 $keys = [[]];
6a488035
TO
41 foreach ($keyoptions as $key) {
42 $keys[0][] = $key;
43 }
44 civicrm_api3_verify_mandatory($params, $daoName, $keys);
45}
46
11e09c59 47/**
61fe4988 48 * Check mandatory fields are included.
6a488035 49 *
cf470720
TO
50 * @param array $params
51 * Array of fields to check.
52 * @param array $daoName
53 * String DAO to check for required fields (create functions only).
54 * @param array $keys
55 * List of required fields. A value can be an array denoting that either this or that is required.
6a488035 56 * @param bool $verifyDAO
cd5823ae
EM
57 *
58 * @throws \API_Exception
6a488035 59 */
cf8f0fff
CW
60function civicrm_api3_verify_mandatory($params, $daoName = NULL, $keys = [], $verifyDAO = TRUE) {
61 $unmatched = [];
6a488035
TO
62
63 if (!empty($params['id'])) {
cf8f0fff 64 $keys = ['version'];
6a488035
TO
65 }
66 else {
67 if (!in_array('version', $keys)) {
68 // required from v3 onwards
69 $keys[] = 'version';
70 }
71 }
72 foreach ($keys as $key) {
73 if (is_array($key)) {
74 $match = 0;
cf8f0fff 75 $optionset = [];
6a488035
TO
76 foreach ($key as $subkey) {
77 if (!array_key_exists($subkey, $params) || empty($params[$subkey])) {
78 $optionset[] = $subkey;
79 }
80 else {
210737b6 81 // As long as there is one match we don't need to return anything.
6a488035
TO
82 $match = 1;
83 }
84 }
85 if (empty($match) && !empty($optionset)) {
86 $unmatched[] = "one of (" . implode(", ", $optionset) . ")";
87 }
88 }
89 else {
5ba3bfc8 90 // Disallow empty values except for the number zero.
210737b6 91 // TODO: create a utility for this since it's needed in many places.
5ba3bfc8 92 if (!array_key_exists($key, $params) || (empty($params[$key]) && $params[$key] !== 0 && $params[$key] !== '0')) {
6a488035
TO
93 $unmatched[] = $key;
94 }
95 }
96 }
97 if (!empty($unmatched)) {
a22a5119 98 throw new API_Exception('Mandatory key(s) missing from params array: ' . implode(", ", $unmatched), 'mandatory_missing', ["fields" => $unmatched]);
6a488035
TO
99 }
100}
101
102/**
61fe4988 103 * Create error array.
6a488035 104 *
61fe4988 105 * @param string $msg
916b48b6 106 * @param array $data
61fe4988 107 *
a6c01b45 108 * @return array
6a488035 109 */
cf8f0fff 110function civicrm_api3_create_error($msg, $data = []) {
6a488035
TO
111 $data['is_error'] = 1;
112 $data['error_message'] = $msg;
2deb3dbe 113
9c465c3b
TO
114 // we will show sql to privileged user only (not sure of a specific
115 // security hole here but seems sensible - perhaps should apply to the trace as well?)
8919965f 116 if (isset($data['sql'])) {
a22a5119 117 if (CRM_Core_Permission::check('Administer CiviCRM') || CIVICRM_UF === 'UnitTests') {
8919965f
ML
118 // Isn't this redundant?
119 $data['debug_information'] = $data['sql'];
120 }
121 else {
122 unset($data['sql']);
123 }
e7c4a581 124 }
6a488035
TO
125 return $data;
126}
127
128/**
35823763 129 * Format array in result output style.
6a488035 130 *
77b97be7 131 * @param array|int $values values generated by API operation (the result)
cf470720
TO
132 * @param array $params
133 * Parameters passed into API call.
134 * @param string $entity
135 * The entity being acted on.
136 * @param string $action
137 * The action passed to the API.
138 * @param object $dao
139 * DAO object to be freed here.
140 * @param array $extraReturnValues
141 * Additional values to be added to top level of result array(.
6a488035
TO
142 * - this param is currently used for legacy behaviour support
143 *
a6c01b45 144 * @return array
a22a5119 145 * @throws \CiviCRM_API3_Exception
6a488035 146 */
cf8f0fff
CW
147function civicrm_api3_create_success($values = 1, $params = [], $entity = NULL, $action = NULL, &$dao = NULL, $extraReturnValues = []) {
148 $result = [];
4846df91
CW
149 $lowercase_entity = _civicrm_api_get_entity_name_from_camel($entity);
150 // TODO: This shouldn't be necessary but this fn sometimes gets called with lowercase entity
151 $entity = _civicrm_api_get_camel_name($entity);
6a488035
TO
152 $result['is_error'] = 0;
153 //lets set the ['id'] field if it's not set & we know what the entity is
a22a5119 154 if (is_array($values) && $entity && $action !== 'getfields') {
6a488035 155 foreach ($values as $key => $item) {
a22a5119 156 if (empty($item['id']) && !empty($item[$lowercase_entity . '_id'])) {
157 $values[$key]['id'] = $item[$lowercase_entity . '_id'];
6a488035 158 }
9b873358 159 if (!empty($item['financial_type_id'])) {
258c92c6
SL
160 // 4.3 legacy handling.
161 $values[$key]['contribution_type_id'] = $item['financial_type_id'];
a1c68fd2 162 }
6e7cc0f5
SL
163 if (!empty($item['contribution_cancel_date'])) {
164 // 5.16 legacy handling.
165 $values[$key]['cancel_date'] = $item['contribution_cancel_date'];
166 }
9b873358 167 if (!empty($item['next_sched_contribution_date'])) {
797b807e 168 // 4.4 legacy handling
169 $values[$key]['next_sched_contribution'] = $item['next_sched_contribution_date'];
170 }
6a488035
TO
171 }
172 }
d8453bed 173
080b7aca 174 if (is_array($params) && $entity && !empty($params['debug'])) {
a22a5119 175 if (is_string($action) && $action !== 'getfields') {
cf8f0fff 176 $apiFields = civicrm_api($entity, 'getfields', ['version' => 3, 'action' => $action] + $params);
6a488035 177 }
a22a5119 178 elseif ($action !== 'getfields') {
cf8f0fff 179 $apiFields = civicrm_api($entity, 'getfields', ['version' => 3] + $params);
6a488035
TO
180 }
181 else {
182 $apiFields = FALSE;
183 }
184
cf8f0fff 185 $allFields = [];
a22a5119 186 if ($action !== 'getfields' && is_array($apiFields) && is_array(CRM_Utils_Array::value('values', $apiFields))) {
6a488035
TO
187 $allFields = array_keys($apiFields['values']);
188 }
189 $paramFields = array_keys($params);
cf8f0fff 190 $undefined = array_diff($paramFields, $allFields, array_keys($_COOKIE), [
9d32e6f7
EM
191 'action',
192 'entity',
193 'debug',
194 'version',
195 'check_permissions',
196 'IDS_request_uri',
197 'IDS_user_agent',
198 'return',
199 'sequential',
200 'rowCount',
201 'option_offset',
202 'option_limit',
203 'custom',
204 'option_sort',
205 'options',
206 'prettyprint',
7c31ae57 207 ]);
6a488035
TO
208 if ($undefined) {
209 $result['undefined_fields'] = array_merge($undefined);
210 }
211 }
6a488035
TO
212
213 $result['version'] = 3;
214 if (is_array($values)) {
e7c4a581 215 $result['count'] = (int) count($values);
6a488035
TO
216
217 // Convert value-separated strings to array
a22a5119 218 if ($action !== 'getfields') {
72b05357 219 _civicrm_api3_separate_values($values);
220 }
6a488035
TO
221
222 if ($result['count'] == 1) {
223 list($result['id']) = array_keys($values);
224 }
225 elseif (!empty($values['id']) && is_int($values['id'])) {
226 $result['id'] = $values['id'];
227 }
228 }
229 else {
230 $result['count'] = !empty($values) ? 1 : 0;
231 }
232
233 if (is_array($values) && isset($params['sequential']) &&
234 $params['sequential'] == 1
235 ) {
236 $result['values'] = array_values($values);
237 }
238 else {
239 $result['values'] = $values;
240 }
22e263ad 241 if (!empty($params['options']['metadata'])) {
9d32e6f7 242 // We've made metadata an array but only supporting 'fields' atm.
22e263ad 243 if (in_array('fields', (array) $params['options']['metadata']) && $action !== 'getfields') {
cf8f0fff 244 $fields = civicrm_api3($entity, 'getfields', [
9d32e6f7 245 'action' => substr($action, 0, 3) == 'get' ? 'get' : 'create',
cf8f0fff 246 ]);
dc5a7701
E
247 $result['metadata']['fields'] = $fields['values'];
248 }
249 }
9d32e6f7 250 // Report deprecations.
a14e9d08 251 $deprecated = _civicrm_api3_deprecation_check($entity, $result);
1726c7d2 252 // Always report "setvalue" action as deprecated.
a22a5119 253 if (!is_string($deprecated) && ($action === 'getactions' || $action === 'setvalue')) {
cf8f0fff 254 $deprecated = ((array) $deprecated) + ['setvalue' => 'The "setvalue" action is deprecated. Use "create" with an id instead.'];
265df5a0 255 }
9d32e6f7 256 // Always report "update" action as deprecated.
a22a5119 257 if (!is_string($deprecated) && ($action === 'getactions' || $action === 'update')) {
cf8f0fff 258 $deprecated = ((array) $deprecated) + ['update' => 'The "update" action is deprecated. Use "create" with an id instead.'];
a14e9d08
CW
259 }
260 if ($deprecated) {
9d32e6f7 261 // Metadata-level deprecations or wholesale entity deprecations.
a22a5119 262 if ($entity === 'Entity' || $action === 'getactions' || is_string($deprecated)) {
a14e9d08
CW
263 $result['deprecated'] = $deprecated;
264 }
265 // Action-specific deprecations
266 elseif (!empty($deprecated[$action])) {
267 $result['deprecated'] = $deprecated[$action];
268 }
269 }
6a488035
TO
270 return array_merge($result, $extraReturnValues);
271}
11e09c59
TO
272
273/**
61fe4988
EM
274 * Load the DAO of the entity.
275 *
645ee340 276 * @param $entity
9d32e6f7 277 *
645ee340 278 * @return bool
6a488035
TO
279 */
280function _civicrm_api3_load_DAO($entity) {
281 $dao = _civicrm_api3_get_DAO($entity);
282 if (empty($dao)) {
283 return FALSE;
284 }
6a488035
TO
285 $d = new $dao();
286 return $d;
287}
11e09c59
TO
288
289/**
61fe4988
EM
290 * Return the DAO of the function or Entity.
291 *
cf470720
TO
292 * @param string $name
293 * Either a function of the api (civicrm_{entity}_create or the entity name.
16b10e64
CW
294 * return the DAO name to manipulate this function
295 * eg. "civicrm_api3_contact_create" or "Contact" will return "CRM_Contact_BAO_Contact"
61fe4988 296 *
26728d3f 297 * @return mixed|string
6a488035
TO
298 */
299function _civicrm_api3_get_DAO($name) {
6a488035
TO
300 if (strpos($name, 'civicrm_api3') !== FALSE) {
301 $last = strrpos($name, '_');
302 // len ('civicrm_api3_') == 13
303 $name = substr($name, 13, $last - 13);
304 }
305
1644b908 306 $name = _civicrm_api_get_camel_name($name);
6a488035 307
a22a5119 308 if ($name === 'Individual' || $name === 'Household' || $name === 'Organization') {
6a488035
TO
309 $name = 'Contact';
310 }
311
da54ec85
CW
312 // hack to deal with incorrectly named BAO/DAO - see CRM-10859
313
bd6658bd 314 // FIXME: DAO should be renamed CRM_Mailing_DAO_MailingEventQueue
a22a5119 315 if ($name === 'MailingEventQueue') {
bd6658bd
TO
316 return 'CRM_Mailing_Event_DAO_Queue';
317 }
da54ec85
CW
318 // FIXME: DAO should be renamed CRM_Mailing_DAO_MailingRecipients
319 // but am not confident mailing_recipients is tested so have not tackled.
a22a5119 320 if ($name === 'MailingRecipients') {
da54ec85 321 return 'CRM_Mailing_DAO_Recipients';
6a488035 322 }
da54ec85 323 // FIXME: DAO should be renamed CRM_ACL_DAO_AclRole
a22a5119 324 if ($name === 'AclRole') {
663072a5
CW
325 return 'CRM_ACL_DAO_EntityRole';
326 }
da54ec85
CW
327 // FIXME: DAO should be renamed CRM_SMS_DAO_SmsProvider
328 // But this would impact SMS extensions so need to coordinate
329 // Probably best approach is to migrate them to use the api and decouple them from core BAOs
a22a5119 330 if ($name === 'SmsProvider') {
da54ec85
CW
331 return 'CRM_SMS_DAO_Provider';
332 }
333 // FIXME: DAO names should follow CamelCase convention
a22a5119 334 if ($name === 'Im' || $name === 'Acl' || $name === 'Pcp') {
1fe97a01 335 $name = strtoupper($name);
6a488035 336 }
23474ab3 337 $dao = CRM_Core_DAO_AllCoreTables::getFullName($name);
9537a4e1 338 if ($dao || !$name) {
23474ab3
CW
339 return $dao;
340 }
341
342 // Really weird apis can declare their own DAO name. Not sure if this is a good idea...
22e263ad 343 if (file_exists("api/v3/$name.php")) {
db47ea7b 344 include_once "api/v3/$name.php";
345 }
bada0f66 346
a22a5119 347 $daoFn = '_civicrm_api3_' . _civicrm_api_get_entity_name_from_camel($name) . '_DAO';
23474ab3
CW
348 if (function_exists($daoFn)) {
349 return $daoFn();
350 }
351
352 return NULL;
6a488035
TO
353}
354
11e09c59 355/**
0b80f0b4 356 * Return the BAO name of the function or Entity.
61fe4988 357 *
cf470720
TO
358 * @param string $name
359 * Is either a function of the api (civicrm_{entity}_create or the entity name.
16b10e64
CW
360 * return the DAO name to manipulate this function
361 * eg. "civicrm_contact_create" or "Contact" will return "CRM_Contact_BAO_Contact"
61fe4988 362 *
8bcc0d86 363 * @return string|null
6a488035
TO
364 */
365function _civicrm_api3_get_BAO($name) {
da54ec85 366 // FIXME: DAO should be renamed CRM_Badge_DAO_BadgeLayout
a22a5119 367 if ($name === 'PrintLabel') {
da54ec85
CW
368 return 'CRM_Badge_BAO_Layout';
369 }
785f03e2 370 if ($name === 'Order') {
371 // Order basically maps to contribution at the top level but
372 // has enhanced access to other entities.
373 $name = 'Contribution';
374 }
e13fa54b 375 if ($name === 'Dedupe') {
376 // Dedupe is a pseudoentity for PrevNextCache - but accessing dedupe related info
377 // not the other cache info like search results (which could in fact be in Redis or another cache engine)
378 $name = 'PrevNextCache';
379 }
a494d7a3 380 if ($name === 'Payment') {
381 $name = 'FinancialTrxn';
382 }
6a488035 383 $dao = _civicrm_api3_get_DAO($name);
5c1174d3
CW
384 if (!$dao) {
385 return NULL;
386 }
d9f036bb 387 $bao = str_replace("DAO", "BAO", $dao);
49e101d0 388 $file = strtr($bao, '_', '/') . '.php';
5c1174d3 389 // Check if this entity actually has a BAO. Fall back on the DAO if not.
49e101d0 390 return stream_resolve_include_path($file) ? $bao : $dao;
6a488035
TO
391}
392
393/**
61fe4988
EM
394 * Recursive function to explode value-separated strings into arrays.
395 *
645ee340 396 * @param $values
6a488035
TO
397 */
398function _civicrm_api3_separate_values(&$values) {
399 $sp = CRM_Core_DAO::VALUE_SEPARATOR;
400 foreach ($values as $key => & $value) {
401 if (is_array($value)) {
402 _civicrm_api3_separate_values($value);
403 }
404 elseif (is_string($value)) {
61fe4988 405 // This is to honor the way case API was originally written.
a22a5119 406 if ($key === 'case_type_id') {
6a488035
TO
407 $value = trim(str_replace($sp, ',', $value), ',');
408 }
409 elseif (strpos($value, $sp) !== FALSE) {
410 $value = explode($sp, trim($value, $sp));
411 }
412 }
413 }
414}
11e09c59
TO
415
416/**
61fe4988
EM
417 * This is a legacy wrapper for api_store_values.
418 *
419 * It checks suitable fields using getfields rather than DAO->fields.
6a488035 420 *
61fe4988 421 * Getfields has handling for how to deal with unique names which dao->fields doesn't
6a488035
TO
422 *
423 * Note this is used by BAO type create functions - eg. contribution
61fe4988 424 *
6a488035
TO
425 * @param string $entity
426 * @param array $params
427 * @param array $values
428 */
9b873358 429function _civicrm_api3_filter_fields_for_bao($entity, &$params, &$values) {
cf8f0fff 430 $fields = civicrm_api($entity, 'getfields', ['version' => 3, 'action' => 'create']);
6a488035
TO
431 $fields = $fields['values'];
432 _civicrm_api3_store_values($fields, $params, $values);
433}
7c31ae57 434
6a488035 435/**
61fe4988 436 * Store values.
6a488035
TO
437 *
438 * @param array $fields
439 * @param array $params
440 * @param array $values
441 *
a6c01b45 442 * @return Bool
6a488035
TO
443 */
444function _civicrm_api3_store_values(&$fields, &$params, &$values) {
445 $valueFound = FALSE;
446
447 $keys = array_intersect_key($params, $fields);
448 foreach ($keys as $name => $value) {
449 if ($name !== 'id') {
450 $values[$name] = $value;
451 $valueFound = TRUE;
452 }
453 }
454 return $valueFound;
455}
26728d3f 456
836231f4
JV
457/**
458 * Returns field names of the given entity fields.
459 *
2b28667f 460 * @param array $fields
836231f4
JV
461 * Fields array to retrieve the field names for.
462 * @return array
463 */
464function _civicrm_api3_field_names($fields) {
cf8f0fff 465 $result = [];
84c546ab 466 foreach ($fields as $key => $value) {
a50d9fb1 467 if (!empty($value['name'])) {
84c546ab 468 $result[] = $value['name'];
a50d9fb1 469 }
836231f4
JV
470 }
471 return $result;
472}
473
6a488035 474/**
61fe4988
EM
475 * Get function for query object api.
476 *
477 * The API supports 2 types of get request. The more complex uses the BAO query object.
6a488035
TO
478 * This is a generic function for those functions that call it
479 *
480 * At the moment only called by contact we should extend to contribution &
481 * others that use the query object. Note that this function passes permission information in.
482 * The others don't
483 *
c23f45d3 484 * Ideally this would be merged with _civicrm_get_query_object but we need to resolve differences in what the
82f7d8b2 485 * 2 variants call
61fe4988 486 *
26728d3f 487 * @param $entity
cf470720
TO
488 * @param array $params
489 * As passed into api get or getcount function.
490 * @param array $additional_options
491 * Array of options (so we can modify the filter).
492 * @param bool $getCount
493 * Are we just after the count.
9ae25b56 494 * @param int $mode
495 * This basically correlates to the component.
f12e4c41 496 * @param null|array $defaultReturnProperties
497 * Default return properties for the entity
498 * (used if return not set - but don't do that - set return!).
26728d3f 499 *
2241036a 500 * @return array
f12e4c41 501 * @throws API_Exception
6a488035 502 */
cf8f0fff 503function _civicrm_api3_get_using_query_object($entity, $params, $additional_options = [], $getCount = NULL, $mode = 1, $defaultReturnProperties = NULL) {
244bbdd8 504 $lowercase_entity = _civicrm_api_get_entity_name_from_camel($entity);
6a488035 505 // Convert id to e.g. contact_id
244bbdd8
CW
506 if (empty($params[$lowercase_entity . '_id']) && isset($params['id'])) {
507 $params[$lowercase_entity . '_id'] = $params['id'];
6a488035
TO
508 }
509 unset($params['id']);
510
511 $options = _civicrm_api3_get_options_from_params($params, TRUE);
512
513 $inputParams = array_merge(
cf8f0fff
CW
514 CRM_Utils_Array::value('input_params', $options, []),
515 CRM_Utils_Array::value('input_params', $additional_options, [])
6a488035
TO
516 );
517 $returnProperties = array_merge(
cf8f0fff
CW
518 CRM_Utils_Array::value('return', $options, []),
519 CRM_Utils_Array::value('return', $additional_options, [])
6a488035 520 );
9b873358 521 if (empty($returnProperties)) {
9ae25b56 522 $returnProperties = $defaultReturnProperties;
6a488035 523 }
9b873358 524 if (!empty($params['check_permissions'])) {
6a488035 525 // we will filter query object against getfields
cf8f0fff 526 $fields = civicrm_api($entity, 'getfields', ['version' => 3, 'action' => 'get']);
6a488035 527 // we need to add this in as earlier in this function 'id' was unset in favour of $entity_id
cf8f0fff
CW
528 $fields['values'][$lowercase_entity . '_id'] = [];
529 $varsToFilter = ['returnProperties', 'inputParams'];
9b873358
TO
530 foreach ($varsToFilter as $varToFilter) {
531 if (!is_array($$varToFilter)) {
6a488035
TO
532 continue;
533 }
534 //I was going to throw an exception rather than silently filter out - but
535 //would need to diff out of exceptions arr other keys like 'options', 'return', 'api. etcetc
536 //so we are silently ignoring parts of their request
537 //$exceptionsArr = array_diff(array_keys($$varToFilter), array_keys($fields['values']));
538 $$varToFilter = array_intersect_key($$varToFilter, $fields['values']);
539 }
540 }
35671d00 541 $options = array_merge($options, $additional_options);
f748c073 542 $sort = $options['sort'] ?? NULL;
543 $offset = $options['offset'] ?? NULL;
544 $limit = $options['limit'] ?? NULL;
545 $smartGroupCache = $params['smartGroupCache'] ?? NULL;
6a488035 546
9b873358 547 if ($getCount) {
6a488035
TO
548 $limit = NULL;
549 $returnProperties = NULL;
550 }
551
abb4c597 552 if (substr($sort, 0, 2) == 'id') {
244bbdd8 553 $sort = $lowercase_entity . "_" . $sort;
abb4c597 554 }
555
6a488035 556 $newParams = CRM_Contact_BAO_Query::convertFormValues($inputParams);
d031c654 557
35671d00 558 $skipPermissions = !empty($params['check_permissions']) ? 0 : 1;
78c0bfc0 559
9ae25b56 560 list($entities) = CRM_Contact_BAO_Query::apiQuery(
6a488035
TO
561 $newParams,
562 $returnProperties,
563 NULL,
564 $sort,
35671d00 565 $offset,
6a488035
TO
566 $limit,
567 $smartGroupCache,
568 $getCount,
9ae25b56 569 $skipPermissions,
66670e4d 570 $mode,
0606198b 571 $entity,
572 TRUE
6a488035 573 );
6a488035
TO
574
575 return $entities;
576}
11e09c59 577
82f7d8b2 578/**
61fe4988
EM
579 * Get dao query object based on input params.
580 *
82f7d8b2
EM
581 * Ideally this would be merged with _civicrm_get_using_query_object but we need to resolve differences in what the
582 * 2 variants call
583 *
584 * @param array $params
585 * @param string $mode
586 * @param string $entity
61fe4988 587 *
971d41b1
CW
588 * @return array
589 * [CRM_Core_DAO|CRM_Contact_BAO_Query]
82f7d8b2
EM
590 */
591function _civicrm_api3_get_query_object($params, $mode, $entity) {
971d41b1 592 $options = _civicrm_api3_get_options_from_params($params, TRUE, $entity, 'get');
9c1bc317
CW
593 $sort = $options['sort'] ?? NULL;
594 $offset = $options['offset'] ?? NULL;
595 $rowCount = $options['limit'] ?? NULL;
cf8f0fff 596 $inputParams = CRM_Utils_Array::value('input_params', $options, []);
9c1bc317 597 $returnProperties = $options['return'] ?? NULL;
82f7d8b2
EM
598 if (empty($returnProperties)) {
599 $returnProperties = CRM_Contribute_BAO_Query::defaultReturnProperties($mode);
600 }
601
3c151c70 602 $newParams = CRM_Contact_BAO_Query::convertFormValues($inputParams, 0, FALSE, $entity);
82f7d8b2 603 $query = new CRM_Contact_BAO_Query($newParams, $returnProperties, NULL,
835307a7 604 FALSE, FALSE, $mode,
0606198b 605 empty($params['check_permissions']),
606 TRUE, TRUE, NULL, 'AND', 'NULL', TRUE
82f7d8b2
EM
607 );
608 list($select, $from, $where, $having) = $query->query();
609
610 $sql = "$select $from $where $having";
611
612 if (!empty($sort)) {
1217e5e6 613 $sort = CRM_Utils_Type::escape($sort, 'MysqlOrderBy');
82f7d8b2
EM
614 $sql .= " ORDER BY $sort ";
615 }
22e263ad 616 if (!empty($rowCount)) {
82f7d8b2
EM
617 $sql .= " LIMIT $offset, $rowCount ";
618 }
619 $dao = CRM_Core_DAO::executeQuery($sql);
cf8f0fff 620 return [$dao, $query];
82f7d8b2
EM
621}
622
11e09c59 623/**
61fe4988
EM
624 * Function transfers the filters being passed into the DAO onto the params object.
625 *
0298287b 626 * @deprecated DAO based retrieval is being phased out.
627 *
a75c13cc
EM
628 * @param CRM_Core_DAO $dao
629 * @param array $params
630 * @param bool $unique
0f3699bf 631 * @param array $extraSql
632 * API specific queries eg for event isCurrent would be converted to
633 * $extraSql['where'] = array('civicrm_event' => array('(start_date >= CURDATE() || end_date >= CURDATE())'));
a75c13cc
EM
634 *
635 * @throws API_Exception
636 * @throws Exception
6a488035 637 */
cf8f0fff 638function _civicrm_api3_dao_set_filter(&$dao, $params, $unique = TRUE, $extraSql = []) {
244bbdd8
CW
639 $entity = _civicrm_api_get_entity_name_from_dao($dao);
640 $lowercase_entity = _civicrm_api_get_entity_name_from_camel($entity);
641 if (!empty($params[$lowercase_entity . "_id"]) && empty($params['id'])) {
6a488035 642 //if entity_id is set then treat it as ID (will be overridden by id if set)
244bbdd8 643 $params['id'] = $params[$lowercase_entity . "_id"];
6a488035 644 }
461c9a60
EM
645 $allfields = _civicrm_api3_build_fields_array($dao, $unique);
646 $fields = array_intersect(array_keys($allfields), array_keys($params));
3c70d501 647
648 $options = _civicrm_api3_get_options_from_params($params);
6a488035
TO
649 //apply options like sort
650 _civicrm_api3_apply_options_to_dao($params, $dao, $entity);
651
652 //accept filters like filter.activity_date_time_high
653 // std is now 'filters' => ..
654 if (strstr(implode(',', array_keys($params)), 'filter')) {
655 if (isset($params['filters']) && is_array($params['filters'])) {
656 foreach ($params['filters'] as $paramkey => $paramvalue) {
657 _civicrm_api3_apply_filters_to_dao($paramkey, $paramvalue, $dao);
658 }
659 }
660 else {
661 foreach ($params as $paramkey => $paramvalue) {
662 if (strstr($paramkey, 'filter')) {
663 _civicrm_api3_apply_filters_to_dao(substr($paramkey, 7), $paramvalue, $dao);
664 }
665 }
666 }
667 }
6a488035 668 if (!$fields) {
cf8f0fff 669 $fields = [];
6a488035
TO
670 }
671
672 foreach ($fields as $field) {
673 if (is_array($params[$field])) {
674 //get the actual fieldname from db
675 $fieldName = $allfields[$field]['name'];
a038992c 676 $where = CRM_Core_DAO::createSqlFilter($fieldName, $params[$field], 'String');
22e263ad 677 if (!empty($where)) {
a038992c 678 $dao->whereAdd($where);
6a488035
TO
679 }
680 }
681 else {
682 if ($unique) {
ed22af33
TO
683 $daoFieldName = $allfields[$field]['name'];
684 if (empty($daoFieldName)) {
685 throw new API_Exception("Failed to determine field name for \"$field\"");
686 }
687 $dao->{$daoFieldName} = $params[$field];
6a488035
TO
688 }
689 else {
690 $dao->$field = $params[$field];
691 }
692 }
693 }
0f3699bf 694 if (!empty($extraSql['where'])) {
695 foreach ($extraSql['where'] as $table => $sqlWhere) {
696 foreach ($sqlWhere as $where) {
697 $dao->whereAdd($where);
698 }
699 }
700 }
972322c5 701 if (!empty($options['return']) && is_array($options['return']) && empty($options['is_count'])) {
6a488035 702 $dao->selectAdd();
9d32e6f7
EM
703 // Ensure 'id' is included.
704 $options['return']['id'] = TRUE;
35671d00 705 $allfields = _civicrm_api3_get_unique_name_array($dao);
3c70d501 706 $returnMatched = array_intersect(array_keys($options['return']), $allfields);
6a488035 707 foreach ($returnMatched as $returnValue) {
48e1c0dc 708 $dao->selectAdd($returnValue);
6a488035 709 }
48e1c0dc 710
61fe4988
EM
711 // Not already matched on the field names.
712 $unmatchedFields = array_diff(
48e1c0dc 713 array_keys($options['return']),
714 $returnMatched
715 );
716
717 $returnUniqueMatched = array_intersect(
718 $unmatchedFields,
9d32e6f7
EM
719 // But a match for the field keys.
720 array_flip($allfields)
48e1c0dc 721 );
9b873358 722 foreach ($returnUniqueMatched as $uniqueVal) {
6a488035 723 $dao->selectAdd($allfields[$uniqueVal]);
6a488035 724 }
6a488035 725 }
6e1bb60c 726 $dao->setApiFilter($params);
6a488035
TO
727}
728
11e09c59 729/**
61fe4988
EM
730 * Apply filters (e.g. high, low) to DAO object (prior to find).
731 *
cf470720
TO
732 * @param string $filterField
733 * Field name of filter.
734 * @param string $filterValue
735 * Field value of filter.
736 * @param object $dao
737 * DAO object.
6a488035
TO
738 */
739function _civicrm_api3_apply_filters_to_dao($filterField, $filterValue, &$dao) {
740 if (strstr($filterField, 'high')) {
741 $fieldName = substr($filterField, 0, -5);
742 $dao->whereAdd("($fieldName <= $filterValue )");
743 }
744 if (strstr($filterField, 'low')) {
745 $fieldName = substr($filterField, 0, -4);
746 $dao->whereAdd("($fieldName >= $filterValue )");
747 }
9b873358 748 if ($filterField == 'is_current' && $filterValue == 1) {
6a488035
TO
749 $todayStart = date('Ymd000000', strtotime('now'));
750 $todayEnd = date('Ymd235959', strtotime('now'));
751 $dao->whereAdd("(start_date <= '$todayStart' OR start_date IS NULL) AND (end_date >= '$todayEnd' OR end_date IS NULL)");
9b873358 752 if (property_exists($dao, 'is_active')) {
6a488035
TO
753 $dao->whereAdd('is_active = 1');
754 }
755 }
756}
11e09c59
TO
757
758/**
6a488035 759 * Get sort, limit etc options from the params - supporting old & new formats.
9d32e6f7
EM
760 *
761 * Get returnProperties for legacy
26728d3f 762 *
cf470720
TO
763 * @param array $params
764 * Params array as passed into civicrm_api.
765 * @param bool $queryObject
9d32e6f7 766 * Is this supporting a queryObject api (e.g contact) - if so we support more options.
16b10e64 767 * for legacy report & return a unique fields array
26728d3f
E
768 *
769 * @param string $entity
770 * @param string $action
771 *
1cfa04c4 772 * @throws API_Exception
a6c01b45 773 * @return array
72b3a70c 774 * options extracted from params
6a488035 775 */
d90b6399 776function _civicrm_api3_get_options_from_params($params, $queryObject = FALSE, $entity = '', $action = '') {
4846df91 777 $lowercase_entity = _civicrm_api_get_entity_name_from_camel($entity);
972322c5 778 $is_count = FALSE;
6a488035 779
6a488035 780 // dear PHP thought it would be a good idea to transform a.b into a_b in the get/post
2975f0aa
CW
781 $sort = $params['option_sort'] ?? $params['option.sort'] ?? $params['sort'] ?? 0;
782 $offset = $params['option_offset'] ?? $params['option.offset'] ?? $params['offset'] ?? 0;
6a488035
TO
783
784 $limit = CRM_Utils_Array::value('rowCount', $params, 25);
785 $limit = CRM_Utils_Array::value('option.limit', $params, $limit);
786 $limit = CRM_Utils_Array::value('option_limit', $params, $limit);
787
2975f0aa 788 if (isset($params['options']) && is_array($params['options'])) {
972322c5 789 // is count is set by generic getcount not user
2975f0aa
CW
790 $is_count = $params['options']['is_count'] ?? FALSE;
791 $offset = $params['options']['offset'] ?? $offset;
792 $limit = CRM_Utils_Array::value('limit', $params['options'], $limit);
793 $sort = $params['options']['sort'] ?? $sort;
6a488035
TO
794 }
795
cf8f0fff 796 $returnProperties = [];
6a488035
TO
797 // handle the format return =sort_name,display_name...
798 if (array_key_exists('return', $params)) {
799 if (is_array($params['return'])) {
800 $returnProperties = array_fill_keys($params['return'], 1);
801 }
802 else {
803 $returnProperties = explode(',', str_replace(' ', '', $params['return']));
804 $returnProperties = array_fill_keys($returnProperties, 1);
805 }
806 }
35671d00 807 if ($entity && $action == 'get') {
a7488080 808 if (!empty($returnProperties['id'])) {
4846df91 809 $returnProperties[$lowercase_entity . '_id'] = 1;
6a488035
TO
810 unset($returnProperties['id']);
811 }
6a488035
TO
812 }
813
cf8f0fff 814 $options = [
ba93e7ad 815 'offset' => CRM_Utils_Rule::integer($offset) ? $offset : NULL,
7244a956 816 'limit' => (!$is_count && CRM_Utils_Rule::integer($limit)) ? $limit : NULL,
6313f1f7 817 'is_count' => $is_count,
cf8f0fff
CW
818 'return' => !empty($returnProperties) ? $returnProperties : [],
819 ];
e9ab8548 820
cf8f0fff 821 $finalSort = [];
e9ab8548 822 $options['sort'] = NULL;
823 if (!empty($sort)) {
4c6cc364
CW
824 if (!is_array($sort)) {
825 $sort = array_map('trim', explode(',', $sort));
826 }
827 foreach ($sort as $s) {
a22a5119 828 if ($s === '(1)' || CRM_Utils_Rule::mysqlOrderBy($s)) {
829 if ($entity && $action === 'get') {
8ff43f60
SL
830 switch (trim(strtolower($s))) {
831 case 'id':
832 case 'id desc':
833 case 'id asc':
834 $s = str_replace('id', $lowercase_entity . '_id', $s);
835 }
836 }
1217e5e6
SL
837 $finalSort[] = $s;
838 }
839 else {
840 throw new API_Exception("Unknown field specified for sort. Cannot order by '$s'");
841 }
842 }
e9ab8548 843 $options['sort'] = implode(', ', $finalSort);
1217e5e6 844 }
972322c5 845
13c1cf91 846 if ($options['sort'] && stristr($options['sort'], 'SELECT')) {
ba93e7ad
CW
847 throw new API_Exception('invalid string in sort options');
848 }
13c1cf91 849
6a488035
TO
850 if (!$queryObject) {
851 return $options;
852 }
853 //here comes the legacy support for $returnProperties, $inputParams e.g for contat_get
2b28667f 854 // if the query object is being used this should be used
cf8f0fff
CW
855 $inputParams = [];
856 $legacyreturnProperties = [];
857 $otherVars = [
35671d00 858 'sort', 'offset', 'rowCount', 'options', 'return',
dba939ce 859 'version', 'prettyprint', 'check_permissions', 'sequential',
cf8f0fff 860 ];
6a488035 861 foreach ($params as $n => $v) {
a22a5119 862 if (substr($n, 0, 7) === 'return.') {
6a488035
TO
863 $legacyreturnProperties[substr($n, 7)] = $v;
864 }
a22a5119 865 elseif ($n === 'id') {
4846df91 866 $inputParams[$lowercase_entity . '_id'] = $v;
6a488035 867 }
2975f0aa 868 elseif (!in_array($n, $otherVars)) {
6a488035 869 $inputParams[$n] = $v;
13c1cf91 870 if ($v && !is_array($v) && stristr($v, 'SELECT')) {
ba93e7ad
CW
871 throw new API_Exception('invalid string');
872 }
6a488035
TO
873 }
874 }
875 $options['return'] = array_merge($returnProperties, $legacyreturnProperties);
876 $options['input_params'] = $inputParams;
877 return $options;
878}
11e09c59
TO
879
880/**
9d32e6f7 881 * Apply options (e.g. sort, limit, order by) to DAO object (prior to find).
26728d3f 882 *
cf470720
TO
883 * @param array $params
884 * Params array as passed into civicrm_api.
885 * @param object $dao
886 * DAO object.
26728d3f 887 * @param $entity
a22a5119 888 *
889 * @throws \API_Exception
890 * @throws \CRM_Core_Exception
6a488035
TO
891 */
892function _civicrm_api3_apply_options_to_dao(&$params, &$dao, $entity) {
893
35671d00 894 $options = _civicrm_api3_get_options_from_params($params, FALSE, $entity);
22e263ad
TO
895 if (!$options['is_count']) {
896 if (!empty($options['limit'])) {
35671d00 897 $dao->limit((int) $options['offset'], (int) $options['limit']);
ebddc2d9 898 }
972322c5 899 if (!empty($options['sort'])) {
1217e5e6 900 $options['sort'] = CRM_Utils_Type::escape($options['sort'], 'MysqlOrderBy');
972322c5 901 $dao->orderBy($options['sort']);
902 }
6a488035
TO
903 }
904}
905
11e09c59 906/**
9d32e6f7
EM
907 * Build fields array.
908 *
909 * This is the array of fields as it relates to the given DAO
6a488035 910 * returns unique fields as keys by default but if set but can return by DB fields
971d41b1
CW
911 *
912 * @param CRM_Core_DAO $bao
645ee340 913 * @param bool $unique
971d41b1
CW
914 *
915 * @return array
6a488035
TO
916 */
917function _civicrm_api3_build_fields_array(&$bao, $unique = TRUE) {
918 $fields = $bao->fields();
919 if ($unique) {
9b873358 920 if (empty($fields['id'])) {
4846df91 921 $lowercase_entity = _civicrm_api_get_entity_name_from_camel(_civicrm_api_get_entity_name_from_dao($bao));
523c222f 922 if (isset($fields[$lowercase_entity . '_id'])) {
923 $fields['id'] = $fields[$lowercase_entity . '_id'];
924 unset($fields[$lowercase_entity . '_id']);
925 }
6a488035
TO
926 }
927 return $fields;
928 }
929
930 foreach ($fields as $field) {
931 $dbFields[$field['name']] = $field;
932 }
933 return $dbFields;
934}
935
11e09c59 936/**
9d32e6f7
EM
937 * Build fields array.
938 *
939 * This is the array of fields as it relates to the given DAO
6a488035 940 * returns unique fields as keys by default but if set but can return by DB fields
971d41b1 941 *
488e7aba 942 * @param CRM_Core_DAO $bao
fb7f68eb 943 *
971d41b1 944 * @return array
6a488035
TO
945 */
946function _civicrm_api3_get_unique_name_array(&$bao) {
947 $fields = $bao->fields();
948 foreach ($fields as $field => $values) {
35671d00 949 $uniqueFields[$field] = CRM_Utils_Array::value('name', $values, $field);
6a488035
TO
950 }
951 return $uniqueFields;
952}
953
6a488035 954/**
9d32e6f7 955 * Converts an DAO object to an array.
6a488035 956 *
cf470720
TO
957 * @param CRM_Core_DAO $dao
958 * Object to convert.
c490a46a 959 * @param array $params
26728d3f
E
960 * @param bool $uniqueFields
961 * @param string $entity
941feb14
EM
962 * @param bool $autoFind
963 *
26728d3f 964 * @return array
a22a5119 965 *
966 * @throws \API_Exception
967 *
968 * @deprecated - DAO based retrieval is being phased out.
969 *
6a488035 970 */
ab5fa8f2 971function _civicrm_api3_dao_to_array($dao, $params = NULL, $uniqueFields = TRUE, $entity = "", $autoFind = TRUE) {
cf8f0fff 972 $result = [];
22e263ad 973 if (isset($params['options']) && !empty($params['options']['is_count'])) {
972322c5 974 return $dao->count();
975 }
ab5fa8f2 976 if (empty($dao)) {
cf8f0fff 977 return [];
ab5fa8f2
TO
978 }
979 if ($autoFind && !$dao->find()) {
cf8f0fff 980 return [];
6a488035
TO
981 }
982
22e263ad 983 if (isset($dao->count)) {
972322c5 984 return $dao->count;
985 }
6a488035 986
0f3699bf 987 $fields = array_keys(_civicrm_api3_build_fields_array($dao, FALSE));
6a488035 988 while ($dao->fetch()) {
cf8f0fff 989 $tmp = [];
6a488035
TO
990 foreach ($fields as $key) {
991 if (array_key_exists($key, $dao)) {
992 // not sure on that one
993 if ($dao->$key !== NULL) {
994 $tmp[$key] = $dao->$key;
995 }
996 }
997 }
998 $result[$dao->id] = $tmp;
8295042e 999
22e263ad 1000 if (_civicrm_api3_custom_fields_are_required($entity, $params)) {
e9ff5391 1001 _civicrm_api3_custom_data_get($result[$dao->id], $params['check_permissions'], $entity, $dao->id);
6a488035
TO
1002 }
1003 }
1004
6a488035
TO
1005 return $result;
1006}
1007
8295042e 1008/**
61fe4988
EM
1009 * Determine if custom fields need to be retrieved.
1010 *
8295042e
EM
1011 * We currently retrieve all custom fields or none at this level so if we know the entity
1012 * && it can take custom fields & there is the string 'custom' in their return request we get them all, they are filtered on the way out
8295042e 1013 *
cf470720
TO
1014 * @param string $entity
1015 * Entity name in CamelCase.
971d41b1 1016 * @param array $params
8295042e
EM
1017 *
1018 * @return bool
a22a5119 1019 * @throws \API_Exception
1020 *
1021 * @todo filter so only required fields are queried
8295042e
EM
1022 */
1023function _civicrm_api3_custom_fields_are_required($entity, $params) {
1024 if (!array_key_exists($entity, CRM_Core_BAO_CustomQuery::$extendsMap)) {
1025 return FALSE;
1026 }
1027 $options = _civicrm_api3_get_options_from_params($params);
61fe4988 1028 // We check for possibility of 'custom' => 1 as well as specific custom fields.
8295042e 1029 $returnString = implode('', $options['return']) . implode('', array_keys($options['return']));
22e263ad 1030 if (stristr($returnString, 'custom')) {
8295042e
EM
1031 return TRUE;
1032 }
1033}
2b28667f 1034
6a488035 1035/**
61fe4988 1036 * Converts an object to an array.
6a488035 1037 *
cf470720
TO
1038 * @param object $dao
1039 * (reference) object to convert.
1040 * @param array $values
1041 * (reference) array.
26728d3f 1042 * @param array|bool $uniqueFields
6a488035
TO
1043 */
1044function _civicrm_api3_object_to_array(&$dao, &$values, $uniqueFields = FALSE) {
1045
1046 $fields = _civicrm_api3_build_fields_array($dao, $uniqueFields);
1047 foreach ($fields as $key => $value) {
1048 if (array_key_exists($key, $dao)) {
1049 $values[$key] = $dao->$key;
1050 }
1051 }
1052}
1053
11e09c59 1054/**
9d32e6f7
EM
1055 * Wrapper for _civicrm_object_to_array when api supports unique fields.
1056 *
645ee340
EM
1057 * @param $dao
1058 * @param $values
9d32e6f7 1059 *
645ee340 1060 * @return array
6a488035
TO
1061 */
1062function _civicrm_api3_object_to_array_unique_fields(&$dao, &$values) {
1063 return _civicrm_api3_object_to_array($dao, $values, TRUE);
1064}
1065
1066/**
9d32e6f7 1067 * Format custom parameters.
6a488035
TO
1068 *
1069 * @param array $params
1070 * @param array $values
cf470720
TO
1071 * @param string $extends
1072 * Entity that this custom field extends (e.g. contribution, event, contact).
1073 * @param string $entityId
1074 * ID of entity per $extends.
6a488035
TO
1075 */
1076function _civicrm_api3_custom_format_params($params, &$values, $extends, $entityId = NULL) {
cf8f0fff 1077 $values['custom'] = [];
e9f2f3b1
EM
1078 $checkCheckBoxField = FALSE;
1079 $entity = $extends;
cf8f0fff 1080 if (in_array($extends, ['Household', 'Individual', 'Organization'])) {
e9f2f3b1
EM
1081 $entity = 'Contact';
1082 }
1083
cf8f0fff 1084 $fields = civicrm_api($entity, 'getfields', ['version' => 3, 'action' => 'create']);
22e263ad 1085 if (!$fields['is_error']) {
e9f2f3b1
EM
1086 // not sure if fields could be error - maybe change to using civicrm_api3 wrapper later - this is conservative
1087 $fields = $fields['values'];
1088 $checkCheckBoxField = TRUE;
1089 }
1090
6a488035
TO
1091 foreach ($params as $key => $value) {
1092 list($customFieldID, $customValueID) = CRM_Core_BAO_CustomField::getKeyID($key, TRUE);
35671d00 1093 if ($customFieldID && (!is_null($value))) {
24e4bf08 1094 if ($checkCheckBoxField && !empty($fields['custom_' . $customFieldID]) && $fields['custom_' . $customFieldID]['html_type'] == 'CheckBox') {
e9f2f3b1
EM
1095 formatCheckBoxField($value, 'custom_' . $customFieldID, $entity);
1096 }
4c16123d 1097
6a488035 1098 CRM_Core_BAO_CustomField::formatCustomField($customFieldID, $values['custom'],
211353a8 1099 $value, $extends, $customValueID, $entityId, FALSE, FALSE, TRUE
6a488035
TO
1100 );
1101 }
1102 }
1103}
1104
8295042e 1105/**
9d32e6f7
EM
1106 * Format parameters for create action.
1107 *
c490a46a 1108 * @param array $params
8295042e
EM
1109 * @param $entity
1110 */
1111function _civicrm_api3_format_params_for_create(&$params, $entity) {
cf8f0fff 1112 $nonGenericEntities = ['Contact', 'Individual', 'Household', 'Organization'];
8295042e 1113
3fb8828b 1114 $customFieldEntities = array_diff_key(CRM_Core_SelectValues::customGroupExtends(), array_fill_keys($nonGenericEntities, 1));
22e263ad 1115 if (!array_key_exists($entity, $customFieldEntities)) {
8295042e
EM
1116 return;
1117 }
cf8f0fff 1118 $values = [];
8295042e
EM
1119 _civicrm_api3_custom_format_params($params, $values, $entity);
1120 $params = array_merge($params, $values);
1121}
1122
e9f2f3b1 1123/**
9d32e6f7
EM
1124 * We can't rely on downstream to add separators to checkboxes so we'll check here.
1125 *
1126 * We should look at pushing to BAO function
e9f2f3b1
EM
1127 * and / or validate function but this is a safe place for now as it has massive test coverage & we can keep the change very specific
1128 * note that this is specifically tested in the GRANT api test case so later refactoring should use that as a checking point
1129 *
1130 * We will only alter the value if we are sure that changing it will make it correct - if it appears wrong but does not appear to have a clear fix we
1131 * don't touch - lots of very cautious code in here
1132 *
4ee91976
EM
1133 * The resulting array should look like
1134 * array(
1135 * 'key' => 1,
1136 * 'key1' => 1,
1137 * );
1138 *
1139 * OR one or more keys wrapped in a CRM_Core_DAO::VALUE_SEPARATOR - either it accepted by the receiving function
1140 *
e9f2f3b1
EM
1141 * @todo - we are probably skipping handling disabled options as presumably getoptions is not giving us them. This should be non-regressive but might
1142 * be fixed in future
1143 *
9d32e6f7
EM
1144 * @param mixed $checkboxFieldValue
1145 * @param string $customFieldLabel
1146 * @param string $entity
e9f2f3b1
EM
1147 */
1148function formatCheckBoxField(&$checkboxFieldValue, $customFieldLabel, $entity) {
1149
1150 if (is_string($checkboxFieldValue) && stristr($checkboxFieldValue, CRM_Core_DAO::VALUE_SEPARATOR)) {
9d32e6f7 1151 // We can assume it's pre-formatted.
e9f2f3b1
EM
1152 return;
1153 }
cf8f0fff 1154 $options = civicrm_api($entity, 'getoptions', ['field' => $customFieldLabel, 'version' => 3]);
e9f2f3b1 1155 if (!empty($options['is_error'])) {
9d32e6f7 1156 // The check is precautionary - can probably be removed later.
e9f2f3b1
EM
1157 return;
1158 }
1159
1160 $options = $options['values'];
1161 $validValue = TRUE;
1162 if (is_array($checkboxFieldValue)) {
1163 foreach ($checkboxFieldValue as $key => $value) {
1164 if (!array_key_exists($key, $options)) {
1165 $validValue = FALSE;
1166 }
1167 }
1168 if ($validValue) {
1169 // we have been passed an array that is already in the 'odd' custom field format
1170 return;
1171 }
1172 }
1173
1174 // so we either have an array that is not keyed by the value or we have a string that doesn't hold separators
1175 // if the array only has one item we'll treat it like any other string
1176 if (is_array($checkboxFieldValue) && count($checkboxFieldValue) == 1) {
1177 $possibleValue = reset($checkboxFieldValue);
1178 }
1179 if (is_string($checkboxFieldValue)) {
1180 $possibleValue = $checkboxFieldValue;
1181 }
1182 if (isset($possibleValue) && array_key_exists($possibleValue, $options)) {
1183 $checkboxFieldValue = CRM_Core_DAO::VALUE_SEPARATOR . $possibleValue . CRM_Core_DAO::VALUE_SEPARATOR;
1184 return;
1185 }
1186 elseif (is_array($checkboxFieldValue)) {
1187 // so this time around we are considering the values in the array
1188 $possibleValues = $checkboxFieldValue;
1189 $formatValue = TRUE;
1190 }
1191 elseif (stristr($checkboxFieldValue, ',')) {
1192 $formatValue = TRUE;
e834996a
EM
1193 //lets see if we should separate it - we do this near the end so we
1194 // ensure we have already checked that the comma is not part of a legitimate match
1195 // and of course, we don't make any changes if we don't now have matches
e9f2f3b1
EM
1196 $possibleValues = explode(',', $checkboxFieldValue);
1197 }
1198 else {
1199 // run out of ideas as to what the format might be - if it's a string it doesn't match with or without the ','
1200 return;
1201 }
1202
1203 foreach ($possibleValues as $index => $possibleValue) {
1204 if (array_key_exists($possibleValue, $options)) {
1205 // do nothing - we will leave formatValue set to true unless another value is not found (which would cause us to ignore the whole value set)
1206 }
1207 elseif (array_key_exists(trim($possibleValue), $options)) {
1208 $possibleValues[$index] = trim($possibleValue);
1209 }
1210 else {
1211 $formatValue = FALSE;
1212 }
1213 }
1214 if ($formatValue) {
1215 $checkboxFieldValue = CRM_Core_DAO::VALUE_SEPARATOR . implode(CRM_Core_DAO::VALUE_SEPARATOR, $possibleValues) . CRM_Core_DAO::VALUE_SEPARATOR;
1216 }
1217}
1218
11e09c59 1219/**
9d32e6f7 1220 * Function to do a 'standard' api get - when the api is only doing a $bao->find then use this.
6a488035 1221 *
cf470720
TO
1222 * @param string $bao_name
1223 * Name of BAO.
1224 * @param array $params
1225 * Params from api.
1226 * @param bool $returnAsSuccess
1227 * Return in api success format.
26728d3f 1228 * @param string $entity
01c8287d
TO
1229 * @param CRM_Utils_SQL_Select|NULL $sql
1230 * Extra SQL bits to add to the query. For filtering current events, this might be:
1231 * CRM_Utils_SQL_Select::fragment()->where('(start_date >= CURDATE() || end_date >= CURDATE())');
0f3699bf 1232 * @param bool $uniqueFields
1233 * Should unique field names be returned (for backward compatibility)
26728d3f
E
1234 *
1235 * @return array
6a488035 1236 */
357f9d0e 1237function _civicrm_api3_basic_get($bao_name, $params, $returnAsSuccess = TRUE, $entity = "", $sql = NULL, $uniqueFields = FALSE) {
7560c9af 1238 $entity = $entity ?: CRM_Core_DAO_AllCoreTables::getBriefName(str_replace('_BAO_', '_DAO_', $bao_name));
8bcc0d86
CW
1239 $options = _civicrm_api3_get_options_from_params($params);
1240
8e8bf584 1241 $query = new \Civi\API\Api3SelectQuery($entity, CRM_Utils_Array::value('check_permissions', $params, FALSE));
8bcc0d86
CW
1242 $query->where = $params;
1243 if ($options['is_count']) {
cf8f0fff 1244 $query->select = ['count_rows'];
8bcc0d86
CW
1245 }
1246 else {
1247 $query->select = array_keys(array_filter($options['return']));
1248 $query->orderBy = $options['sort'];
1249 $query->isFillUniqueFields = $uniqueFields;
1250 }
1251 $query->limit = $options['limit'];
1252 $query->offset = $options['offset'];
e47bcddb
CW
1253 $query->merge($sql);
1254 $result = $query->run();
8bcc0d86 1255
6a488035 1256 if ($returnAsSuccess) {
357f9d0e 1257 return civicrm_api3_create_success($result, $params, $entity, 'get');
6a488035 1258 }
357f9d0e 1259 return $result;
6a488035
TO
1260}
1261
11e09c59 1262/**
9d32e6f7 1263 * Function to do a 'standard' api create - when the api is only doing a $bao::create then use this.
1cfa04c4 1264 *
cf470720
TO
1265 * @param string $bao_name
1266 * Name of BAO Class.
1267 * @param array $params
1268 * Parameters passed into the api call.
1269 * @param string $entity
1270 * Entity - pass in if entity is non-standard & required $ids array.
1cfa04c4
EM
1271 *
1272 * @throws API_Exception
db83e3a3 1273 * @throws \Civi\API\Exception\UnauthorizedException
26728d3f 1274 * @return array
6a488035 1275 */
53ed8466 1276function _civicrm_api3_basic_create($bao_name, &$params, $entity = NULL) {
db83e3a3 1277 _civicrm_api3_check_edit_permissions($bao_name, $params);
8295042e 1278 _civicrm_api3_format_params_for_create($params, $entity);
6a488035 1279 $args = array(&$params);
244bbdd8 1280 if ($entity) {
cf8f0fff 1281 $ids = [$entity => CRM_Utils_Array::value('id', $params)];
6a488035
TO
1282 $args[] = &$ids;
1283 }
acde3ae0 1284
6a488035
TO
1285 if (method_exists($bao_name, 'create')) {
1286 $fct = 'create';
acde3ae0 1287 $fct_name = $bao_name . '::' . $fct;
cf8f0fff 1288 $bao = call_user_func_array([$bao_name, $fct], $args);
6a488035
TO
1289 }
1290 elseif (method_exists($bao_name, 'add')) {
1291 $fct = 'add';
acde3ae0 1292 $fct_name = $bao_name . '::' . $fct;
cf8f0fff 1293 $bao = call_user_func_array([$bao_name, $fct], $args);
6a488035 1294 }
acde3ae0
TO
1295 else {
1296 $fct_name = '_civicrm_api3_basic_create_fallback';
1297 $bao = _civicrm_api3_basic_create_fallback($bao_name, $params);
6a488035 1298 }
acde3ae0 1299
6a488035 1300 if (is_null($bao)) {
acde3ae0 1301 return civicrm_api3_create_error('Entity not created (' . $fct_name . ')');
6a488035 1302 }
736eec43 1303 elseif (is_a($bao, 'CRM_Core_Error')) {
e4f46be0 1304 //some weird circular thing means the error takes itself as an argument
736eec43
E
1305 $msg = $bao->getMessages($bao);
1306 // the api deals with entities on a one-by-one basis. However, the contribution bao pushes entities
1307 // onto the error object - presumably because the contribution import is not handling multiple errors correctly
1308 // so we need to reset the error object here to avoid getting concatenated errors
1309 //@todo - the mulitple error handling should be moved out of the contribution object to the import / multiple entity processes
1310 CRM_Core_Error::singleton()->reset();
1311 throw new API_Exception($msg);
1312 }
6a488035 1313 else {
3fb8828b 1314 // If we have custom fields the BAO may have taken care of it or we may have to.
1315 // $extendsMap provides a pretty good hard-coded list of BAOs that take care of the custom data.
1316 if (isset($params['custom']) && empty(CRM_Core_BAO_CustomQuery::$extendsMap[$entity])) {
1317 CRM_Core_BAO_CustomValueTable::store($params['custom'], CRM_Core_DAO_AllCoreTables::getTableForClass(CRM_Core_DAO_AllCoreTables::getFullName($entity)), $bao->id);
1318 }
cf8f0fff 1319 $values = [];
6a488035 1320 _civicrm_api3_object_to_array($bao, $values[$bao->id]);
504a78f6 1321 return civicrm_api3_create_success($values, $params, $entity, 'create', $bao);
6a488035
TO
1322 }
1323}
1324
acde3ae0
TO
1325/**
1326 * For BAO's which don't have a create() or add() functions, use this fallback implementation.
1327 *
2ee9afab 1328 * @param string|CRM_Core_DAO $bao_name
acde3ae0 1329 * @param array $params
916b48b6
VU
1330 *
1331 * @throws API_Exception
9d32e6f7
EM
1332 *
1333 * @return CRM_Core_DAO|NULL
1334 * An instance of the BAO
acde3ae0 1335 */
2ee9afab
CW
1336function _civicrm_api3_basic_create_fallback($bao_name, $params) {
1337 return $bao_name::writeRecord($params);
acde3ae0
TO
1338}
1339
11e09c59 1340/**
9d32e6f7
EM
1341 * Function to do a 'standard' api del.
1342 *
1343 * When the api is only doing a $bao::del then use this if api::del doesn't exist it will try DAO delete method.
3d0d359e 1344 *
100fef9d 1345 * @param string $bao_name
c490a46a 1346 * @param array $params
3d0d359e 1347 *
a6c01b45 1348 * @return array
72b3a70c 1349 * API result array
a22a5119 1350 *
3d0d359e 1351 * @throws API_Exception
db83e3a3 1352 * @throws \Civi\API\Exception\UnauthorizedException
a22a5119 1353 * @throws \CiviCRM_API3_Exception
6a488035
TO
1354 */
1355function _civicrm_api3_basic_delete($bao_name, &$params) {
cf8f0fff
CW
1356 civicrm_api3_verify_mandatory($params, NULL, ['id']);
1357 _civicrm_api3_check_edit_permissions($bao_name, ['id' => $params['id']]);
a22a5119 1358 $args = [&$params['id']];
6a488035 1359 if (method_exists($bao_name, 'del')) {
a60c0bc8
SL
1360 $dao = new $bao_name();
1361 $dao->id = $params['id'];
1362 if ($dao->find()) {
cf8f0fff 1363 $bao = call_user_func_array([$bao_name, 'del'], $args);
a60c0bc8
SL
1364 if ($bao !== FALSE) {
1365 return civicrm_api3_create_success();
1366 }
1367 throw new API_Exception('Could not delete entity id ' . $params['id']);
a65e2e55 1368 }
fb32de45 1369 throw new API_Exception('Could not delete entity id ' . $params['id']);
6a488035
TO
1370 }
1371 elseif (method_exists($bao_name, 'delete')) {
1372 $dao = new $bao_name();
1373 $dao->id = $params['id'];
1374 if ($dao->find()) {
1375 while ($dao->fetch()) {
1376 $dao->delete();
1377 return civicrm_api3_create_success();
1378 }
1379 }
1380 else {
fb32de45 1381 throw new API_Exception('Could not delete entity id ' . $params['id']);
6a488035
TO
1382 }
1383 }
1384
fb32de45 1385 throw new API_Exception('no delete method found');
6a488035
TO
1386}
1387
11e09c59 1388/**
9d32e6f7
EM
1389 * Get custom data for the given entity & Add it to the returnArray.
1390 *
1391 * This looks like 'custom_123' = 'custom string' AND
1392 * 'custom_123_1' = 'custom string'
6a488035
TO
1393 * Where 123 is field value & 1 is the id within the custom group data table (value ID)
1394 *
cf470720
TO
1395 * @param array $returnArray
1396 * Array to append custom data too - generally $result[4] where 4 is the entity id.
8089541a 1397 * @param $checkPermission
cf470720
TO
1398 * @param string $entity
1399 * E.g membership, event.
100fef9d 1400 * @param int $entity_id
cf470720
TO
1401 * @param int $groupID
1402 * Per CRM_Core_BAO_CustomGroup::getTree.
1403 * @param int $subType
1404 * E.g. membership_type_id where custom data doesn't apply to all membership types.
1405 * @param string $subName
1406 * Subtype of entity.
a22a5119 1407 *
1408 * @throws \CRM_Core_Exception
6a488035 1409 */
e9ff5391 1410function _civicrm_api3_custom_data_get(&$returnArray, $checkPermission, $entity, $entity_id, $groupID = NULL, $subType = NULL, $subName = NULL) {
9af2925b 1411 $groupTree = CRM_Core_BAO_CustomGroup::getTree($entity,
79363422 1412 NULL,
6a488035
TO
1413 $entity_id,
1414 $groupID,
b62bc939
EM
1415 NULL,
1416 $subName,
1417 TRUE,
1418 NULL,
e9ff5391 1419 TRUE,
1420 $checkPermission
6a488035 1421 );
1273d77c 1422 $groupTree = CRM_Core_BAO_CustomGroup::formatGroupTree($groupTree, 1);
cf8f0fff 1423 $customValues = [];
6a488035 1424 CRM_Core_BAO_CustomGroup::setDefaults($groupTree, $customValues);
cf8f0fff 1425 $fieldInfo = [];
e0995951
CW
1426 foreach ($groupTree as $set) {
1427 $fieldInfo += $set['fields'];
1428 }
6a488035
TO
1429 if (!empty($customValues)) {
1430 foreach ($customValues as $key => $val) {
e0995951
CW
1431 // per standard - return custom_fieldID
1432 $id = CRM_Core_BAO_CustomField::getKeyID($key);
1433 $returnArray['custom_' . $id] = $val;
1434
1435 //not standard - but some api did this so guess we should keep - cheap as chips
1436 $returnArray[$key] = $val;
6a488035 1437
e0995951 1438 // Shim to restore legacy behavior of ContactReference custom fields
a22a5119 1439 if (!empty($fieldInfo[$id]) && $fieldInfo[$id]['data_type'] === 'ContactReference') {
e0995951
CW
1440 $returnArray['custom_' . $id . '_id'] = $returnArray[$key . '_id'] = $val;
1441 $returnArray['custom_' . $id] = $returnArray[$key] = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $val, 'sort_name');
6a488035
TO
1442 }
1443 }
1444 }
1445}
1446
b7c239b6
SB
1447/**
1448 * Used by the Validate API.
a22a5119 1449 *
b7c239b6
SB
1450 * @param string $entity
1451 * @param string $action
1452 * @param array $params
1453 *
1454 * @return array $errors
a22a5119 1455 * @throws \CiviCRM_API3_Exception
b7c239b6
SB
1456 */
1457function _civicrm_api3_validate($entity, $action, $params) {
cf8f0fff
CW
1458 $errors = [];
1459 $fields = civicrm_api3($entity, 'getfields', ['sequential' => 1, 'api_action' => $action]);
969ca694 1460 $fields = $fields['values'];
b7c239b6 1461
969ca694 1462 // Check for required fields.
6e4339c4
SB
1463 foreach ($fields as $values) {
1464 if (!empty($values['api.required']) && empty($params[$values['name']])) {
cf8f0fff 1465 $errors[$values['name']] = [
a22a5119 1466 'message' => 'Mandatory key(s) missing from params array: ' . $values['name'],
1467 'code' => 'mandatory_missing',
cf8f0fff 1468 ];
969ca694
SB
1469 }
1470 }
b7c239b6
SB
1471
1472 // Select only the fields which have been input as a param.
cf8f0fff 1473 $finalfields = [];
6e4339c4
SB
1474 foreach ($fields as $values) {
1475 if (array_key_exists($values['name'], $params)) {
1476 $finalfields[] = $values;
1477 }
1478 }
b7c239b6
SB
1479
1480 // This derives heavily from the function "_civicrm_api3_validate_fields".
1481 // However, the difference is that try-catch blocks are nested in the loop, making it
1482 // possible for us to get all errors in one go.
6e4339c4
SB
1483 foreach ($finalfields as $fieldInfo) {
1484 $fieldName = $fieldInfo['name'];
969ca694 1485 try {
6e4339c4 1486 _civicrm_api3_validate_switch_cases($fieldName, $fieldInfo, $entity, $params);
969ca694
SB
1487 }
1488 catch (Exception $e) {
cf8f0fff 1489 $errors[$fieldName] = [
6e4339c4
SB
1490 'message' => $e->getMessage(),
1491 'code' => 'incorrect_value',
cf8f0fff 1492 ];
969ca694
SB
1493 }
1494 }
b7c239b6 1495
cf8f0fff 1496 return [$errors];
969ca694 1497}
8089541a 1498
969ca694
SB
1499/**
1500 * Used by the Validate API.
8089541a 1501 * @param $fieldName
969ca694
SB
1502 * @param array $fieldInfo
1503 * @param string $entity
1504 * @param array $params
1505 *
8089541a 1506 * @throws API_Exception
969ca694
SB
1507 * @throws Exception
1508 */
6e4339c4 1509function _civicrm_api3_validate_switch_cases($fieldName, $fieldInfo, $entity, $params) {
969ca694
SB
1510 switch (CRM_Utils_Array::value('type', $fieldInfo)) {
1511 case CRM_Utils_Type::T_INT:
1512 _civicrm_api3_validate_integer($params, $fieldName, $fieldInfo, $entity);
1513 break;
1514
1515 case CRM_Utils_Type::T_DATE:
1516 case CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME:
1517 case CRM_Utils_Type::T_TIMESTAMP:
1518 //field is of type date or datetime
1519 _civicrm_api3_validate_date($params, $fieldName, $fieldInfo);
1520 break;
1521
1522 case CRM_Utils_Type::T_TEXT:
969ca694
SB
1523 case CRM_Utils_Type::T_STRING:
1524 _civicrm_api3_validate_string($params, $fieldName, $fieldInfo, $entity);
1525 break;
1526
1527 case CRM_Utils_Type::T_MONEY:
1528 list($fieldValue, $op) = _civicrm_api3_field_value_check($params, $fieldName);
6e4339c4 1529
969ca694
SB
1530 foreach ((array) $fieldValue as $fieldvalue) {
1531 if (!CRM_Utils_Rule::money($fieldvalue) && !empty($fieldvalue)) {
a22a5119 1532 throw new Exception($fieldName . ' is not a valid amount: ' . $params[$fieldName]);
b7c239b6 1533 }
969ca694
SB
1534 }
1535 break;
b7c239b6 1536 }
b7c239b6
SB
1537}
1538
11e09c59 1539/**
9d32e6f7
EM
1540 * Validate fields being passed into API.
1541 *
1542 * This function relies on the getFields function working accurately
4f94e3fa 1543 * for the given API.
6a488035
TO
1544 *
1545 * As of writing only date was implemented.
9d32e6f7 1546 *
6a488035
TO
1547 * @param string $entity
1548 * @param string $action
cf470720
TO
1549 * @param array $params
1550 * -.
1551 * @param array $fields
1552 * Response from getfields all variables are the same as per civicrm_api.
9d32e6f7 1553 *
916b48b6 1554 * @throws Exception
6a488035 1555 */
3b45eb1c 1556function _civicrm_api3_validate_fields($entity, $action, &$params, $fields) {
2930d67a 1557 //CRM-15792 handle datetime for custom fields below code handles chain api call
1558 $chainApikeys = array_flip(preg_grep("/^api./", array_keys($params)));
1559 if (!empty($chainApikeys) && is_array($chainApikeys)) {
1560 foreach ($chainApikeys as $key => $value) {
1561 if (is_array($params[$key])) {
1562 $chainApiParams = array_intersect_key($fields, $params[$key]);
1563 $customFields = array_fill_keys(array_keys($params[$key]), $key);
1564 }
1565 }
1566 }
94359f7e 1567 $fields = array_intersect_key($fields, $params);
2930d67a 1568 if (!empty($chainApiParams)) {
1569 $fields = array_merge($fields, $chainApiParams);
1570 }
70f7ba9e 1571 foreach ($fields as $fieldName => $fieldInfo) {
6a488035
TO
1572 switch (CRM_Utils_Array::value('type', $fieldInfo)) {
1573 case CRM_Utils_Type::T_INT:
1574 //field is of type integer
70f7ba9e 1575 _civicrm_api3_validate_integer($params, $fieldName, $fieldInfo, $entity);
6a488035
TO
1576 break;
1577
2930d67a 1578 case CRM_Utils_Type::T_DATE:
1579 case CRM_Utils_Type::T_DATE + CRM_Utils_Type::T_TIME:
9bee5ea2 1580 case CRM_Utils_Type::T_TIMESTAMP:
6a488035 1581 //field is of type date or datetime
2930d67a 1582 if (!empty($customFields) && array_key_exists($fieldName, $customFields)) {
1583 $dateParams = &$params[$customFields[$fieldName]];
1584 }
1585 else {
1586 $dateParams = &$params;
1587 }
1588 _civicrm_api3_validate_date($dateParams, $fieldName, $fieldInfo);
6a488035 1589 break;
83abdecd 1590
978c5e8f 1591 case CRM_Utils_Type::T_TEXT:
83abdecd 1592 case CRM_Utils_Type::T_STRING:
70f7ba9e 1593 _civicrm_api3_validate_string($params, $fieldName, $fieldInfo, $entity);
6a488035
TO
1594 break;
1595
1596 case CRM_Utils_Type::T_MONEY:
afa0b07c 1597 list($fieldValue, $op) = _civicrm_api3_field_value_check($params, $fieldName);
1598 if (strpos($op, 'NULL') !== FALSE || strpos($op, 'EMPTY') !== FALSE) {
1599 break;
1600 }
971d41b1 1601 foreach ((array) $fieldValue as $fieldvalue) {
7d543448 1602 if (!CRM_Utils_Rule::money($fieldvalue) && !empty($fieldvalue)) {
3a6eb174 1603 throw new Exception($fieldName . " is not a valid amount: " . $params[$fieldName]);
1604 }
6a488035 1605 }
3a6eb174 1606 break;
6a488035 1607 }
4f94e3fa
MM
1608 }
1609}
6a488035 1610
4f94e3fa
MM
1611/**
1612 * Validate foreign key values of fields being passed into API.
1613 *
1614 * This function relies on the getFields function working accurately
1615 * for the given API.
1616 *
1617 * @param string $entity
1618 * @param string $action
1619 * @param array $params
1620 *
1621 * @param array $fields
1622 * Response from getfields all variables are the same as per civicrm_api.
1623 *
1624 * @throws Exception
1625 */
1626function _civicrm_api3_validate_foreign_keys($entity, $action, &$params, $fields) {
1627 // intensive checks - usually only called after DB level fail
1628 foreach ($fields as $fieldName => $fieldInfo) {
1629 if (!empty($fieldInfo['FKClassName'])) {
1630 if (!empty($params[$fieldName])) {
2e537447 1631 foreach ((array) $params[$fieldName] as $fieldValue) {
7f1a780c 1632 _civicrm_api3_validate_constraint($fieldValue, $fieldName, $fieldInfo, $entity);
2e537447 1633 }
6a488035 1634 }
4f94e3fa 1635 elseif (!empty($fieldInfo['required'])) {
43fc3f38 1636 throw new Exception("DB Constraint Violation - $fieldName should possibly be marked as mandatory for $entity,$action API. If so, please raise a bug report.");
6a488035
TO
1637 }
1638 }
4f94e3fa
MM
1639 if (!empty($fieldInfo['api.unique'])) {
1640 $params['entity'] = $entity;
1641 _civicrm_api3_validate_unique_key($params, $fieldName);
1642 }
6a488035
TO
1643 }
1644}
1645
11e09c59 1646/**
6a488035 1647 * Validate date fields being passed into API.
9d32e6f7 1648 *
6a488035
TO
1649 * It currently converts both unique fields and DB field names to a mysql date.
1650 * @todo - probably the unique field handling & the if exists handling is now done before this
1651 * function is reached in the wrapper - can reduce this code down to assume we
1652 * are only checking the passed in field
1653 *
1654 * It also checks against the RULE:date function. This is a centralisation of code that was scattered and
1655 * may not be the best thing to do. There is no code level documentation on the existing functions to work off
1656 *
cf470720
TO
1657 * @param array $params
1658 * Params from civicrm_api.
1659 * @param string $fieldName
1660 * Uniquename of field being checked.
1661 * @param array $fieldInfo
1662 * Array of fields from getfields function.
9d32e6f7 1663 *
916b48b6 1664 * @throws Exception
6a488035 1665 */
70f7ba9e 1666function _civicrm_api3_validate_date(&$params, &$fieldName, &$fieldInfo) {
afa0b07c 1667 list($fieldValue, $op) = _civicrm_api3_field_value_check($params, $fieldName);
1668 if (strpos($op, 'NULL') !== FALSE || strpos($op, 'EMPTY') !== FALSE) {
1669 return;
1670 }
325033b9 1671
1672 if ($fieldValue === 'null' && empty($fieldInfo['api.required'])) {
1673 // This is the wierd & wonderful way PEAR sets null.
1674 return;
1675 }
1676
6a488035 1677 //should we check first to prevent it from being copied if they have passed in sql friendly format?
a7488080 1678 if (!empty($params[$fieldInfo['name']])) {
3c151c70 1679 $fieldValue = _civicrm_api3_getValidDate($fieldValue, $fieldInfo['name'], $fieldInfo['type']);
6a488035 1680 }
3c151c70 1681 if ((CRM_Utils_Array::value('name', $fieldInfo) != $fieldName) && !empty($fieldValue)) {
1682 $fieldValue = _civicrm_api3_getValidDate($fieldValue, $fieldName, $fieldInfo['type']);
9bee5ea2 1683 }
afa0b07c 1684
1685 if (!empty($op)) {
1686 $params[$fieldName][$op] = $fieldValue;
1687 }
1688 else {
1689 $params[$fieldName] = $fieldValue;
9bee5ea2
EM
1690 }
1691}
1692
1693/**
9d32e6f7
EM
1694 * Convert date into BAO friendly date.
1695 *
1696 * We accept 'whatever strtotime accepts'
9bee5ea2
EM
1697 *
1698 * @param string $dateValue
100fef9d 1699 * @param string $fieldName
9bee5ea2
EM
1700 * @param $fieldType
1701 *
1702 * @throws Exception
9bee5ea2
EM
1703 * @return mixed
1704 */
1705function _civicrm_api3_getValidDate($dateValue, $fieldName, $fieldType) {
1706 if (is_array($dateValue)) {
1707 foreach ($dateValue as $key => $value) {
1708 $dateValue[$key] = _civicrm_api3_getValidDate($value, $fieldName, $fieldType);
6a488035 1709 }
9bee5ea2
EM
1710 return $dateValue;
1711 }
1712 if (strtotime($dateValue) === FALSE) {
1713 throw new Exception($fieldName . " is not a valid date: " . $dateValue);
6a488035 1714 }
9bee5ea2
EM
1715 $format = ($fieldType == CRM_Utils_Type::T_DATE) ? 'Ymd000000' : 'YmdHis';
1716 return CRM_Utils_Date::processDate($dateValue, NULL, FALSE, $format);
6a488035 1717}
11e09c59
TO
1718
1719/**
6a488035
TO
1720 * Validate foreign constraint fields being passed into API.
1721 *
645ee340 1722 * @param mixed $fieldValue
cf470720 1723 * @param string $fieldName
7f1a780c 1724 * Unique name of field being checked.
cf470720
TO
1725 * @param array $fieldInfo
1726 * Array of fields from getfields function.
7f1a780c 1727 * @param string $entity
9d32e6f7 1728 *
645ee340 1729 * @throws \API_Exception
6a488035 1730 */
7f1a780c 1731function _civicrm_api3_validate_constraint($fieldValue, $fieldName, $fieldInfo, $entity) {
971d41b1 1732 $daoName = $fieldInfo['FKClassName'];
7f1a780c 1733 $fieldInfo = [$fieldName => $fieldInfo];
1734 $params = [$fieldName => $fieldValue];
1735 _civicrm_api3_validate_fields($entity, NULL, $params, $fieldInfo);
1736 /* @var CRM_Core_DAO $dao*/
971d41b1 1737 $dao = new $daoName();
7f1a780c 1738 $dao->id = $params[$fieldName];
6a488035
TO
1739 $dao->selectAdd();
1740 $dao->selectAdd('id');
1741 if (!$dao->find()) {
645ee340 1742 throw new API_Exception("$fieldName is not valid : " . $fieldValue);
6a488035
TO
1743 }
1744}
1745
11e09c59 1746/**
6a488035
TO
1747 * Validate foreign constraint fields being passed into API.
1748 *
cf470720
TO
1749 * @param array $params
1750 * Params from civicrm_api.
1751 * @param string $fieldName
1752 * Uniquename of field being checked.
9d32e6f7 1753 *
916b48b6 1754 * @throws Exception
6a488035 1755 */
8adf88cf 1756function _civicrm_api3_validate_unique_key(&$params, &$fieldName) {
afa0b07c 1757 list($fieldValue, $op) = _civicrm_api3_field_value_check($params, $fieldName);
1758 if (strpos($op, 'NULL') !== FALSE || strpos($op, 'EMPTY') !== FALSE) {
1759 return;
1760 }
cf8f0fff 1761 $existing = civicrm_api($params['entity'], 'get', [
7c31ae57
SL
1762 'version' => $params['version'],
1763 $fieldName => $fieldValue,
1764 ]);
6a488035
TO
1765 // an entry already exists for this unique field
1766 if ($existing['count'] == 1) {
1767 // question - could this ever be a security issue?
446f0940 1768 throw new API_Exception("Field: `$fieldName` must be unique. An conflicting entity already exists - id: " . $existing['id']);
6a488035
TO
1769 }
1770}
1771
1772/**
1773 * Generic implementation of the "replace" action.
1774 *
1775 * Replace the old set of entities (matching some given keys) with a new set of
1776 * entities (matching the same keys).
1777 *
b081365f 1778 * @note This will verify that 'values' is present, but it does not directly verify
6a488035
TO
1779 * any other parameters.
1780 *
cf470720
TO
1781 * @param string $entity
1782 * Entity name.
1783 * @param array $params
1784 * Params from civicrm_api, including:.
6a488035 1785 * - 'values': an array of records to save
9d32e6f7
EM
1786 * - all other items: keys which identify new/pre-existing records.
1787 *
26728d3f 1788 * @return array|int
6a488035
TO
1789 */
1790function _civicrm_api3_generic_replace($entity, $params) {
1791
6a488035
TO
1792 $transaction = new CRM_Core_Transaction();
1793 try {
1794 if (!is_array($params['values'])) {
1795 throw new Exception("Mandatory key(s) missing from params array: values");
1796 }
1797
1798 // Extract the keys -- somewhat scary, don't think too hard about it
e4b4e33a 1799 $baseParams = _civicrm_api3_generic_replace_base_params($params);
6a488035
TO
1800
1801 // Lookup pre-existing records
1802 $preexisting = civicrm_api($entity, 'get', $baseParams, $params);
1803 if (civicrm_error($preexisting)) {
1804 $transaction->rollback();
1805 return $preexisting;
1806 }
1807
1808 // Save the new/updated records
cf8f0fff 1809 $creates = [];
6a488035
TO
1810 foreach ($params['values'] as $replacement) {
1811 // Sugar: Don't force clients to duplicate the 'key' data
1812 $replacement = array_merge($baseParams, $replacement);
1813 $action = (isset($replacement['id']) || isset($replacement[$entity . '_id'])) ? 'update' : 'create';
1814 $create = civicrm_api($entity, $action, $replacement);
1815 if (civicrm_error($create)) {
1816 $transaction->rollback();
1817 return $create;
1818 }
1819 foreach ($create['values'] as $entity_id => $entity_value) {
1820 $creates[$entity_id] = $entity_value;
1821 }
1822 }
1823
1824 // Remove stale records
1825 $staleIDs = array_diff(
1826 array_keys($preexisting['values']),
1827 array_keys($creates)
1828 );
1829 foreach ($staleIDs as $staleID) {
cf8f0fff 1830 $delete = civicrm_api($entity, 'delete', [
7c31ae57
SL
1831 'version' => $params['version'],
1832 'id' => $staleID,
1833 ]);
6a488035
TO
1834 if (civicrm_error($delete)) {
1835 $transaction->rollback();
1836 return $delete;
1837 }
1838 }
1839
1840 return civicrm_api3_create_success($creates, $params);
1841 }
7c31ae57 1842 catch (PEAR_Exception $e) {
6a488035
TO
1843 $transaction->rollback();
1844 return civicrm_api3_create_error($e->getMessage());
1845 }
7c31ae57 1846 catch (Exception $e) {
6a488035
TO
1847 $transaction->rollback();
1848 return civicrm_api3_create_error($e->getMessage());
1849 }
1850}
1851
26728d3f 1852/**
9d32e6f7
EM
1853 * Replace base parameters.
1854 *
c490a46a 1855 * @param array $params
26728d3f 1856 *
9d32e6f7 1857 * @return array
26728d3f 1858 */
e4b4e33a
TO
1859function _civicrm_api3_generic_replace_base_params($params) {
1860 $baseParams = $params;
1861 unset($baseParams['values']);
1862 unset($baseParams['sequential']);
1863 unset($baseParams['options']);
1864 return $baseParams;
1865}
1866
11e09c59 1867/**
9d32e6f7 1868 * Returns fields allowable by api.
26728d3f 1869 *
cf470720
TO
1870 * @param $entity
1871 * String Entity to query.
1872 * @param bool $unique
1873 * Index by unique fields?.
26728d3f
E
1874 * @param array $params
1875 *
1876 * @return array
6a488035 1877 */
cf8f0fff
CW
1878function _civicrm_api_get_fields($entity, $unique = FALSE, &$params = []) {
1879 $unsetIfEmpty = [
9d32e6f7
EM
1880 'dataPattern',
1881 'headerPattern',
1882 'default',
1883 'export',
1884 'import',
cf8f0fff 1885 ];
6a488035
TO
1886 $dao = _civicrm_api3_get_DAO($entity);
1887 if (empty($dao)) {
cf8f0fff 1888 return [];
6a488035 1889 }
6a488035
TO
1890 $d = new $dao();
1891 $fields = $d->fields();
95457d69 1892
95457d69 1893 foreach ($fields as $name => &$field) {
5147800e
CW
1894 // Denote as core field
1895 $field['is_core_field'] = TRUE;
1896 // Set html attributes for text fields
95457d69
CW
1897 if (isset($field['html'])) {
1898 $field['html'] += (array) $d::makeAttribute($field);
1899 }
1900 }
1901
6a488035
TO
1902 // replace uniqueNames by the normal names as the key
1903 if (empty($unique)) {
fc6a6a51 1904 foreach ($fields as $name => &$field) {
6a488035
TO
1905 //getting rid of unused attributes
1906 foreach ($unsetIfEmpty as $attr) {
1907 if (empty($field[$attr])) {
1908 unset($field[$attr]);
1909 }
1910 }
1911 if ($name == $field['name']) {
1912 continue;
1913 }
1914 if (array_key_exists($field['name'], $fields)) {
1915 $field['error'] = 'name conflict';
1916 // it should never happen, but better safe than sorry
1917 continue;
1918 }
1919 $fields[$field['name']] = $field;
1920 $fields[$field['name']]['uniqueName'] = $name;
1921 unset($fields[$name]);
1922 }
1923 }
fc6a6a51
CW
1924 // Translate FKClassName to the corresponding api
1925 foreach ($fields as $name => &$field) {
1926 if (!empty($field['FKClassName'])) {
1927 $FKApi = CRM_Core_DAO_AllCoreTables::getBriefName($field['FKClassName']);
1928 if ($FKApi) {
1929 $field['FKApiName'] = $FKApi;
1930 }
1931 }
1932 }
6a488035
TO
1933 $fields += _civicrm_api_get_custom_fields($entity, $params);
1934 return $fields;
1935}
1936
11e09c59 1937/**
9d32e6f7
EM
1938 * Return an array of fields for a given entity.
1939 *
1940 * This is the same as the BAO function but fields are prefixed with 'custom_' to represent api params.
1941 *
645ee340 1942 * @param $entity
d0997921 1943 * @param array $params
9d32e6f7 1944 *
645ee340 1945 * @return array
6a488035
TO
1946 */
1947function _civicrm_api_get_custom_fields($entity, &$params) {
6a488035 1948 $entity = _civicrm_api_get_camel_name($entity);
18ec726b
CW
1949 if ($entity == 'Contact') {
1950 // Use sub-type if available, otherwise "NULL" to fetch from all contact types
9c1bc317 1951 $entity = $params['contact_type'] ?? NULL;
6a488035 1952 }
6a488035
TO
1953 $customfields = CRM_Core_BAO_CustomField::getFields($entity,
1954 FALSE,
1955 FALSE,
18ec726b 1956 // we could / should probably test for other subtypes here - e.g. activity_type_id
39cb3d7b 1957 CRM_Utils_Array::value('contact_sub_type', $params),
6a488035 1958 NULL,
18ec726b 1959 FALSE,
6a488035
TO
1960 FALSE,
1961 FALSE
1962 );
ddaac11c 1963
cf8f0fff 1964 $ret = [];
6a488035
TO
1965
1966 foreach ($customfields as $key => $value) {
a4c5e9a3
CW
1967 // Regular fields have a 'name' property
1968 $value['name'] = 'custom_' . $key;
3a8e9315 1969 $value['title'] = $value['label'];
8ad22b15 1970 if ($value['data_type'] == 'Date' && CRM_Utils_Array::value('time_format', $value, 0) > 0) {
1971 $value['data_type'] = 'DateTime';
1972 }
1973 $value['type'] = CRM_Utils_Array::value($value['data_type'], CRM_Core_BAO_CustomField::dataToType());
ddaac11c 1974 $ret['custom_' . $key] = $value;
6a488035 1975 }
ddaac11c 1976 return $ret;
6a488035 1977}
645ee340 1978
11e09c59 1979/**
9d32e6f7
EM
1980 * Fill params array with alternate (alias) values where a field has an alias and that is filled & the main field isn't.
1981 *
6a488035
TO
1982 * If multiple aliases the last takes precedence
1983 *
1984 * Function also swaps unique fields for non-unique fields & vice versa.
9d32e6f7 1985 *
645ee340
EM
1986 * @param $apiRequest
1987 * @param $fields
6a488035 1988 */
94359f7e 1989function _civicrm_api3_swap_out_aliases(&$apiRequest, $fields) {
1990 foreach ($fields as $field => $values) {
9c1bc317 1991 $uniqueName = $values['uniqueName'] ?? NULL;
a7488080 1992 if (!empty($values['api.aliases'])) {
6a488035
TO
1993 // if aliased field is not set we try to use field alias
1994 if (!isset($apiRequest['params'][$field])) {
1995 foreach ($values['api.aliases'] as $alias) {
1996 if (isset($apiRequest['params'][$alias])) {
1997 $apiRequest['params'][$field] = $apiRequest['params'][$alias];
1998 }
1999 //unset original field nb - need to be careful with this as it may bring inconsistencies
2000 // out of the woodwork but will be implementing only as _spec function extended
2001 unset($apiRequest['params'][$alias]);
2002 }
2003 }
2004 }
8cc574cf 2005 if (!isset($apiRequest['params'][$field]) && !empty($values['name']) && $field != $values['name']
6a488035
TO
2006 && isset($apiRequest['params'][$values['name']])
2007 ) {
2008 $apiRequest['params'][$field] = $apiRequest['params'][$values['name']];
2009 // note that it would make sense to unset the original field here but tests need to be in place first
79b61cd0 2010 if ($field != 'domain_version') {
2011 unset($apiRequest['params'][$values['name']]);
2012 }
6a488035
TO
2013 }
2014 if (!isset($apiRequest['params'][$field])
2015 && $uniqueName
2016 && $field != $uniqueName
2017 && array_key_exists($uniqueName, $apiRequest['params'])
971d41b1 2018 ) {
9c1bc317 2019 $apiRequest['params'][$field] = $apiRequest['params'][$values['uniqueName']] ?? NULL;
6a488035
TO
2020 // note that it would make sense to unset the original field here but tests need to be in place first
2021 }
2022 }
2023
2024}
11e09c59
TO
2025
2026/**
6a488035 2027 * Validate integer fields being passed into API.
9d32e6f7
EM
2028 *
2029 * It currently converts the incoming value 'user_contact_id' into the id of the currently logged in user.
6a488035 2030 *
cf470720
TO
2031 * @param array $params
2032 * Params from civicrm_api.
2033 * @param string $fieldName
2034 * Uniquename of field being checked.
2035 * @param array $fieldInfo
2036 * Array of fields from getfields function.
5e436708 2037 * @param string $entity
9d32e6f7 2038 *
916b48b6 2039 * @throws API_Exception
6a488035 2040 */
526e0834 2041function _civicrm_api3_validate_integer(&$params, $fieldName, &$fieldInfo, $entity) {
afa0b07c 2042 list($fieldValue, $op) = _civicrm_api3_field_value_check($params, $fieldName);
2043 if (strpos($op, 'NULL') !== FALSE || strpos($op, 'EMPTY') !== FALSE) {
2044 return;
2045 }
2046
80452d96 2047 if (!empty($fieldValue) || $fieldValue === '0' || $fieldValue === 0) {
46b6363c 2048 // if value = 'user_contact_id' (or similar), replace value with contact id
3c151c70 2049 if (!is_numeric($fieldValue) && is_scalar($fieldValue)) {
2050 $realContactId = _civicrm_api3_resolve_contactID($fieldValue);
17cb9f7f 2051 if ('unknown-user' === $realContactId) {
cf8f0fff 2052 throw new API_Exception("\"$fieldName\" \"{$fieldValue}\" cannot be resolved to a contact ID", 2002, ['error_field' => $fieldName, "type" => "integer"]);
971d41b1
CW
2053 }
2054 elseif (is_numeric($realContactId)) {
2fa797b9 2055 $fieldValue = $realContactId;
46b6363c 2056 }
a98504a7 2057 elseif (is_null($realContactId) && empty($fieldInfo['api.required']) && $fieldValue === 'user_contact_id') {
c442f1b6 2058 // If not mandatory this will be OK. If mandatory it should fail.
2059 $fieldValue = NULL;
2060 }
6a488035 2061 }
6fa8a394 2062 if (!empty($fieldInfo['pseudoconstant']) || !empty($fieldInfo['options'])) {
cf8f0fff 2063 $additional_lookup_params = [];
19381641
MH
2064 if (strtolower($entity) == 'address' && $fieldName == 'state_province_id') {
2065 $country_id = _civicrm_api3_resolve_country_id($params);
2066 if (!empty($country_id)) {
2067 $additional_lookup_params = ['country_id' => $country_id];
2068 }
eaf39b47
MH
2069 }
2070 _civicrm_api3_api_match_pseudoconstant($fieldValue, $entity, $fieldName, $fieldInfo, $op, $additional_lookup_params);
6a488035
TO
2071 }
2072
283f988c 2073 // After swapping options, ensure we have an integer(s)
3c151c70 2074 foreach ((array) ($fieldValue) as $value) {
c442f1b6 2075 if ($value && !is_numeric($value) && $value !== 'null' && $value !== NULL && !is_array($value)) {
cf8f0fff 2076 throw new API_Exception("$fieldName is not a valid integer", 2001, ['error_field' => $fieldName, "type" => "integer"]);
283f988c 2077 }
6fa8a394
CW
2078 }
2079
2080 // Check our field length
971d41b1 2081 if (is_string($fieldValue) && !empty($fieldInfo['maxlength']) && strlen($fieldValue) > $fieldInfo['maxlength']
48a89be3 2082 ) {
79d7553f 2083 throw new API_Exception($fieldValue . " is " . strlen($fieldValue) . " characters - longer than $fieldName length" . $fieldInfo['maxlength'] . ' characters',
cf8f0fff 2084 2100, ['field' => $fieldName, "max_length" => $fieldInfo['maxlength']]
6a488035
TO
2085 );
2086 }
2087 }
2fa797b9 2088
2089 if (!empty($op)) {
2090 $params[$fieldName][$op] = $fieldValue;
2091 }
2092 else {
2093 $params[$fieldName] = $fieldValue;
2094 }
6a488035
TO
2095}
2096
19381641
MH
2097/**
2098 * Helper function to determine country_id given the myriad of values for country_id or country that are supported
2099 * @param $params
2100 *
2101 * @return int|null
2102 */
2103function _civicrm_api3_resolve_country_id($params) {
2104 if (!empty($params['country_id'])) {
2105 if (is_numeric($params['country_id'])) {
2106 $country_id = $params['country_id'];
2107 }
2108 else {
2109 $country = new CRM_Core_DAO_Country();
2110 $country->name = $params['country_id'];
2111 if (!$country->find(TRUE)) {
2112 $country->name = NULL;
2113 $country->iso_code = $params['country_id'];
2114 $country->find(TRUE);
2115 }
2116 if (!empty($country->id)) {
2117 $country_id = $country->id;
2118 }
2119 }
2120 }
2121 elseif (!empty($params['country'])) {
2122 if (is_numeric($params['country'])) {
2123 $country_id = $params['country'];
2124 }
2125 else {
2126 $country = new CRM_Core_DAO_Country();
2127 $country->name = $params['country'];
2128 if (!$country->find(TRUE)) {
2129 $country->name = NULL;
2130 $country->iso_code = $params['country'];
2131 $country->find(TRUE);
2132 }
2133 if (!empty($country->id)) {
2134 $country_id = $country->id;
2135 }
2136 }
2137 }
2138 return !empty($country_id) ? $country_id : NULL;
2139}
2140
46b6363c 2141/**
9d32e6f7 2142 * Determine a contact ID using a string expression.
46b6363c 2143 *
cf470720
TO
2144 * @param string $contactIdExpr
2145 * E.g. "user_contact_id" or "@user:username".
9d32e6f7 2146 *
e97c66ff 2147 * @return int|null|'unknown-user'
2148 * @throws \CRM_Core_Exception
46b6363c 2149 */
37fa58b0 2150function _civicrm_api3_resolve_contactID($contactIdExpr) {
9d32e6f7 2151 // If value = 'user_contact_id' replace value with logged in user id.
46b6363c 2152 if ($contactIdExpr == "user_contact_id") {
bb341097
EM
2153 return CRM_Core_Session::getLoggedInContactID();
2154 }
2155 elseif (preg_match('/^@user:(.*)$/', $contactIdExpr, $matches)) {
46b6363c
TO
2156 $config = CRM_Core_Config::singleton();
2157
2158 $ufID = $config->userSystem->getUfId($matches[1]);
2159 if (!$ufID) {
17cb9f7f 2160 return 'unknown-user';
46b6363c
TO
2161 }
2162
2163 $contactID = CRM_Core_BAO_UFMatch::getContactId($ufID);
17cb9f7f
TO
2164 if (!$contactID) {
2165 return 'unknown-user';
46b6363c
TO
2166 }
2167
2168 return $contactID;
2169 }
31fd7b1e 2170 return NULL;
46b6363c
TO
2171}
2172
26728d3f 2173/**
9d32e6f7
EM
2174 * Validate html (check for scripting attack).
2175 *
5e436708
EM
2176 * @param array $params
2177 * @param string $fieldName
2178 * @param array $fieldInfo
26728d3f
E
2179 *
2180 * @throws API_Exception
2181 */
5e436708 2182function _civicrm_api3_validate_html(&$params, &$fieldName, $fieldInfo) {
afa0b07c 2183 list($fieldValue, $op) = _civicrm_api3_field_value_check($params, $fieldName);
2184 if (strpos($op, 'NULL') || strpos($op, 'EMPTY')) {
2185 return;
2186 }
3c151c70 2187 if ($fieldValue) {
2188 if (!CRM_Utils_Rule::xssString($fieldValue)) {
cf8f0fff 2189 throw new API_Exception('Input contains illegal SCRIPT tag.', ["field" => $fieldName, "error_code" => "xss"]);
6a488035
TO
2190 }
2191 }
2192}
2193
11e09c59 2194/**
6a488035 2195 * Validate string fields being passed into API.
9d32e6f7 2196 *
cf470720
TO
2197 * @param array $params
2198 * Params from civicrm_api.
2199 * @param string $fieldName
2200 * Uniquename of field being checked.
2201 * @param array $fieldInfo
2202 * Array of fields from getfields function.
5e436708 2203 * @param string $entity
9d32e6f7 2204 *
916b48b6
VU
2205 * @throws API_Exception
2206 * @throws Exception
6a488035 2207 */
70f7ba9e 2208function _civicrm_api3_validate_string(&$params, &$fieldName, &$fieldInfo, $entity) {
cbfe5232 2209 list($fieldValue, $op) = _civicrm_api3_field_value_check($params, $fieldName, 'String');
02ea3d64 2210 if (strpos($op, 'NULL') !== FALSE || strpos($op, 'EMPTY') !== FALSE || CRM_Utils_System::isNull($fieldValue)) {
afa0b07c 2211 return;
2212 }
02ea3d64 2213
48a89be3 2214 if (!is_array($fieldValue)) {
3c151c70 2215 $fieldValue = (string) $fieldValue;
69c1fac4 2216 }
4b02a1c4 2217
3c151c70 2218 if ($fieldValue) {
4b02a1c4 2219 foreach ((array) $fieldValue as $key => $value) {
2220 foreach ([$fieldValue, $key, $value] as $input) {
2221 if (!CRM_Utils_Rule::xssString($input)) {
2222 throw new Exception('Input contains illegal SCRIPT tag.');
2223 }
02ea3d64 2224 }
2225 if ($fieldName == 'currency') {
2226 //When using IN operator $fieldValue is a array of currency codes
2227 if (!CRM_Utils_Rule::currencyCode($value)) {
7d543448 2228 throw new Exception("Currency not a valid code: $currency");
3c151c70 2229 }
6a488035
TO
2230 }
2231 }
6a488035 2232 }
7d543448 2233 if (!empty($fieldInfo['pseudoconstant']) || !empty($fieldInfo['options'])) {
415d9abb 2234 _civicrm_api3_api_match_pseudoconstant($fieldValue, $entity, $fieldName, $fieldInfo, $op);
7d543448 2235 }
2236 // Check our field length
2237 elseif (is_string($fieldValue) && !empty($fieldInfo['maxlength']) && strlen(utf8_decode($fieldValue)) > $fieldInfo['maxlength']) {
2238 throw new API_Exception("Value for $fieldName is " . strlen(utf8_decode($value)) . " characters - This field has a maxlength of {$fieldInfo['maxlength']} characters.",
cf8f0fff 2239 2100, ['field' => $fieldName]
7d543448 2240 );
2241 }
2fa797b9 2242
2243 if (!empty($op)) {
2244 $params[$fieldName][$op] = $fieldValue;
2245 }
2246 else {
2247 $params[$fieldName] = $fieldValue;
6a488035
TO
2248 }
2249}
70f7ba9e
CW
2250
2251/**
9d32e6f7 2252 * Validate & swap out any pseudoconstants / options.
70f7ba9e 2253 *
645ee340
EM
2254 * @param mixed $fieldValue
2255 * @param string $entity : api entity name
2256 * @param string $fieldName : field name used in api call (not necessarily the canonical name)
2257 * @param array $fieldInfo : getfields meta-data
415d9abb 2258 * @param string $op
eaf39b47 2259 * @param array $additional_lookup_params
9d32e6f7 2260 *
645ee340 2261 * @throws \API_Exception
70f7ba9e 2262 */
cf8f0fff
CW
2263function _civicrm_api3_api_match_pseudoconstant(&$fieldValue, $entity, $fieldName, $fieldInfo, $op = '=', $additional_lookup_params = []) {
2264 if (in_array($op, ['>', '<', '>=', '<=', 'LIKE', 'NOT LIKE'])) {
415d9abb
CW
2265 return;
2266 }
2267
9c1bc317 2268 $options = $fieldInfo['options'] ?? NULL;
08fe8c7e 2269
6fa8a394 2270 if (!$options) {
22e263ad 2271 if (strtolower($entity) == 'profile' && !empty($fieldInfo['entity'])) {
9d32e6f7 2272 // We need to get the options from the entity the field relates to.
94359f7e 2273 $entity = $fieldInfo['entity'];
2274 }
eaf39b47 2275 $options_lookup_params = [
9d32e6f7
EM
2276 'version' => 3,
2277 'field' => $fieldInfo['name'],
2278 'context' => 'validate',
eaf39b47
MH
2279 ];
2280 if (!empty($additional_lookup_params)) {
2281 $options_lookup_params = array_merge($additional_lookup_params, $options_lookup_params);
2282 }
2283 $options = civicrm_api($entity, 'getoptions', $options_lookup_params);
2284
cf8f0fff 2285 $options = CRM_Utils_Array::value('values', $options, []);
6fa8a394 2286 }
70f7ba9e 2287
9d32e6f7 2288 // If passed a value-separated string, explode to an array, then re-implode after matching values.
70f7ba9e 2289 $implode = FALSE;
3c151c70 2290 if (is_string($fieldValue) && strpos($fieldValue, CRM_Core_DAO::VALUE_SEPARATOR) !== FALSE) {
2291 $fieldValue = CRM_Utils_Array::explodePadded($fieldValue);
70f7ba9e
CW
2292 $implode = TRUE;
2293 }
9d32e6f7 2294 // If passed multiple options, validate each.
3c151c70 2295 if (is_array($fieldValue)) {
2296 foreach ($fieldValue as &$value) {
736f9c2d 2297 if (!is_array($value)) {
57369d23 2298 _civicrm_api3_api_match_pseudoconstant_value($value, $options, $fieldName, CRM_Utils_Array::value('api.required', $fieldInfo));
736f9c2d 2299 }
70f7ba9e
CW
2300 }
2301 // TODO: unwrap the call to implodePadded from the conditional and do it always
2302 // need to verify that this is safe and doesn't break anything though.
2303 // Better yet would be to leave it as an array and ensure that every dao/bao can handle array input
2304 if ($implode) {
3c151c70 2305 CRM_Utils_Array::implodePadded($fieldValue);
70f7ba9e
CW
2306 }
2307 }
2308 else {
57369d23 2309 _civicrm_api3_api_match_pseudoconstant_value($fieldValue, $options, $fieldName, CRM_Utils_Array::value('api.required', $fieldInfo));
70f7ba9e
CW
2310 }
2311}
2312
2313/**
9d32e6f7 2314 * Validate & swap a single option value for a field.
70f7ba9e 2315 *
971d41b1
CW
2316 * @param string $value field value
2317 * @param array $options array of options for this field
2318 * @param string $fieldName field name used in api call (not necessarily the canonical name)
57369d23 2319 * @param bool $isRequired
2320 * Is this a required field or is 'null' an acceptable option. We allow 'null' last
2321 * in case we have the weird situation of it being a valid option in which case our
2322 * brains will probably explode.
9d32e6f7 2323 *
916b48b6 2324 * @throws API_Exception
70f7ba9e 2325 */
57369d23 2326function _civicrm_api3_api_match_pseudoconstant_value(&$value, $options, $fieldName, $isRequired) {
70f7ba9e 2327 // If option is a key, no need to translate
08fe8c7e 2328 // or if no options are avaiable for pseudoconstant 'table' property
2329 if (array_key_exists($value, $options) || !$options) {
70f7ba9e
CW
2330 return;
2331 }
70f7ba9e 2332
75c4fcec
CW
2333 // Hack for Profile formatting fields
2334 if ($fieldName === 'field_name' && (strpos($value, 'formatting') === 0)) {
2335 return;
2336 }
2337
a4c5e9a3 2338 // Translate value into key
80452d96
CW
2339 // Cast $value to string to avoid a bug in array_search
2340 $newValue = array_search((string) $value, $options);
a4c5e9a3
CW
2341 if ($newValue !== FALSE) {
2342 $value = $newValue;
2343 return;
2344 }
70f7ba9e 2345 // Case-insensitive matching
80085473 2346 $newValue = strtolower($value);
70f7ba9e 2347 $options = array_map("strtolower", $options);
80085473
CW
2348 $newValue = array_search($newValue, $options);
2349 if ($newValue === FALSE) {
57369d23 2350 if ($value === 'null' && !$isRequired) {
2351 // CiviMagic syntax for Nulling out the field - let it through.
2352 return;
2353 }
cf8f0fff 2354 throw new API_Exception("'$value' is not a valid option for field $fieldName", 2001, ['error_field' => $fieldName]);
70f7ba9e 2355 }
80085473 2356 $value = $newValue;
70f7ba9e
CW
2357}
2358
2359/**
9d32e6f7 2360 * Returns the canonical name of a field.
70f7ba9e 2361 *
cf470720 2362 * @param $entity
16b10e64 2363 * api entity name (string should already be standardized - no camelCase).
cf470720 2364 * @param $fieldName
16b10e64 2365 * any variation of a field's name (name, unique_name, api.alias).
77b97be7 2366 *
2b28667f 2367 * @param string $action
2368 *
72b3a70c 2369 * @return bool|string
2b28667f 2370 * FieldName or FALSE if the field does not exist
70f7ba9e 2371 */
985f4890 2372function _civicrm_api3_api_resolve_alias($entity, $fieldName, $action = 'create') {
26a700db
CW
2373 if (!$fieldName) {
2374 return FALSE;
2375 }
a38a89fc 2376 if (strpos($fieldName, 'custom_') === 0 && is_numeric($fieldName[7])) {
a4c5e9a3
CW
2377 return $fieldName;
2378 }
e65c2445 2379 if ($fieldName == _civicrm_api_get_entity_name_from_camel($entity) . '_id') {
a4c5e9a3
CW
2380 return 'id';
2381 }
cf8f0fff 2382 $result = civicrm_api($entity, 'getfields', [
70f7ba9e 2383 'version' => 3,
985f4890 2384 'action' => $action,
cf8f0fff 2385 ]);
70f7ba9e 2386 $meta = $result['values'];
e354351f 2387 if (!isset($meta[$fieldName]['name']) && isset($meta[$fieldName . '_id'])) {
2388 $fieldName = $fieldName . '_id';
2389 }
70f7ba9e
CW
2390 if (isset($meta[$fieldName])) {
2391 return $meta[$fieldName]['name'];
2392 }
70f7ba9e 2393 foreach ($meta as $info) {
07945b3c 2394 if ($fieldName == $info['name'] || $fieldName == CRM_Utils_Array::value('uniqueName', $info)) {
70f7ba9e
CW
2395 return $info['name'];
2396 }
cf8f0fff 2397 if (array_search($fieldName, CRM_Utils_Array::value('api.aliases', $info, [])) !== FALSE) {
70f7ba9e
CW
2398 return $info['name'];
2399 }
2400 }
985f4890
CW
2401 // Create didn't work, try with get
2402 if ($action == 'create') {
2403 return _civicrm_api3_api_resolve_alias($entity, $fieldName, 'get');
2404 }
70f7ba9e
CW
2405 return FALSE;
2406}
a14e9d08
CW
2407
2408/**
9d32e6f7
EM
2409 * Check if the function is deprecated.
2410 *
a14e9d08
CW
2411 * @param string $entity
2412 * @param array $result
9d32e6f7 2413 *
15cbe793 2414 * @return string|array|null
a14e9d08 2415 */
cf8f0fff 2416function _civicrm_api3_deprecation_check($entity, $result = []) {
15cbe793 2417 if ($entity) {
4846df91
CW
2418 $lowercase_entity = _civicrm_api_get_entity_name_from_camel($entity);
2419 $fnName = "_civicrm_api3_{$lowercase_entity}_deprecation";
15cbe793
CW
2420 if (function_exists($fnName)) {
2421 return $fnName($result);
2422 }
a14e9d08
CW
2423 }
2424}
afa0b07c 2425
2426/**
9d32e6f7
EM
2427 * Get the actual field value.
2428 *
afa0b07c 2429 * In some case $params[$fieldName] holds Array value in this format Array([operator] => [value])
cbfe5232 2430 * So this function returns the actual field value.
afa0b07c 2431 *
2432 * @param array $params
2433 * @param string $fieldName
cbfe5232 2434 * @param string $type
9d32e6f7 2435 *
971d41b1 2436 * @return mixed
afa0b07c 2437 */
cbfe5232 2438function _civicrm_api3_field_value_check(&$params, $fieldName, $type = NULL) {
9c1bc317 2439 $fieldValue = $params[$fieldName] ?? NULL;
afa0b07c 2440 $op = NULL;
2441
cbfe5232 2442 if (!empty($fieldValue) && is_array($fieldValue) &&
2443 (array_search(key($fieldValue), CRM_Core_DAO::acceptedSQLOperators()) ||
2444 $type == 'String' && strstr(key($fieldValue), 'EMPTY'))
2445 ) {
afa0b07c 2446 $op = key($fieldValue);
9c1bc317 2447 $fieldValue = $fieldValue[$op] ?? NULL;
afa0b07c 2448 }
cf8f0fff 2449 return [$fieldValue, $op];
afa0b07c 2450}
5bc7c754
TO
2451
2452/**
a066deea
TO
2453 * A generic "get" API based on simple array data. This is comparable to
2454 * _civicrm_api3_basic_get but does not use DAO/BAO. This is useful for
2455 * small/mid-size data loaded from external JSON or XML documents.
5bc7c754 2456 *
2b28667f 2457 * @param $entity
5bc7c754
TO
2458 * @param array $params
2459 * API parameters.
2460 * @param array $records
2461 * List of all records.
2462 * @param string $idCol
2463 * The property which defines the ID of a record
b030796f 2464 * @param array $filterableFields
5bc7c754 2465 * List of filterable fields.
2b28667f 2466 *
5bc7c754 2467 * @return array
2b28667f 2468 * @throws \API_Exception
5bc7c754 2469 */
b030796f 2470function _civicrm_api3_basic_array_get($entity, $params, $records, $idCol, $filterableFields) {
5bc7c754
TO
2471 $options = _civicrm_api3_get_options_from_params($params, TRUE, $entity, 'get');
2472 // TODO // $sort = CRM_Utils_Array::value('sort', $options, NULL);
9c1bc317
CW
2473 $offset = $options['offset'] ?? NULL;
2474 $limit = $options['limit'] ?? NULL;
5bc7c754 2475
cf8f0fff 2476 $matches = [];
5bc7c754
TO
2477
2478 $currentOffset = 0;
2479 foreach ($records as $record) {
2480 if ($idCol != 'id') {
2481 $record['id'] = $record[$idCol];
2482 }
2483 $match = TRUE;
2484 foreach ($params as $k => $v) {
a066deea
TO
2485 if ($k == 'id') {
2486 $k = $idCol;
2487 }
b030796f 2488 if (in_array($k, $filterableFields) && $record[$k] != $v) {
5bc7c754
TO
2489 $match = FALSE;
2490 break;
2491 }
2492 }
2493 if ($match) {
2494 if ($currentOffset >= $offset) {
2495 $matches[$record[$idCol]] = $record;
2496 }
2497 if ($limit && count($matches) >= $limit) {
2498 break;
2499 }
2500 $currentOffset++;
2501 }
2502 }
2503
cf8f0fff 2504 $return = CRM_Utils_Array::value('return', $options, []);
5bc7c754
TO
2505 if (!empty($return)) {
2506 $return['id'] = 1;
2507 $matches = CRM_Utils_Array::filterColumns($matches, array_keys($return));
2508 }
2509
2510 return civicrm_api3_create_success($matches, $params);
2511}
db83e3a3
CW
2512
2513/**
2514 * @param string $bao_name
2515 * @param array $params
2516 * @throws \Civi\API\Exception\UnauthorizedException
2517 */
2518function _civicrm_api3_check_edit_permissions($bao_name, $params) {
2519 // For lack of something more clever, here's a whitelist of entities whos permissions
2520 // are inherited from a contact record.
2521 // Note, when adding here, also remember to modify _civicrm_api3_permissions()
cf8f0fff 2522 $contactEntities = [
db83e3a3
CW
2523 'CRM_Core_BAO_Email',
2524 'CRM_Core_BAO_Phone',
2525 'CRM_Core_BAO_Address',
2526 'CRM_Core_BAO_IM',
2527 'CRM_Core_BAO_Website',
1c2ea456 2528 'CRM_Core_BAO_OpenID',
cf8f0fff 2529 ];
db83e3a3
CW
2530 if (!empty($params['check_permissions']) && in_array($bao_name, $contactEntities)) {
2531 $cid = !empty($params['contact_id']) ? $params['contact_id'] : CRM_Core_DAO::getFieldValue($bao_name, $params['id'], 'contact_id');
2532 if (!CRM_Contact_BAO_Contact_Permission::allow($cid, CRM_Core_Permission::EDIT)) {
2533 throw new \Civi\API\Exception\UnauthorizedException('Permission denied to modify contact record');
2534 }
2535 }
2536}
2fc6d711
SL
2537
2538/**
2539 * Check if an entity has been modified since the last known modified_date
a22a5119 2540 *
2fc6d711
SL
2541 * @param string $modifiedDate Last knowm modified_date
2542 * @param int $id Id of record to check
2543 * @param string $entity API Entity
a22a5119 2544 *
2fc6d711 2545 * @return bool
a22a5119 2546 * @throws \CiviCRM_API3_Exception
2fc6d711
SL
2547 */
2548function _civicrm_api3_compare_timestamps($modifiedDate, $id, $entity) {
cf8f0fff 2549 $currentDbInfo = civicrm_api3($entity, 'getsingle', ['id' => $id]);
2fc6d711
SL
2550 if (strtotime($currentDbInfo['modified_date']) <= strtotime($modifiedDate)) {
2551 return TRUE;
2552 }
2553 return FALSE;
2554}