Merge pull request #17150 from civicrm/5.25
[civicrm-core.git] / Civi / Api4 / Generic / BasicSaveAction.php
1 <?php
2
3 /*
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC. All rights reserved. |
6 | |
7 | This work is published under the GNU AGPLv3 license with some |
8 | permitted exceptions and without any warranty. For full license |
9 | and copyright information, see https://civicrm.org/licensing |
10 +--------------------------------------------------------------------+
11 */
12
13 /**
14 *
15 * @package CRM
16 * @copyright CiviCRM LLC https://civicrm.org/licensing
17 * $Id$
18 *
19 */
20
21
22 namespace Civi\Api4\Generic;
23
24 use Civi\API\Exception\NotImplementedException;
25
26 /**
27 * $ACTION one or more $ENTITIES.
28 *
29 * If saving more than one new $ENTITY with similar values, use the `defaults` parameter.
30 *
31 * Set `reload` if you need the api to return complete $ENTITY records.
32 */
33 class BasicSaveAction extends AbstractSaveAction {
34
35 /**
36 * @var callable
37 *
38 * Function(array $item, BasicCreateAction $thisAction) => array
39 */
40 private $setter;
41
42 /**
43 * Basic Create constructor.
44 *
45 * @param string $entityName
46 * @param string $actionName
47 * @param string $idField
48 * @param callable $setter
49 * Function(array $item, BasicCreateAction $thisAction) => array
50 */
51 public function __construct($entityName, $actionName, $idField = 'id', $setter = NULL) {
52 parent::__construct($entityName, $actionName, $idField);
53 $this->setter = $setter;
54 }
55
56 /**
57 * We pass the writeRecord function an array representing one item to write.
58 * We expect to get the same format back.
59 *
60 * @param \Civi\Api4\Generic\Result $result
61 */
62 public function _run(Result $result) {
63 $this->validateValues();
64 foreach ($this->records as $record) {
65 $record += $this->defaults;
66 $result[] = $this->writeRecord($record);
67 }
68 if ($this->reload) {
69 /** @var BasicGetAction $get */
70 $get = \Civi\API\Request::create($this->getEntityName(), 'get', ['version' => 4]);
71 $get
72 ->setCheckPermissions($this->getCheckPermissions())
73 ->addWhere($this->getIdField(), 'IN', (array) $result->column($this->getIdField()));
74 $result->exchangeArray((array) $get->execute());
75 }
76 }
77
78 /**
79 * This Basic Save class can be used in one of two ways:
80 *
81 * 1. Use this class directly by passing a callable ($setter) to the constructor.
82 * 2. Extend this class and override this function.
83 *
84 * Either way, this function should return an array representing the one new object.
85 *
86 * @param array $item
87 * @return array
88 * @throws \Civi\API\Exception\NotImplementedException
89 */
90 protected function writeRecord($item) {
91 if (is_callable($this->setter)) {
92 $this->addCallbackToDebugOutput($this->setter);
93 return call_user_func($this->setter, $item, $this);
94 }
95 throw new NotImplementedException('Setter function not found for api4 ' . $this->getEntityName() . '::' . $this->getActionName());
96 }
97
98 }