Ian province abbreviation patch - issue 724
[civicrm-core.git] / api / v3 / Generic.php
... / ...
CommitLineData
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28/**
29 * @package CiviCRM_APIv3
30 */
31
32/**
33 * Get information about fields for a given api request.
34 *
35 * Getfields information is used for documentation, validation, default setting
36 * We first query the scheme using the $dao->fields function & then augment
37 * that information by calling the _spec functions that apply to the relevant function
38 * Note that we use 'unique' field names as described in the xml/schema files
39 * for get requests & just field name for create. This is because some get functions
40 * access multiple objects e.g. contact api accesses is_deleted from the activity
41 * table & from the contact table
42 *
43 * @param array $apiRequest
44 * Api request as an array. Keys are.
45 * - entity: string
46 * - action: string
47 * - version: string
48 * - function: callback (mixed)
49 * - params: array, varies
50 *
51 * @param bool $unique
52 * Determines whether to key by unique field names (only affects get-type) actions
53 *
54 * @return array
55 * API success object
56 */
57function civicrm_api3_generic_getfields($apiRequest, $unique = TRUE) {
58 static $results = array();
59 if ((CRM_Utils_Array::value('cache_clear', $apiRequest['params']))) {
60 $results = array();
61 // we will also clear pseudoconstants here - should potentially be moved to relevant BAO classes
62 CRM_Core_PseudoConstant::flush();
63 if (!empty($apiRequest['params']['fieldname'])) {
64 CRM_Utils_PseudoConstant::flushConstant($apiRequest['params']['fieldname']);
65 }
66 if (!empty($apiRequest['params']['option_group_id'])) {
67 $optionGroupName = civicrm_api('option_group', 'getvalue', array(
68 'version' => 3,
69 'id' => $apiRequest['params']['option_group_id'],
70 'return' => 'name',
71 ));
72 if (is_string($optionGroupName)) {
73 CRM_Utils_PseudoConstant::flushConstant(_civicrm_api_get_camel_name($optionGroupName));
74 }
75 }
76 }
77 $entity = $apiRequest['entity'];
78 $lowercase_entity = _civicrm_api_get_entity_name_from_camel($entity);
79 $subentity = CRM_Utils_Array::value('contact_type', $apiRequest['params']);
80 $action = CRM_Utils_Array::value('action', $apiRequest['params']);
81 $sequential = empty($apiRequest['params']['sequential']) ? 0 : 1;
82 $apiRequest['params']['options'] = CRM_Utils_Array::value('options', $apiRequest['params'], array());
83 $optionsToResolve = (array) CRM_Utils_Array::value('get_options', $apiRequest['params']['options'], array());
84
85 if (!$action || $action == 'getvalue' || $action == 'getcount') {
86 $action = 'get';
87 }
88 // If no options, return results from cache
89 if (!$apiRequest['params']['options'] && isset($results[$entity . $subentity]) && isset($action, $results[$entity . $subentity])
90 && isset($action, $results[$entity . $subentity][$sequential])) {
91 return $results[$entity . $subentity][$action][$sequential];
92 }
93 // defaults based on data model and API policy
94 switch ($action) {
95 case 'getfields':
96 $values = _civicrm_api_get_fields($entity, FALSE, $apiRequest['params']);
97 return civicrm_api3_create_success($values, $apiRequest['params'], $entity, 'getfields');
98
99 case 'create':
100 case 'update':
101 case 'replace':
102 $unique = FALSE;
103 case 'get':
104 case 'getsingle':
105 case 'getcount':
106 case 'getstat':
107 $metadata = _civicrm_api_get_fields($apiRequest['entity'], $unique, $apiRequest['params']);
108 if (empty($metadata['id'])) {
109 // if id is not set we will set it eg. 'id' from 'case_id', case_id will be an alias
110 if (!empty($metadata[strtolower($apiRequest['entity']) . '_id'])) {
111 $metadata['id'] = $metadata[$lowercase_entity . '_id'];
112 unset($metadata[$lowercase_entity . '_id']);
113 $metadata['id']['api.aliases'] = array($lowercase_entity . '_id');
114 }
115 }
116 else {
117 // really the preference would be to set the unique name in the xml
118 // question is which is a less risky fix this close to a release - setting in xml for the known failure
119 // (note) or setting for all api where fields is returning 'id' & we want to accept 'note_id' @ the api layer
120 // nb we don't officially accept note_id anyway - rationale here is more about centralising a now-tested
121 // inconsistency
122 $metadata['id']['api.aliases'] = array($lowercase_entity . '_id');
123 }
124 break;
125
126 case 'delete':
127 $metadata = array(
128 'id' => array(
129 'title' => $entity . ' ID',
130 'api.required' => 1,
131 'api.aliases' => array($lowercase_entity . '_id'),
132 'type' => CRM_Utils_Type::T_INT,
133 ));
134 break;
135
136 // Note: adding setvalue case here instead of in a generic spec function because
137 // some APIs override the generic setvalue fn which causes the generic spec to be overlooked.
138 case 'setvalue':
139 $metadata = array(
140 'field' => array(
141 'title' => 'Field name',
142 'api.required' => 1,
143 'type' => CRM_Utils_Type::T_STRING,
144 ),
145 'id' => array(
146 'title' => $entity . ' ID',
147 'api.required' => 1,
148 'type' => CRM_Utils_Type::T_INT,
149 ),
150 'value' => array(
151 'title' => 'Value',
152 'description' => "Field value to set",
153 'api.required' => 1,
154 ),
155 );
156 if (array_intersect(array('all', 'field'), $optionsToResolve)) {
157 $options = civicrm_api3_generic_getfields(array('entity' => $entity, array('params' => array('action' => 'create'))));
158 $metadata['field']['options'] = CRM_Utils_Array::collect('title', $options['values']);
159 }
160 break;
161
162 default:
163 // oddballs are on their own
164 $metadata = array();
165 }
166
167 // Normalize this for the sake of spec funcions
168 $apiRequest['params']['options']['get_options'] = $optionsToResolve;
169
170 // find any supplemental information
171 $hypApiRequest = array('entity' => $apiRequest['entity'], 'action' => $action, 'version' => $apiRequest['version']);
172 try {
173 list ($apiProvider, $hypApiRequest) = \Civi\Core\Container::singleton()->get('civi_api_kernel')->resolve($hypApiRequest);
174 if (isset($hypApiRequest['function'])) {
175 $helper = '_' . $hypApiRequest['function'] . '_spec';
176 }
177 else {
178 // not implemented MagicFunctionProvider
179 $helper = NULL;
180 }
181 }
182 catch (\Civi\API\Exception\NotImplementedException $e) {
183 $helper = NULL;
184 }
185 if (function_exists($helper)) {
186 // alter
187 $helper($metadata, $apiRequest);
188 }
189
190 foreach ($metadata as $fieldname => $fieldSpec) {
191 // Ensure 'name' is set
192 if (!isset($fieldSpec['name'])) {
193 $metadata[$fieldname]['name'] = $fieldname;
194 }
195 _civicrm_api3_generic_get_metadata_options($metadata, $apiRequest, $fieldname, $fieldSpec);
196
197 // Convert options to "sequential" format
198 if ($sequential && !empty($metadata[$fieldname]['options'])) {
199 $metadata[$fieldname]['options'] = CRM_Utils_Array::makeNonAssociative($metadata[$fieldname]['options']);
200 }
201 }
202
203 $results[$entity][$action][$sequential] = civicrm_api3_create_success($metadata, $apiRequest['params'], $entity, 'getfields');
204 return $results[$entity][$action][$sequential];
205}
206
207/**
208 * Get metadata for a field
209 *
210 * @param array $apiRequest
211 *
212 * @return array
213 * API success object
214 */
215function civicrm_api3_generic_getfield($apiRequest) {
216 $params = $apiRequest['params'];
217 $sequential = !empty($params['sequential']);
218 $fieldName = _civicrm_api3_api_resolve_alias($apiRequest['entity'], $params['name'], $params['action']);
219 if (!$fieldName) {
220 return civicrm_api3_create_error("The field '{$params['name']}' doesn't exist.");
221 }
222 // Turn off sequential to make the field easier to find
223 $apiRequest['params']['sequential'] = 0;
224 if (isset($params['get_options'])) {
225 $apiRequest['params']['options']['get_options_context'] = $params['get_options'];
226 $apiRequest['params']['options']['get_options'] = $fieldName;
227 }
228 $result = civicrm_api3_generic_getfields($apiRequest, FALSE);
229 $result = $result['values'][$fieldName];
230 // Fix sequential options since we forced it off
231 if ($sequential && !empty($result['options'])) {
232 $result['options'] = CRM_Utils_Array::makeNonAssociative($result['options']);
233 }
234 return civicrm_api3_create_success($result, $apiRequest['params'], $apiRequest['entity'], 'getfield');
235}
236
237
238function _civicrm_api3_generic_getfield_spec(&$params, $apiRequest) {
239 $params = array(
240 'name' => array(
241 'title' => 'Field name',
242 'description' => 'Name or alias of field to lookup',
243 'api.required' => 1,
244 'type' => CRM_Utils_Type::T_STRING,
245 ),
246 'action' => array(
247 'title' => 'API Action',
248 'api.required' => 1,
249 'type' => CRM_Utils_Type::T_STRING,
250 'api.aliases' => array('api_action'),
251 ),
252 'get_options' => array(
253 'title' => 'Get Options',
254 'description' => 'Context for which to get field options, or null to skip fetching options.',
255 'type' => CRM_Utils_Type::T_STRING,
256 'options' => CRM_Core_DAO::buildOptionsContext(),
257 'api.aliases' => array('context'),
258 ),
259 );
260 // Add available options to these params if requested
261 if (array_intersect(array('all', 'action'), $apiRequest['params']['options']['get_options'])) {
262 $actions = civicrm_api3($apiRequest['entity'], 'getactions');
263 $actions = array_combine($actions['values'], $actions['values']);
264 // Let's not go meta-crazy
265 CRM_Utils_Array::remove($actions, 'getactions', 'getoptions', 'getfields', 'getfield', 'getcount', 'getrefcount', 'getsingle', 'getlist', 'getvalue', 'setvalue', 'update');
266 $params['action']['options'] = $actions;
267 }
268}
269
270/**
271 * API return function to reformat results as count.
272 *
273 * @param array $apiRequest
274 * Api request as an array. Keys are.
275 *
276 * @throws API_Exception
277 * @return int
278 * count of results
279 */
280function civicrm_api3_generic_getcount($apiRequest) {
281 $apiRequest['params']['options']['is_count'] = TRUE;
282 $result = civicrm_api($apiRequest['entity'], 'get', $apiRequest['params']);
283 if (is_numeric(CRM_Utils_Array::value('values', $result))) {
284 return (int) $result['values'];
285 }
286 if (!isset($result['count'])) {
287 throw new API_Exception(ts('Unexpected result from getcount') . print_r($result, TRUE));
288 }
289 return $result['count'];
290}
291
292/**
293 * API return function to reformat results as single result.
294 *
295 * @param array $apiRequest
296 * Api request as an array. Keys are.
297 *
298 * @return int
299 * count of results
300 */
301function civicrm_api3_generic_getsingle($apiRequest) {
302 // So the first entity is always result['values'][0].
303 $apiRequest['params']['sequential'] = 1;
304 $result = civicrm_api($apiRequest['entity'], 'get', $apiRequest['params']);
305 if ($result['is_error'] !== 0) {
306 return $result;
307 }
308 if ($result['count'] === 1) {
309 return $result['values'][0];
310 }
311 if ($result['count'] !== 1) {
312 return civicrm_api3_create_error("Expected one " . $apiRequest['entity'] . " but found " . $result['count'], array('count' => $result['count']));
313 }
314 return civicrm_api3_create_error("Undefined behavior");
315}
316
317/**
318 * API return function to reformat results as single value.
319 *
320 * @param array $apiRequest
321 * Api request as an array. Keys are.
322 *
323 * @return int
324 * count of results
325 */
326function civicrm_api3_generic_getvalue($apiRequest) {
327 $apiRequest['params']['sequential'] = 1;
328 $result = civicrm_api($apiRequest['entity'], 'get', $apiRequest['params']);
329 if ($result['is_error'] !== 0) {
330 return $result;
331 }
332 if ($result['count'] !== 1) {
333 $result = civicrm_api3_create_error("Expected one " . $apiRequest['entity'] . " but found " . $result['count'], array('count' => $result['count']));
334 return $result;
335 }
336
337 // we only take "return=" as valid options
338 if (!empty($apiRequest['params']['return'])) {
339 if (!isset($result['values'][0][$apiRequest['params']['return']])) {
340 return civicrm_api3_create_error("field " . $apiRequest['params']['return'] . " unset or not existing", array('invalid_field' => $apiRequest['params']['return']));
341 }
342
343 return $result['values'][0][$apiRequest['params']['return']];
344 }
345
346 return civicrm_api3_create_error("missing param return=field you want to read the value of", array('error_type' => 'mandatory_missing', 'missing_param' => 'return'));
347}
348
349/**
350 * Get count of contact references.
351 *
352 * @param array $params
353 */
354function _civicrm_api3_generic_getrefcount_spec(&$params, $apiRequest) {
355 $params['id']['api.required'] = 1;
356 $params['id']['title'] = $apiRequest['entity'] . ' ID';
357 $params['id']['type'] = CRM_Utils_Type::T_INT;
358}
359
360/**
361 * API to determine if a record is in-use.
362 *
363 * @param array $apiRequest
364 * Api request as an array.
365 *
366 * @throws API_Exception
367 * @return array
368 * API result (int 0 or 1)
369 */
370function civicrm_api3_generic_getrefcount($apiRequest) {
371 $entityToClassMap = CRM_Core_DAO_AllCoreTables::daoToClass();
372 if (!isset($entityToClassMap[$apiRequest['entity']])) {
373 throw new API_Exception("The entity '{$apiRequest['entity']}' is unknown or unsupported by 'getrefcount'. Consider implementing this API.", 'getrefcount_unsupported');
374 }
375 $daoClass = $entityToClassMap[$apiRequest['entity']];
376
377 /* @var $dao CRM_Core_DAO */
378 $dao = new $daoClass();
379 $dao->id = $apiRequest['params']['id'];
380 if ($dao->find(TRUE)) {
381 return civicrm_api3_create_success($dao->getReferenceCounts());
382 }
383 else {
384 return civicrm_api3_create_success(array());
385 }
386}
387
388/**
389 * API wrapper for replace function.
390 *
391 * @param array $apiRequest
392 * Api request as an array. Keys are.
393 *
394 * @return int
395 * count of results
396 */
397function civicrm_api3_generic_replace($apiRequest) {
398 return _civicrm_api3_generic_replace($apiRequest['entity'], $apiRequest['params']);
399}
400
401/**
402 * API wrapper for getoptions function.
403 *
404 * @param array $apiRequest
405 * Api request as an array.
406 *
407 * @return array
408 * Array of results
409 */
410function civicrm_api3_generic_getoptions($apiRequest) {
411 // Resolve aliases.
412 $fieldName = _civicrm_api3_api_resolve_alias($apiRequest['entity'], $apiRequest['params']['field']);
413 if (!$fieldName) {
414 return civicrm_api3_create_error("The field '{$apiRequest['params']['field']}' doesn't exist.");
415 }
416 // Validate 'context' from params
417 $context = CRM_Utils_Array::value('context', $apiRequest['params']);
418 CRM_Core_DAO::buildOptionsContext($context);
419 unset($apiRequest['params']['context'], $apiRequest['params']['field']);
420
421 $baoName = _civicrm_api3_get_BAO($apiRequest['entity']);
422 $options = $baoName::buildOptions($fieldName, $context, $apiRequest['params']);
423 if ($options === FALSE) {
424 return civicrm_api3_create_error("The field '{$fieldName}' has no associated option list.");
425 }
426 // Support 'sequential' output as a non-associative array
427 if (!empty($apiRequest['params']['sequential'])) {
428 $options = CRM_Utils_Array::makeNonAssociative($options);
429 }
430 return civicrm_api3_create_success($options, $apiRequest['params'], $apiRequest['entity'], 'getoptions');
431}
432
433/**
434 * Provide metadata for this generic action
435 *
436 * @param $params
437 * @param $apiRequest
438 */
439function _civicrm_api3_generic_getoptions_spec(&$params, $apiRequest) {
440 $params += array(
441 'field' => array(
442 'title' => 'Field name',
443 'api.required' => 1,
444 'type' => CRM_Utils_Type::T_STRING,
445 ),
446 'context' => array(
447 'title' => 'Context',
448 'type' => CRM_Utils_Type::T_STRING,
449 'options' => CRM_Core_DAO::buildOptionsContext(),
450 ),
451 );
452
453 // Add available fields if requested
454 if (array_intersect(array('all', 'field'), $apiRequest['params']['options']['get_options'])) {
455 $fields = civicrm_api3_generic_getfields(array('entity' => $apiRequest['entity'], array('params' => array('action' => 'create'))));
456 $params['field']['options'] = array();
457 foreach ($fields['values'] as $name => $field) {
458 if (isset($field['pseudoconstant']) || CRM_Utils_Array::value('type', $field) == CRM_Utils_Type::T_BOOLEAN) {
459 $params['field']['options'][$name] = CRM_Utils_Array::value('title', $field, $name);
460 }
461 }
462 }
463}
464
465/**
466 * Get metadata.
467 *
468 * Function fills the 'options' array on the metadata returned by getfields if
469 * 1) the param option 'get_options' is defined - e.g. $params['options']['get_options'] => array('custom_1)
470 * (this is passed in as the $fieldsToResolve array)
471 * 2) the field is a pseudoconstant and is NOT an FK
472 * - the reason for this is that checking / transformation is done on pseudoconstants but
473 * - if the field is an FK then mysql will enforce the data quality (& we have handling on failure)
474 * @todo - if may be we should define a 'resolve' key on the pseudoconstant for when these rules are not fine enough
475 *
476 * This function is only split out for the purpose of code clarity / comment block documentation
477 *
478 * @param array $metadata
479 * The array of metadata that will form the result of the getfields function.
480 * @param array $apiRequest
481 * @param string $fieldname
482 * Field currently being processed.
483 * @param array $fieldSpec
484 * Metadata for that field.
485 */
486function _civicrm_api3_generic_get_metadata_options(&$metadata, $apiRequest, $fieldname, $fieldSpec) {
487 if (empty($fieldSpec['pseudoconstant']) && empty($fieldSpec['option_group_id'])) {
488 return;
489 }
490
491 $fieldsToResolve = $apiRequest['params']['options']['get_options'];
492
493 if (!empty($metadata[$fieldname]['options']) || (!in_array($fieldname, $fieldsToResolve) && !in_array('all', $fieldsToResolve))) {
494 return;
495 }
496
497 // Allow caller to specify context
498 $context = CRM_Utils_Array::value('get_options_context', $apiRequest['params']['options']);
499 // Default to api action if it is a supported context.
500 if (!$context) {
501 $action = CRM_Utils_Array::value('action', $apiRequest['params']);
502 $contexts = CRM_Core_DAO::buildOptionsContext();
503 if (isset($contexts[$action])) {
504 $context = $action;
505 }
506 }
507
508 $options = civicrm_api($apiRequest['entity'], 'getoptions', array('version' => 3, 'field' => $fieldname, 'context' => $context));
509 if (is_array(CRM_Utils_Array::value('values', $options))) {
510 $metadata[$fieldname]['options'] = $options['values'];
511 }
512}