APIv4 - Support pseudoconstant lookups
[civicrm-core.git] / Civi / Api4 / Generic / BasicCreateAction.php
CommitLineData
19b53e5b
C
1<?php
2
380f3545
TO
3/*
4 +--------------------------------------------------------------------+
41498ac5 5 | Copyright CiviCRM LLC. All rights reserved. |
380f3545 6 | |
41498ac5
TO
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 |
380f3545
TO
10 +--------------------------------------------------------------------+
11 */
12
13/**
14 *
15 * @package CRM
ca5cec67 16 * @copyright CiviCRM LLC https://civicrm.org/licensing
380f3545
TO
17 * $Id$
18 *
19 */
20
21
19b53e5b
C
22namespace Civi\Api4\Generic;
23
24use Civi\API\Exception\NotImplementedException;
25
26/**
fc95d9a5 27 * Create a new $ENTITY from supplied values.
19b53e5b 28 *
fc95d9a5 29 * This action will create 1 new $ENTITY.
e3c6d5ff 30 * It cannot be used to update existing $ENTITIES; use the `Update` or `Replace` actions for that.
19b53e5b
C
31 */
32class BasicCreateAction extends AbstractCreateAction {
33
34 /**
35 * @var callable
36 *
37 * Function(array $item, BasicCreateAction $thisAction) => array
38 */
39 private $setter;
40
41 /**
42 * Basic Create constructor.
43 *
44 * @param string $entityName
45 * @param string $actionName
46 * @param callable $setter
47 * Function(array $item, BasicCreateAction $thisAction) => array
48 */
49 public function __construct($entityName, $actionName, $setter = NULL) {
50 parent::__construct($entityName, $actionName);
51 $this->setter = $setter;
52 }
53
54 /**
55 * We pass the writeRecord function an array representing one item to write.
56 * We expect to get the same format back.
57 *
58 * @param \Civi\Api4\Generic\Result $result
59 */
60 public function _run(Result $result) {
961e974c 61 $this->formatWriteValues($this->values);
19b53e5b
C
62 $this->validateValues();
63 $result->exchangeArray([$this->writeRecord($this->values)]);
64 }
65
66 /**
67 * This Basic Create class can be used in one of two ways:
68 *
69 * 1. Use this class directly by passing a callable ($setter) to the constructor.
70 * 2. Extend this class and override this function.
71 *
72 * Either way, this function should return an array representing the one new object.
73 *
74 * @param array $item
75 * @return array
76 * @throws \Civi\API\Exception\NotImplementedException
77 */
78 protected function writeRecord($item) {
79 if (is_callable($this->setter)) {
32f72d83 80 $this->addCallbackToDebugOutput($this->setter);
19b53e5b
C
81 return call_user_func($this->setter, $item, $this);
82 }
83 throw new NotImplementedException('Setter function not found for api4 ' . $this->getEntityName() . '::' . $this->getActionName());
84 }
85
86}