Merge in 5.30
[civicrm-core.git] / Civi / Test / Api3TestTrait.php
CommitLineData
30f5345c
TO
1<?php
2
3namespace Civi\Test;
4
62950ef9
CW
5use Civi\API\Exception\NotImplementedException;
6
7f32c217 7require_once 'api/v3/utils.php';
30f5345c
TO
8/**
9 * Class Api3TestTrait
10 * @package Civi\Test
11 *
12 * This trait defines a number of helper functions for testing APIv3. Commonly
13 * used helpers include `callAPISuccess()`, `callAPIFailure()`,
14 * `assertAPISuccess()`, and `assertAPIFailure()`.
15 *
16 * This trait is intended for use with PHPUnit-based test cases.
17 */
18trait Api3TestTrait {
19
62950ef9
CW
20 /**
21 * Get the api versions to test.
22 *
23 * @return array
24 */
25 public function versionThreeAndFour() {
89f5231f
CW
26 return [
27 'APIv3' => [3],
28 'APIv4' => [4],
29 ];
62950ef9
CW
30 }
31
30f5345c
TO
32 /**
33 * Api version - easier to override than just a define
34f3bbd9 34 * @var int
30f5345c
TO
35 */
36 protected $_apiversion = 3;
37
38 /**
39 * Check that api returned 'is_error' => 1
40 * else provide full message
41 * @param array $result
42 * @param $expected
43 * @param array $valuesToExclude
44 * @param string $prefix
45 * Extra test to add to message.
46 */
c64f69d9
CW
47 public function assertAPIArrayComparison($result, $expected, $valuesToExclude = [], $prefix = '') {
48 $valuesToExclude = array_merge($valuesToExclude, ['debug', 'xdebug', 'sequential']);
30f5345c
TO
49 foreach ($valuesToExclude as $value) {
50 if (isset($result[$value])) {
51 unset($result[$value]);
52 }
53 if (isset($expected[$value])) {
54 unset($expected[$value]);
55 }
56 }
57 $this->assertEquals($result, $expected, "api result array comparison failed " . $prefix . print_r($result, TRUE) . ' was compared to ' . print_r($expected, TRUE));
58 }
59
60 /**
61 * Check that a deleted item has been deleted.
62 *
63 * @param $entity
64 * @param $id
65 */
66 public function assertAPIDeleted($entity, $id) {
c64f69d9 67 $this->callAPISuccess($entity, 'getcount', ['id' => $id], 0);
30f5345c
TO
68 }
69
70 /**
71 * Check that api returned 'is_error' => 1.
72 *
73 * @param array $apiResult
74 * Api result.
75 * @param string $prefix
76 * Extra test to add to message.
77 * @param null $expectedError
78 */
79 public function assertAPIFailure($apiResult, $prefix = '', $expectedError = NULL) {
80 if (!empty($prefix)) {
81 $prefix .= ': ';
82 }
83 if ($expectedError && !empty($apiResult['is_error'])) {
62950ef9 84 $this->assertContains($expectedError, $apiResult['error_message'], 'api error message not as expected' . $prefix);
30f5345c
TO
85 }
86 $this->assertEquals(1, $apiResult['is_error'], "api call should have failed but it succeeded " . $prefix . (print_r($apiResult, TRUE)));
87 $this->assertNotEmpty($apiResult['error_message']);
88 }
89
90 /**
91 * Check that api returned 'is_error' => 0.
92 *
93 * @param array $apiResult
94 * Api result.
95 * @param string $prefix
96 * Extra test to add to message.
97 */
98 public function assertAPISuccess($apiResult, $prefix = '') {
99 if (!empty($prefix)) {
100 $prefix .= ': ';
101 }
102 $errorMessage = empty($apiResult['error_message']) ? '' : " " . $apiResult['error_message'];
103
104 if (!empty($apiResult['debug_information'])) {
105 $errorMessage .= "\n " . print_r($apiResult['debug_information'], TRUE);
106 }
107 if (!empty($apiResult['trace'])) {
108 $errorMessage .= "\n" . print_r($apiResult['trace'], TRUE);
109 }
a2ff62ce 110 $this->assertEmpty($apiResult['is_error'] ?? NULL, $prefix . $errorMessage);
30f5345c
TO
111 }
112
113 /**
114 * This function exists to wrap api functions.
115 * so we can ensure they fail where expected & throw exceptions without litterering the test with checks
116 * @param string $entity
117 * @param string $action
118 * @param array $params
119 * @param string $expectedErrorMessage
120 * Error.
121 * @param null $extraOutput
122 * @return array|int
123 */
124 public function callAPIFailure($entity, $action, $params, $expectedErrorMessage = NULL, $extraOutput = NULL) {
125 if (is_array($params)) {
c64f69d9 126 $params += [
30f5345c 127 'version' => $this->_apiversion,
c64f69d9 128 ];
30f5345c
TO
129 }
130 $result = $this->civicrm_api($entity, $action, $params);
131 $this->assertAPIFailure($result, "We expected a failure for $entity $action but got a success", $expectedErrorMessage);
132 return $result;
133 }
134
135 /**
136 * wrap api functions.
137 * so we can ensure they succeed & throw exceptions without litterering the test with checks
138 *
139 * @param string $entity
140 * @param string $action
141 * @param array $params
142 * @param mixed $checkAgainst
143 * Optional value to check result against, implemented for getvalue,.
144 * getcount, getsingle. Note that for getvalue the type is checked rather than the value
145 * for getsingle the array is compared against an array passed in - the id is not compared (for
146 * better or worse )
147 *
148 * @return array|int
e2887a3c 149 *
150 * @throws \CRM_Core_Exception
30f5345c 151 */
62950ef9 152 public function callAPISuccess($entity, $action, $params = [], $checkAgainst = NULL) {
c64f69d9 153 $params = array_merge([
30f5345c
TO
154 'version' => $this->_apiversion,
155 'debug' => 1,
c64f69d9 156 ],
30f5345c
TO
157 $params
158 );
159 switch (strtolower($action)) {
160 case 'getvalue':
161 return $this->callAPISuccessGetValue($entity, $params, $checkAgainst);
162
163 case 'getsingle':
164 return $this->callAPISuccessGetSingle($entity, $params, $checkAgainst);
165
166 case 'getcount':
167 return $this->callAPISuccessGetCount($entity, $params, $checkAgainst);
168 }
169 $result = $this->civicrm_api($entity, $action, $params);
170 $this->assertAPISuccess($result, "Failure in api call for $entity $action");
171 return $result;
172 }
173
174 /**
175 * This function exists to wrap api getValue function & check the result
176 * so we can ensure they succeed & throw exceptions without litterering the test with checks
177 * There is a type check in this
023f9e8a 178 *
30f5345c
TO
179 * @param string $entity
180 * @param array $params
023f9e8a 181 * @param int $count
182 *
183 * @throws \CRM_Core_Exception
184 *
30f5345c
TO
185 * @return array|int
186 */
187 public function callAPISuccessGetCount($entity, $params, $count = NULL) {
c64f69d9 188 $params += [
30f5345c
TO
189 'version' => $this->_apiversion,
190 'debug' => 1,
c64f69d9 191 ];
30f5345c
TO
192 $result = $this->civicrm_api($entity, 'getcount', $params);
193 if (!is_int($result) || !empty($result['is_error']) || isset($result['values'])) {
023f9e8a 194 throw new \CRM_Core_Exception('Invalid getcount result : ' . print_r($result, TRUE) . " type :" . gettype($result));
30f5345c
TO
195 }
196 if (is_int($count)) {
197 $this->assertEquals($count, $result, "incorrect count returned from $entity getcount");
198 }
199 return $result;
200 }
201
202 /**
203 * This function exists to wrap api getsingle function & check the result
204 * so we can ensure they succeed & throw exceptions without litterering the test with checks
205 *
206 * @param string $entity
207 * @param array $params
208 * @param array $checkAgainst
209 * Array to compare result against.
210 * - boolean
211 * - integer
212 * - double
213 * - string
214 * - array
215 * - object
216 *
023f9e8a 217 * @throws \CRM_Core_Exception
218 *
30f5345c
TO
219 * @return array|int
220 */
221 public function callAPISuccessGetSingle($entity, $params, $checkAgainst = NULL) {
c64f69d9 222 $params += [
30f5345c 223 'version' => $this->_apiversion,
c64f69d9 224 ];
30f5345c
TO
225 $result = $this->civicrm_api($entity, 'getsingle', $params);
226 if (!is_array($result) || !empty($result['is_error']) || isset($result['values'])) {
023f9e8a 227 $unfilteredResult = $this->civicrm_api($entity, 'get', ['version' => $this->_apiversion]);
228 throw new \CRM_Core_Exception(
cb4e7d31 229 'Invalid getsingle result' . print_r($result, TRUE)
230 . "\n entity: $entity . \n params \n " . print_r($params, TRUE)
34f3bbd9 231 . "\n entities retrieved with blank params \n" . print_r($unfilteredResult, TRUE)
cb4e7d31 232 );
30f5345c
TO
233 }
234 if ($checkAgainst) {
235 // @todo - have gone with the fn that unsets id? should we check id?
236 $this->checkArrayEquals($result, $checkAgainst);
237 }
238 return $result;
239 }
240
241 /**
242 * This function exists to wrap api getValue function & check the result
243 * so we can ensure they succeed & throw exceptions without litterering the test with checks
244 * There is a type check in this
245 *
246 * @param string $entity
247 * @param array $params
248 * @param string $type
249 * Per http://php.net/manual/en/function.gettype.php possible types.
250 * - boolean
251 * - integer
252 * - double
253 * - string
254 * - array
255 * - object
256 *
257 * @return array|int
5214f03b 258 * @throws \CRM_Core_Exception
30f5345c
TO
259 */
260 public function callAPISuccessGetValue($entity, $params, $type = NULL) {
c64f69d9 261 $params += [
30f5345c 262 'version' => $this->_apiversion,
c64f69d9 263 ];
30f5345c 264 $result = $this->civicrm_api($entity, 'getvalue', $params);
1bf00882 265 if (is_array($result) && (!empty($result['is_error']) || isset($result['values']))) {
5214f03b 266 throw new \CRM_Core_Exception('Invalid getvalue result' . print_r($result, TRUE));
1bf00882 267 }
30f5345c 268 if ($type) {
5214f03b 269 if ($type === 'integer') {
30f5345c
TO
270 // api seems to return integers as strings
271 $this->assertTrue(is_numeric($result), "expected a numeric value but got " . print_r($result, 1));
272 }
273 else {
274 $this->assertType($type, $result, "returned result should have been of type $type but was ");
275 }
276 }
277 return $result;
278 }
279
280 /**
281 * A stub for the API interface. This can be overriden by subclasses to change how the API is called.
282 *
283 * @param $entity
284 * @param $action
285 * @param array $params
286 * @return array|int
287 */
62950ef9 288 public function civicrm_api($entity, $action, $params = []) {
a2ff62ce 289 if (($params['version'] ?? 0) == 4) {
62950ef9
CW
290 return $this->runApi4Legacy($entity, $action, $params);
291 }
30f5345c
TO
292 return civicrm_api($entity, $action, $params);
293 }
294
62950ef9
CW
295 /**
296 * Emulate v3 syntax so we can run api3 tests on v4
297 *
298 * @param $v3Entity
299 * @param $v3Action
300 * @param array $v3Params
301 * @return array|int
302 * @throws \API_Exception
303 * @throws \CiviCRM_API3_Exception
304 * @throws \Exception
305 */
306 public function runApi4Legacy($v3Entity, $v3Action, $v3Params = []) {
74c303ca 307 $v4Entity = \CRM_Core_DAO_AllCoreTables::convertEntityNameToCamel($v3Entity);
62950ef9
CW
308 $v4Action = $v3Action = strtolower($v3Action);
309 $v4Params = ['checkPermissions' => isset($v3Params['check_permissions']) ? (bool) $v3Params['check_permissions'] : FALSE];
310 $sequential = !empty($v3Params['sequential']);
311 $options = \_civicrm_api3_get_options_from_params($v3Params, in_array($v4Entity, ['Contact', 'Participant', 'Event', 'Group', 'Contribution', 'Membership']));
312 $indexBy = in_array($v3Action, ['get', 'create', 'replace']) && !$sequential ? 'id' : NULL;
313 $onlyId = !empty($v3Params['format.only_id']);
314 $onlySuccess = !empty($v3Params['format.is_success']);
3e20c1ac 315 if (!empty($v3Params['filters']['is_current']) || !empty($v3Params['isCurrent'])) {
62950ef9
CW
316 $v4Params['current'] = TRUE;
317 }
a2ff62ce 318 $language = $v3Params['options']['language'] ?? $v3Params['option.language'] ?? NULL;
3e20c1ac
CW
319 if ($language) {
320 $v4Params['language'] = $language;
321 }
62950ef9 322 $toRemove = ['option.', 'return', 'api.', 'format.'];
3493febb 323 $chains = $joins = $custom = [];
62950ef9
CW
324 foreach ($v3Params as $key => $val) {
325 foreach ($toRemove as $remove) {
326 if (strpos($key, $remove) === 0) {
327 if ($remove == 'api.') {
328 $chains[$key] = $val;
329 }
330 unset($v3Params[$key]);
331 }
332 }
333 }
334
335 $v3Fields = civicrm_api3($v3Entity, 'getfields', ['action' => $v3Action])['values'];
336
337 // Fix 'null'
338 foreach ($v3Params as $key => $val) {
339 if ($val === 'null') {
340 $v3Params[$key] = NULL;
341 }
342 }
343
344 if ($v4Entity == 'Setting') {
345 $indexBy = NULL;
a2ff62ce 346 $v4Params['domainId'] = $v3Params['domain_id'] ?? NULL;
62950ef9
CW
347 if ($v3Action == 'getfields') {
348 if (!empty($v3Params['name'])) {
349 $v3Params['filters']['name'] = $v3Params['name'];
350 }
a2ff62ce 351 foreach ($v3Params['filters'] ?? [] as $filter => $val) {
62950ef9
CW
352 $v4Params['where'][] = [$filter, '=', $val];
353 }
354 }
355 if ($v3Action == 'create') {
356 $v4Action = 'set';
357 }
358 if ($v3Action == 'revert') {
359 $v4Params['select'] = (array) $v3Params['name'];
360 }
361 if ($v3Action == 'getvalue') {
362 $options['return'] = [$v3Params['name'] => 1];
363 $v3Params = [];
364 }
365 \CRM_Utils_Array::remove($v3Params, 'domain_id', 'name');
366 }
367
368 \CRM_Utils_Array::remove($v3Params, 'options', 'debug', 'version', 'sort', 'offset', 'rowCount', 'check_permissions', 'sequential', 'filters', 'isCurrent');
369
370 // Work around ugly hack in v3 Domain api
371 if ($v4Entity == 'Domain') {
372 $v3Fields['version'] = ['name' => 'version', 'api.aliases' => ['domain_version']];
373 unset($v3Fields['domain_version']);
374 }
375
376 foreach ($v3Fields as $name => $field) {
377 // Resolve v3 aliases
a2ff62ce 378 foreach ($field['api.aliases'] ?? [] as $alias) {
62950ef9
CW
379 if (isset($v3Params[$alias])) {
380 $v3Params[$field['name']] = $v3Params[$alias];
381 unset($v3Params[$alias]);
382 }
383 }
384 // Convert custom field names
385 if (strpos($name, 'custom_') === 0 && is_numeric($name[7])) {
386 // Strictly speaking, using titles instead of names is incorrect, but it works for
387 // unit tests where names and titles are identical and saves an extra db lookup.
388 $custom[$field['groupTitle']][$field['title']] = $name;
389 $v4FieldName = $field['groupTitle'] . '.' . $field['title'];
390 if (isset($v3Params[$name])) {
391 $v3Params[$v4FieldName] = $v3Params[$name];
392 unset($v3Params[$name]);
393 }
394 if (isset($options['return'][$name])) {
395 $options['return'][$v4FieldName] = 1;
396 unset($options['return'][$name]);
397 }
398 }
1441a378 399
400 if ($name === 'option_group_id' && isset($v3Params[$name]) && !is_numeric($v3Params[$name])) {
401 // This is a per field hack (bad) but we can't solve everything at once
402 // & a cleverer way turned out to be too much for this round.
403 // Being in the test class it's tested....
404 $v3Params['option_group.name'] = $v3Params['option_group_id'];
405 unset($v3Params['option_group_id']);
406 }
0524826d 407 if (isset($field['pseudoconstant'], $v3Params[$name]) && $field['type'] === \CRM_Utils_Type::T_INT && !is_numeric($v3Params[$name])) {
408 $v3Params[$name] = \CRM_Core_PseudoConstant::getKey(\CRM_Core_DAO_AllCoreTables::getFullName($v3Entity), $name, $v3Params[$name]);
409 }
62950ef9
CW
410 }
411
412 switch ($v3Action) {
413 case 'getcount':
414 $v4Params['select'] = ['row_count'];
415 // No break - keep processing as get
416 case 'getsingle':
417 case 'getvalue':
418 $v4Action = 'get';
419 // No break - keep processing as get
420 case 'get':
421 if ($options['return'] && $v3Action !== 'getcount') {
422 $v4Params['select'] = array_keys($options['return']);
8e593ba8
CW
423 // Ensure id field is returned as v3 always expects it
424 if ($v4Entity != 'Setting' && !in_array('id', $v4Params['select'])) {
425 $v4Params['select'][] = 'id';
426 }
3493febb
CW
427 // Convert join syntax
428 foreach ($v4Params['select'] as &$select) {
429 if (strstr($select, '_id.')) {
430 $joins[$select] = explode('.', str_replace('_id.', '.', $select));
431 $select = str_replace('_id.', '.', $select);
432 }
433 }
62950ef9
CW
434 }
435 if ($options['limit'] && $v4Entity != 'Setting') {
436 $v4Params['limit'] = $options['limit'];
437 }
438 if ($options['offset']) {
439 $v4Params['offset'] = $options['offset'];
440 }
441 if ($options['sort']) {
442 foreach (explode(',', $options['sort']) as $sort) {
443 list($sortField, $sortDir) = array_pad(explode(' ', trim($sort)), 2, 'ASC');
444 $v4Params['orderBy'][$sortField] = $sortDir;
445 }
446 }
447 break;
448
449 case 'replace':
450 if (empty($v3Params['values'])) {
451 $v4Action = 'delete';
452 }
453 else {
454 $v4Params['records'] = $v3Params['values'];
455 }
456 unset($v3Params['values']);
457 break;
458
459 case 'create':
460 case 'update':
461 if (!empty($v3Params['id'])) {
462 $v4Action = 'update';
463 $v4Params['where'][] = ['id', '=', $v3Params['id']];
464 }
465
466 $v4Params['values'] = $v3Params;
467 unset($v4Params['values']['id']);
468 break;
469
470 case 'delete':
8a0c3604 471 if (isset($v3Params['id'])) {
62950ef9
CW
472 $v4Params['where'][] = ['id', '=', $v3Params['id']];
473 }
474 break;
475
476 case 'getoptions':
477 $indexBy = 0;
478 $v4Action = 'getFields';
479 $v4Params += [
480 'where' => [['name', '=', $v3Params['field']]],
481 'loadOptions' => TRUE,
482 ];
483 break;
484
485 case 'getfields':
486 $v4Action = 'getFields';
487 if (!empty($v3Params['action']) || !empty($v3Params['api_action'])) {
488 $v4Params['action'] = !empty($v3Params['action']) ? $v3Params['action'] : $v3Params['api_action'];
489 }
490 $indexBy = !$sequential ? 'name' : NULL;
491 break;
492 }
493
494 // Ensure this api4 entity/action exists
495 try {
496 $actionInfo = \civicrm_api4($v4Entity, 'getActions', ['checkPermissions' => FALSE, 'where' => [['name', '=', $v4Action]]]);
497 }
498 catch (NotImplementedException $e) {
499 // For now we'll mark the test incomplete if a v4 entity doesn't exit yet
500 $this->markTestIncomplete($e->getMessage());
501 }
502 if (!isset($actionInfo[0])) {
503 throw new \Exception("Api4 $v4Entity $v4Action does not exist.");
504 }
505
506 // Migrate special params like fix_address
507 foreach ($actionInfo[0]['params'] as $v4ParamName => $paramInfo) {
508 // camelCase in api4, lower_case in api3
509 $v3ParamName = strtolower(preg_replace('/(?=[A-Z])/', '_$0', $v4ParamName));
510 if (isset($v3Params[$v3ParamName])) {
511 $v4Params[$v4ParamName] = $v3Params[$v3ParamName];
512 unset($v3Params[$v3ParamName]);
513 if ($paramInfo['type'][0] == 'bool') {
514 $v4Params[$v4ParamName] = (bool) $v4Params[$v4ParamName];
515 }
516 }
517 }
518
519 // Build where clause for 'getcount', 'getsingle', 'getvalue', 'get' & 'replace'
520 if ($v4Action == 'get' || $v3Action == 'replace') {
521 foreach ($v3Params as $key => $val) {
522 $op = '=';
523 if (is_array($val) && count($val) == 1 && array_intersect_key($val, array_flip(\CRM_Core_DAO::acceptedSQLOperators()))) {
524 foreach ($val as $op => $newVal) {
525 $val = $newVal;
526 }
527 }
528 $v4Params['where'][] = [$key, $op, $val];
529 }
530 }
531
532 try {
533 $result = \civicrm_api4($v4Entity, $v4Action, $v4Params, $indexBy);
534 }
535 catch (\Exception $e) {
536 return $onlySuccess ? 0 : [
537 'is_error' => 1,
538 'error_message' => $e->getMessage(),
539 'version' => 4,
540 ];
541 }
542
8a0c3604 543 if (($v3Action == 'getsingle' || $v3Action == 'getvalue' || $v3Action == 'delete') && count($result) != 1) {
62950ef9
CW
544 return $onlySuccess ? 0 : [
545 'is_error' => 1,
546 'error_message' => "Expected one $v4Entity but found " . count($result),
547 'count' => count($result),
548 ];
549 }
550
551 if ($onlySuccess) {
552 return 1;
553 }
554
555 if ($v3Action == 'getcount') {
556 return $result->count();
557 }
558
559 if ($onlyId) {
560 return $result->first()['id'];
561 }
562
563 if ($v3Action == 'getvalue' && $v4Entity == 'Setting') {
a2ff62ce 564 return $result->first()['value'] ?? NULL;
62950ef9
CW
565 }
566
567 if ($v3Action == 'getvalue') {
a2ff62ce
CW
568 $returnKey = array_keys($options['return'])[0];
569 return $result->first()[$returnKey] ?? NULL;
62950ef9
CW
570 }
571
572 // Mimic api3 behavior when using 'replace' action to delete all
573 if ($v3Action == 'replace' && $v4Action == 'delete') {
574 $result->exchangeArray([]);
575 }
576
577 if ($v3Action == 'getoptions') {
578 return [
579 'is_error' => 0,
580 'count' => $result['options'] ? count($result['options']) : 0,
581 'values' => $result['options'] ?: [],
582 'version' => 4,
583 ];
584 }
585
586 // Emulate the weird return format of api3 settings
587 if (($v3Action == 'get' || $v3Action == 'create') && $v4Entity == 'Setting') {
588 $settings = [];
589 foreach ($result as $item) {
590 $settings[$item['domain_id']][$item['name']] = $item['value'];
591 }
592 $result->exchangeArray($sequential ? array_values($settings) : $settings);
593 }
594
595 foreach ($result as $index => $row) {
596 // Run chains
597 foreach ($chains as $key => $params) {
598 $result[$index][$key] = $this->runApi4LegacyChain($key, $params, $v4Entity, $row, $sequential);
599 }
3493febb
CW
600 // Convert join format
601 foreach ($joins as $api3Key => $api4Path) {
602 $result[$index][$api3Key] = \CRM_Utils_Array::pathGet($result[$index], $api4Path);
603 }
62950ef9
CW
604 // Resolve custom field names
605 foreach ($custom as $group => $fields) {
f74361a9
CW
606 foreach ($fields as $field => $v3FieldName) {
607 if (isset($row["$group.$field"])) {
608 $result[$index][$v3FieldName] = $row["$group.$field"];
609 unset($result[$index]["$group.$field"]);
62950ef9 610 }
62950ef9
CW
611 }
612 }
613 }
614
615 if ($v3Action == 'getsingle') {
616 return $result->first();
617 }
618
619 return [
620 'is_error' => 0,
621 'version' => 4,
622 'count' => count($result),
623 'values' => (array) $result,
a2ff62ce 624 'id' => is_object($result) && count($result) == 1 ? ($result->first()['id'] ?? NULL) : NULL,
62950ef9
CW
625 ];
626 }
627
628 /**
629 * @param string $key
630 * @param mixed $params
631 * @param string $mainEntity
632 * @param array $result
633 * @param bool $sequential
634 * @return array
635 * @throws \API_Exception
636 */
637 protected function runApi4LegacyChain($key, $params, $mainEntity, $result, $sequential) {
638 // Handle an array of multiple calls using recursion
639 if (is_array($params) && isset($params[0]) && is_array($params[0])) {
640 $results = [];
641 foreach ($params as $chain) {
642 $results[] = $this->runApi4LegacyChain($key, $chain, $mainEntity, $result, $sequential);
643 }
644 return $results;
645 }
646
647 // Handle single api call
648 list(, $chainEntity, $chainAction) = explode('.', $key);
74c303ca 649 $lcChainEntity = \CRM_Core_DAO_AllCoreTables::convertEntityNameToLower($chainEntity);
650 $chainEntity = \CRM_Core_DAO_AllCoreTables::convertEntityNameToCamel($chainEntity);
651 $lcMainEntity = \CRM_Core_DAO_AllCoreTables::convertEntityNameToLower($mainEntity);
62950ef9
CW
652 $params = is_array($params) ? $params : [];
653
654 // Api3 expects this to be inherited
655 $params += ['sequential' => $sequential];
656
657 // Replace $value.field_name
658 foreach ($params as $name => $param) {
659 if (is_string($param) && strpos($param, '$value.') === 0) {
660 $param = substr($param, 7);
a2ff62ce 661 $params[$name] = $result[$param] ?? NULL;
62950ef9
CW
662 }
663 }
664
665 try {
666 $getFields = civicrm_api4($chainEntity, 'getFields', ['select' => ['name']], 'name');
667 }
668 catch (NotImplementedException $e) {
669 $this->markTestIncomplete($e->getMessage());
670 }
671
672 // Emulate the string-fu guesswork that api3 does
673 if ($chainEntity == $mainEntity && empty($params['id']) && !empty($result['id'])) {
674 $params['id'] = $result['id'];
675 }
676 elseif (empty($params['id']) && !empty($result[$lcChainEntity . '_id'])) {
677 $params['id'] = $result[$lcChainEntity . '_id'];
678 }
679 elseif (!empty($result['id']) && isset($getFields[$lcMainEntity . '_id']) && empty($params[$lcMainEntity . '_id'])) {
680 $params[$lcMainEntity . '_id'] = $result['id'];
681 }
682 return $this->runApi4Legacy($chainEntity, $chainAction, $params);
683 }
684
30f5345c 685}