Merge pull request #4863 from totten/master-phpcbf4
[civicrm-core.git] / api / v3 / Generic.php
1 <?php
2
3 /**
4 * Get information about fields for a given api request. Getfields information
5 * is used for documentation, validation, default setting
6 * We first query the scheme using the $dao->fields function & then augment
7 * that information by calling the _spec functions that apply to the relevant function
8 * Note that we use 'unique' field names as described in the xml/schema files
9 * for get requests & just field name for create. This is because some get functions
10 * access multiple objects e.g. contact api accesses is_deleted from the activity
11 * table & from the contact table
12 *
13 * @param array $apiRequest
14 * Api request as an array. Keys are.
15 * - entity: string
16 * - action: string
17 * - version: string
18 * - function: callback (mixed)
19 * - params: array, varies
20 * @return array API success object
21 */
22 function civicrm_api3_generic_getfields($apiRequest) {
23 static $results = array();
24 if ((CRM_Utils_Array::value('cache_clear', $apiRequest['params']))) {
25 $results = array();
26 // we will also clear pseudoconstants here - should potentially be moved to relevant BAO classes
27 CRM_Core_PseudoConstant::flush();
28 if(!empty($apiRequest['params']['fieldname'])){
29 CRM_Utils_PseudoConstant::flushConstant($apiRequest['params']['fieldname']);
30 }
31 if(!empty($apiRequest['params']['option_group_id'])){
32 $optionGroupName = civicrm_api('option_group', 'getvalue', array('version' => 3, 'id' => $apiRequest['params']['option_group_id'], 'return' => 'name') );
33 if(is_string($optionGroupName)){
34 CRM_Utils_PseudoConstant::flushConstant(_civicrm_api_get_camel_name($optionGroupName));
35 }
36 }
37 }
38 $entity = _civicrm_api_get_camel_name($apiRequest['entity']);
39 $lcase_entity = _civicrm_api_get_entity_name_from_camel($entity);
40 $subentity = CRM_Utils_Array::value('contact_type', $apiRequest['params']);
41 $action = strtolower(CRM_Utils_Array::value('action', $apiRequest['params']));
42 $sequential = empty($apiRequest['params']) ? 0 : 1;
43 $apiOptions = CRM_Utils_Array::value('options', $apiRequest['params'], array());
44 if (!$action || $action == 'getvalue' || $action == 'getcount') {
45 $action = 'get';
46 }
47 // determines whether to use unique field names - seem comment block above
48 $unique = TRUE;
49 if (empty($apiOptions) && isset($results[$entity . $subentity]) && isset($action, $results[$entity . $subentity])
50 && isset($action, $results[$entity . $subentity][$sequential])) {
51 return $results[$entity . $subentity][$action][$sequential];
52 }
53 // defaults based on data model and API policy
54 switch ($action) {
55 case 'getfields':
56 $values = _civicrm_api_get_fields($entity, FALSE, $apiRequest['params']);
57 return civicrm_api3_create_success($values, $apiRequest['params'], $entity, 'getfields');
58 case 'create':
59 case 'update':
60 case 'replace':
61 $unique = FALSE;
62 case 'get':
63 case 'getsingle':
64 case 'getcount':
65 $metadata = _civicrm_api_get_fields($apiRequest['entity'], $unique, $apiRequest['params']);
66 if (empty($metadata['id'])){
67 // if id is not set we will set it eg. 'id' from 'case_id', case_id will be an alias
68 if(!empty($metadata[strtolower($apiRequest['entity']) . '_id'])) {
69 $metadata['id'] = $metadata[$lcase_entity . '_id'];
70 unset($metadata[$lcase_entity . '_id']);
71 $metadata['id']['api.aliases'] = array($lcase_entity . '_id');
72 }
73 }
74 else{
75 // really the preference would be to set the unique name in the xml
76 // question is which is a less risky fix this close to a release - setting in xml for the known failure
77 // (note) or setting for all api where fields is returning 'id' & we want to accept 'note_id' @ the api layer
78 // nb we don't officially accept note_id anyway - rationale here is more about centralising a now-tested
79 // inconsistency
80 $metadata['id']['api.aliases'] = array($lcase_entity . '_id');
81 }
82 break;
83
84 case 'delete':
85 $metadata = array(
86 'id' => array(
87 'title' => $entity . ' ID',
88 'name' => 'id',
89 'api.required' => 1,
90 'api.aliases' => array($lcase_entity . '_id'),
91 'type' => CRM_Utils_Type::T_INT,
92 ));
93 break;
94
95 case 'getoptions':
96 $metadata = array(
97 'field' => array(
98 'name' => 'field',
99 'title' => 'Field name',
100 'api.required' => 1,
101 ),
102 'context' => array(
103 'name' => 'context',
104 'title' => 'Context',
105 ),
106 );
107 break;
108 default:
109 // oddballs are on their own
110 $metadata = array();
111 }
112
113 // find any supplemental information
114 $hypApiRequest = array('entity' => $apiRequest['entity'], 'action' => $action, 'version' => $apiRequest['version']);
115 try {
116 list ($apiProvider, $hypApiRequest) = \Civi\Core\Container::singleton()->get('civi_api_kernel')->resolve($hypApiRequest);
117 if (isset($hypApiRequest['function'])) {
118 $helper = '_' . $hypApiRequest['function'] . '_spec';
119 } else {
120 // not implemented MagicFunctionProvider
121 $helper = NULL;
122 }
123 } catch (\Civi\API\Exception\NotImplementedException $e) {
124 $helper = NULL;
125 }
126 if (function_exists($helper)) {
127 // alter
128 $helper($metadata, $apiRequest);
129 }
130
131 $fieldsToResolve = (array) CRM_Utils_Array::value('get_options', $apiOptions, array());
132
133 foreach ($metadata as $fieldname => $fieldSpec) {
134 _civicrm_api3_generic_get_metadata_options($metadata, $apiRequest, $fieldname, $fieldSpec, $fieldsToResolve);
135 }
136
137 $results[$entity][$action][$sequential] = civicrm_api3_create_success($metadata, $apiRequest['params'], $entity, 'getfields');
138 return $results[$entity][$action][$sequential];
139 }
140
141 /**
142 * API return function to reformat results as count
143 *
144 * @param array $apiRequest
145 * Api request as an array. Keys are.
146 *
147 * @throws API_Exception
148 * @return integer count of results
149 */
150 function civicrm_api3_generic_getcount($apiRequest) {
151 $apiRequest['params']['options']['is_count'] = TRUE;
152 $result = civicrm_api($apiRequest['entity'], 'get', $apiRequest['params']);
153 if(is_numeric (CRM_Utils_Array::value('values', $result))) {
154 return (int) $result['values'];
155 }
156 if(!isset($result['count'])) {
157 throw new API_Exception(ts('Unexpected result from getcount') . print_r($result, TRUE));
158 }
159 return $result['count'];
160 }
161
162 /**
163 * API return function to reformat results as single result
164 *
165 * @param array $apiRequest
166 * Api request as an array. Keys are.
167 *
168 * @return integer count of results
169 */
170 function civicrm_api3_generic_getsingle($apiRequest) {
171 // so the first entity is always result['values'][0]
172 $apiRequest['params']['sequential'] = 1;
173 $result = civicrm_api($apiRequest['entity'], 'get', $apiRequest['params']);
174 if ($result['is_error'] !== 0) {
175 return $result;
176 }
177 if ($result['count'] === 1) {
178 return $result['values'][0];
179 }
180 if ($result['count'] !== 1) {
181 return civicrm_api3_create_error("Expected one " . $apiRequest['entity'] . " but found " . $result['count'], array('count' => $result['count']));
182 }
183 return civicrm_api3_create_error("Undefined behavior");
184 }
185
186 /**
187 * API return function to reformat results as single value
188 *
189 * @param array $apiRequest
190 * Api request as an array. Keys are.
191 *
192 * @return integer count of results
193 */
194 function civicrm_api3_generic_getvalue($apiRequest) {
195 $apiRequest['params']['sequential'] = 1;
196 $result = civicrm_api($apiRequest['entity'], 'get', $apiRequest['params']);
197 if ($result['is_error'] !== 0) {
198 return $result;
199 }
200 if ($result['count'] !== 1) {
201 $result = civicrm_api3_create_error("Expected one " . $apiRequest['entity'] . " but found " . $result['count'], array('count' => $result['count']));
202 return $result;
203 }
204
205 // we only take "return=" as valid options
206 if (!empty($apiRequest['params']['return'])) {
207 if (!isset($result['values'][0][$apiRequest['params']['return']])) {
208 return civicrm_api3_create_error("field " . $apiRequest['params']['return'] . " unset or not existing", array('invalid_field' => $apiRequest['params']['return']));
209 }
210
211 return $result['values'][0][$apiRequest['params']['return']];
212 }
213
214 return civicrm_api3_create_error("missing param return=field you want to read the value of", array('error_type' => 'mandatory_missing', 'missing_param' => 'return'));
215 }
216
217 /**
218 * @param array $params
219 */
220 function _civicrm_api3_generic_getrefcount_spec(&$params) {
221 $params['id']['api.required'] = 1;
222 $params['id']['title'] = 'Entity ID';
223 }
224
225 /**
226 * API to determine if a record is in-use
227 *
228 * @param array $apiRequest
229 * Api request as an array.
230 *
231 * @throws API_Exception
232 * @return array API result (int 0 or 1)
233 */
234 function civicrm_api3_generic_getrefcount($apiRequest) {
235 $entityToClassMap = CRM_Core_DAO_AllCoreTables::daoToClass();
236 if (!isset($entityToClassMap[$apiRequest['entity']])) {
237 throw new API_Exception("The entity '{$apiRequest['entity']}' is unknown or unsupported by 'getrefcount'. Consider implementing this API.", 'getrefcount_unsupported');
238 }
239 $daoClass = $entityToClassMap[$apiRequest['entity']];
240
241 /* @var $dao CRM_Core_DAO */
242 $dao = new $daoClass();
243 $dao->id = $apiRequest['params']['id'];
244 if ($dao->find(TRUE)) {
245 return civicrm_api3_create_success($dao->getReferenceCounts());
246 }
247 else {
248 return civicrm_api3_create_success(array());
249 }
250 }
251
252 /**
253 * API wrapper for replace function
254 *
255 * @param array $apiRequest
256 * Api request as an array. Keys are.
257 *
258 * @return integer count of results
259 */
260 function civicrm_api3_generic_replace($apiRequest) {
261 return _civicrm_api3_generic_replace($apiRequest['entity'], $apiRequest['params']);
262 }
263
264 /**
265 * API wrapper for getoptions function
266 *
267 * @param array $apiRequest
268 * Api request as an array.
269 *
270 * @return array of results
271 */
272 function civicrm_api3_generic_getoptions($apiRequest) {
273 // Resolve aliases
274 $fieldName = _civicrm_api3_api_resolve_alias($apiRequest['entity'], $apiRequest['params']['field']);
275 if (!$fieldName) {
276 return civicrm_api3_create_error("The field '{$apiRequest['params']['field']}' doesn't exist.");
277 }
278 // Validate 'context' from params
279 $context = CRM_Utils_Array::value('context', $apiRequest['params']);
280 CRM_Core_DAO::buildOptionsContext($context);
281 unset($apiRequest['params']['context'], $apiRequest['params']['field']);
282
283 $baoName = _civicrm_api3_get_BAO($apiRequest['entity']);
284 $options = $baoName::buildOptions($fieldName, $context, $apiRequest['params']);
285 if ($options === FALSE) {
286 return civicrm_api3_create_error("The field '{$fieldName}' has no associated option list.");
287 }
288 // Support 'sequential' output as a non-associative array
289 if (!empty($apiRequest['params']['sequential'])) {
290 $options = CRM_Utils_Array::makeNonAssociative($options);
291 }
292 return civicrm_api3_create_success($options, $apiRequest['params'], $apiRequest['entity'], 'getoptions');
293 }
294
295 /**
296 * Function fills the 'options' array on the metadata returned by getfields if
297 * 1) the param option 'get_options' is defined - e.g. $params['options']['get_options'] => array('custom_1)
298 * (this is passed in as the $fieldsToResolve array)
299 * 2) the field is a pseudoconstant and is NOT an FK
300 * - the reason for this is that checking / transformation is done on pseudoconstants but
301 * - if the field is an FK then mysql will enforce the data quality (& we have handling on failure)
302 * @todo - if may be we should define a 'resolve' key on the pseudoconstant for when these rules are not fine enough
303 *
304 * This function is only split out for the purpose of code clarity / comment block documentation
305 *
306 * @param array $metadata
307 * The array of metadata that will form the result of the getfields function.
308 * @param $apiRequest
309 * @param string $fieldname
310 * Field currently being processed.
311 * @param array $fieldSpec
312 * Metadata for that field.
313 * @param array $fieldsToResolve
314 * Anny field resolutions specifically requested.
315 */
316 function _civicrm_api3_generic_get_metadata_options(&$metadata, $apiRequest, $fieldname, $fieldSpec, $fieldsToResolve){
317 if (empty($fieldSpec['pseudoconstant']) && empty($fieldSpec['option_group_id'])) {
318 return;
319 }
320
321 if (!empty($metadata[$fieldname]['options']) || (!in_array($fieldname, $fieldsToResolve) && !in_array('all', $fieldsToResolve))) {
322 return;
323 }
324
325 $options = civicrm_api($apiRequest['entity'], 'getoptions', array('version' => 3, 'field' => $fieldname, 'sequential' => !empty($apiRequest['params']['sequential'])));
326 if (is_array(CRM_Utils_Array::value('values', $options))) {
327 $metadata[$fieldname]['options'] = $options['values'];
328 }
329 }