Merge pull request #10464 from kryptothesuperdog/CRM-20679
[civicrm-core.git] / api / api.php
CommitLineData
6a488035
TO
1<?php
2
3/**
b081365f 4 * @file CiviCRM APIv3 API wrapper.
6a488035
TO
5 *
6 * @package CiviCRM_APIv3
6a488035
TO
7 */
8
11e09c59 9/**
9d32e6f7
EM
10 * CiviCRM API wrapper function.
11 *
6a488035
TO
12 * @param string $entity
13 * type of entities to deal with
14 * @param string $action
15 * create, get, delete or some special action name.
16 * @param array $params
17 * array to be passed to function
8904518f 18 * @param null $extra
19 *
20 * @return array|int
6a488035
TO
21 */
22function civicrm_api($entity, $action, $params, $extra = NULL) {
7b810209 23 return \Civi::service('civi_api_kernel')->runSafe($entity, $action, $params, $extra);
6a488035
TO
24}
25
6b359437 26/**
9d32e6f7
EM
27 * Version 3 wrapper for civicrm_api.
28 *
29 * Throws exception.
8904518f 30 *
cf470720
TO
31 * @param string $entity
32 * Type of entities to deal with.
33 * @param string $action
34 * Create, get, delete or some special action name.
35 * @param array $params
36 * Array to be passed to function.
6b359437 37 *
8904518f 38 * @throws CiviCRM_API3_Exception
6b359437 39 * @return array
6b359437 40 */
67744c4e 41function civicrm_api3($entity, $action, $params = array()) {
6b359437 42 $params['version'] = 3;
7b810209 43 $result = \Civi::service('civi_api_kernel')->runSafe($entity, $action, $params);
9b873358 44 if (is_array($result) && !empty($result['is_error'])) {
6b359437 45 throw new CiviCRM_API3_Exception($result['error_message'], CRM_Utils_Array::value('error_code', $result, 'undefined'), $result);
46 }
c4ac4df4 47 return $result;
6b359437 48}
6a488035 49
94359f7e 50/**
dc64d047
EM
51 * Call getfields from api wrapper.
52 *
53 * This function ensures that settings that
7cdbcb16
TO
54 * could alter getfields output (e.g. action for all api & profile_id for
55 * profile api ) are consistently passed in.
94359f7e 56 *
7cdbcb16
TO
57 * We check whether the api call is 'getfields' because if getfields is
58 * being called we return an empty array as no alias swapping, validation or
59 * default filling is done on getfields & we want to avoid a loop
94359f7e 60 *
61 * @todo other output modifiers include contact_type
62 *
63 * @param array $apiRequest
dc64d047 64 *
a6c01b45 65 * @return array
e94b9071 66 * getfields output
94359f7e 67 */
68function _civicrm_api3_api_getfields(&$apiRequest) {
69 if (strtolower($apiRequest['action'] == 'getfields')) {
70 // the main param getfields takes is 'action' - however this param is not compatible with REST
71 // so we accept 'api_action' as an alias of action on getfields
a7488080 72 if (!empty($apiRequest['params']['api_action'])) {
35671d00
TO
73 // $apiRequest['params']['action'] = $apiRequest['params']['api_action'];
74 // unset($apiRequest['params']['api_action']);
94359f7e 75 }
de0a1900 76 return array('action' => array('api.aliases' => array('api_action')));
94359f7e 77 }
78 $getFieldsParams = array('action' => $apiRequest['action']);
79 $entity = $apiRequest['entity'];
1644b908 80 if ($entity == 'Profile' && array_key_exists('profile_id', $apiRequest['params'])) {
94359f7e 81 $getFieldsParams['profile_id'] = $apiRequest['params']['profile_id'];
82 }
83 $fields = civicrm_api3($entity, 'getfields', $getFieldsParams);
84 return $fields['values'];
85}
8904518f 86
6a488035
TO
87/**
88 * Check if the result is an error. Note that this function has been retained from
89 * api v2 for convenience but the result is more standardised in v3 and param
90 * 'format.is_success' => 1
91 * will result in a boolean success /fail being returned if that is what you need.
92 *
8904518f 93 * @param $result
94 *
5c766a0b 95 * @return bool
e94b9071 96 * true if error, false otherwise
6a488035
TO
97 */
98function civicrm_error($result) {
99 if (is_array($result)) {
100 return (array_key_exists('is_error', $result) &&
101 $result['is_error']
102 ) ? TRUE : FALSE;
103 }
104 return FALSE;
105}
106
aa1b1481 107/**
a828d7b8 108 * Get camel case version of entity name.
22242c87 109 *
4846df91 110 * @param string|null $entity
aa1b1481 111 *
4846df91 112 * @return string|null
aa1b1481 113 */
dc913073 114function _civicrm_api_get_camel_name($entity) {
4846df91 115 return is_string($entity) ? CRM_Utils_String::convertStringToCamel($entity) : NULL;
6a488035
TO
116}
117
11e09c59 118/**
22242c87
EM
119 * Swap out any $values vars.
120 *
121 * Ie. the value after $value is swapped for the parent $result
6a488035 122 * 'activity_type_id' => '$value.testfield',
e94b9071
CW
123 * 'tag_id' => '$value.api.tag.create.id',
124 * 'tag1_id' => '$value.api.entity.create.0.id'
d424ffde 125 *
e94b9071
CW
126 * @param array $params
127 * @param array $parentResult
128 * @param string $separator
6a488035 129 */
845d6d75 130function _civicrm_api_replace_variables(&$params, &$parentResult, $separator = '.') {
10befc1f 131 foreach ($params as $field => &$value) {
6a488035 132 if (is_string($value) && substr($value, 0, 6) == '$value') {
10befc1f
CW
133 $value = _civicrm_api_replace_variable($value, $parentResult, $separator);
134 }
135 // Handle the operator syntax: array('OP' => $val)
136 elseif (is_array($value) && is_string(reset($value)) && substr(reset($value), 0, 6) == '$value') {
137 $key = key($value);
138 $value[$key] = _civicrm_api_replace_variable($value[$key], $parentResult, $separator);
640aec1d
CW
139 // A null value with an operator will cause an error, so remove it.
140 if ($value[$key] === NULL) {
141 $value = '';
142 }
10befc1f
CW
143 }
144 }
145}
6a488035 146
10befc1f
CW
147/**
148 * Swap out a $value.foo variable with the value from parent api results.
149 *
150 * Called by _civicrm_api_replace_variables to do the substitution.
151 *
152 * @param string $value
153 * @param array $parentResult
154 * @param string $separator
155 * @return mixed|null
156 */
157function _civicrm_api_replace_variable($value, $parentResult, $separator) {
158 $valueSubstitute = substr($value, 7);
6a488035 159
10befc1f
CW
160 if (!empty($parentResult[$valueSubstitute])) {
161 return $parentResult[$valueSubstitute];
162 }
163 else {
164 $stringParts = explode($separator, $value);
165 unset($stringParts[0]);
166 // CRM-16168 If we have failed to swap it out we should unset it rather than leave the placeholder.
167 $value = NULL;
6a488035 168
10befc1f 169 $fieldname = array_shift($stringParts);
6a488035 170
10befc1f
CW
171 //when our string is an array we will treat it as an array from that . onwards
172 $count = count($stringParts);
173 while ($count > 0) {
174 $fieldname .= "." . array_shift($stringParts);
175 if (array_key_exists($fieldname, $parentResult) && is_array($parentResult[$fieldname])) {
176 $arrayLocation = $parentResult[$fieldname];
177 foreach ($stringParts as $key => $innerValue) {
178 $arrayLocation = CRM_Utils_Array::value($innerValue, $arrayLocation);
6a488035 179 }
10befc1f 180 $value = $arrayLocation;
6a488035 181 }
10befc1f 182 $count = count($stringParts);
6a488035
TO
183 }
184 }
10befc1f 185 return $value;
6a488035
TO
186}
187
11e09c59 188/**
dc64d047 189 * Convert possibly camel name to underscore separated entity name.
6a488035 190 *
cf470720 191 * @param string $entity
7cdbcb16
TO
192 * Entity name in various formats e.g. Contribution, contribution,
193 * OptionValue, option_value, UFJoin, uf_join.
dc64d047 194 *
a6c01b45 195 * @return string
7cdbcb16 196 * Entity name in underscore separated format.
6a488035
TO
197 */
198function _civicrm_api_get_entity_name_from_camel($entity) {
1644b908 199 if (!$entity || $entity === strtolower($entity)) {
6a488035
TO
200 return $entity;
201 }
a861c4f5
SL
202 elseif ($entity == 'PCP') {
203 return 'pcp';
204 }
6a488035
TO
205 else {
206 $entity = ltrim(strtolower(str_replace('U_F',
207 'uf',
208 // That's CamelCase, beside an odd UFCamel that is expected as uf_camel
209 preg_replace('/(?=[A-Z])/', '_$0', $entity)
210 )), '_');
211 }
212 return $entity;
213}
11e09c59
TO
214
215/**
dc64d047
EM
216 * Having a DAO object find the entity name.
217 *
cf470720
TO
218 * @param object $bao
219 * DAO being passed in.
dc64d047 220 *
5d3523d9 221 * @return string
6a488035 222 */
9b873358 223function _civicrm_api_get_entity_name_from_dao($bao) {
6a488035 224 $daoName = str_replace("BAO", "DAO", get_class($bao));
4846df91 225 return CRM_Core_DAO_AllCoreTables::getBriefName($daoName);
6a488035 226}