3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
29 * @package CiviCRM_APIv3
33 * Get information about fields for a given api request.
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
43 * @param array $apiRequest
44 * Api request as an array. Keys are.
48 * - function: callback (mixed)
49 * - params: array, varies
54 function civicrm_api3_generic_getfields($apiRequest) {
55 static $results = array();
56 if ((CRM_Utils_Array
::value('cache_clear', $apiRequest['params']))) {
58 // we will also clear pseudoconstants here - should potentially be moved to relevant BAO classes
59 CRM_Core_PseudoConstant
::flush();
60 if (!empty($apiRequest['params']['fieldname'])) {
61 CRM_Utils_PseudoConstant
::flushConstant($apiRequest['params']['fieldname']);
63 if (!empty($apiRequest['params']['option_group_id'])) {
64 $optionGroupName = civicrm_api('option_group', 'getvalue', array(
66 'id' => $apiRequest['params']['option_group_id'],
69 if (is_string($optionGroupName)) {
70 CRM_Utils_PseudoConstant
::flushConstant(_civicrm_api_get_camel_name($optionGroupName));
74 $entity = _civicrm_api_get_camel_name($apiRequest['entity']);
75 $lcase_entity = _civicrm_api_get_entity_name_from_camel($entity);
76 $subentity = CRM_Utils_Array
::value('contact_type', $apiRequest['params']);
77 $action = strtolower(CRM_Utils_Array
::value('action', $apiRequest['params']));
78 $sequential = empty($apiRequest['params']) ?
0 : 1;
79 $apiOptions = CRM_Utils_Array
::value('options', $apiRequest['params'], array());
80 if (!$action ||
$action == 'getvalue' ||
$action == 'getcount') {
83 // determines whether to use unique field names - seem comment block above
85 if (empty($apiOptions) && isset($results[$entity . $subentity]) && isset($action, $results[$entity . $subentity])
86 && isset($action, $results[$entity . $subentity][$sequential])) {
87 return $results[$entity . $subentity][$action][$sequential];
89 // defaults based on data model and API policy
92 $values = _civicrm_api_get_fields($entity, FALSE, $apiRequest['params']);
93 return civicrm_api3_create_success($values, $apiRequest['params'], $entity, 'getfields');
102 $metadata = _civicrm_api_get_fields($apiRequest['entity'], $unique, $apiRequest['params']);
103 if (empty($metadata['id'])) {
104 // if id is not set we will set it eg. 'id' from 'case_id', case_id will be an alias
105 if (!empty($metadata[strtolower($apiRequest['entity']) . '_id'])) {
106 $metadata['id'] = $metadata[$lcase_entity . '_id'];
107 unset($metadata[$lcase_entity . '_id']);
108 $metadata['id']['api.aliases'] = array($lcase_entity . '_id');
112 // really the preference would be to set the unique name in the xml
113 // question is which is a less risky fix this close to a release - setting in xml for the known failure
114 // (note) or setting for all api where fields is returning 'id' & we want to accept 'note_id' @ the api layer
115 // nb we don't officially accept note_id anyway - rationale here is more about centralising a now-tested
117 $metadata['id']['api.aliases'] = array($lcase_entity . '_id');
124 'title' => $entity . ' ID',
127 'api.aliases' => array($lcase_entity . '_id'),
128 'type' => CRM_Utils_Type
::T_INT
,
136 'title' => 'Field name',
141 'title' => 'Context',
147 // oddballs are on their own
151 // find any supplemental information
152 $hypApiRequest = array('entity' => $apiRequest['entity'], 'action' => $action, 'version' => $apiRequest['version']);
154 list ($apiProvider, $hypApiRequest) = \Civi\Core\Container
::singleton()->get('civi_api_kernel')->resolve($hypApiRequest);
155 if (isset($hypApiRequest['function'])) {
156 $helper = '_' . $hypApiRequest['function'] . '_spec';
159 // not implemented MagicFunctionProvider
163 catch (\Civi\API\Exception\NotImplementedException
$e) {
166 if (function_exists($helper)) {
168 $helper($metadata, $apiRequest);
171 $fieldsToResolve = (array) CRM_Utils_Array
::value('get_options', $apiOptions, array());
173 foreach ($metadata as $fieldname => $fieldSpec) {
174 // Ensure 'name' is set
175 if (!isset($fieldSpec['name'])) {
176 $metadata[$fieldname]['name'] = $fieldname;
178 _civicrm_api3_generic_get_metadata_options($metadata, $apiRequest, $fieldname, $fieldSpec, $fieldsToResolve);
181 $results[$entity][$action][$sequential] = civicrm_api3_create_success($metadata, $apiRequest['params'], $entity, 'getfields');
182 return $results[$entity][$action][$sequential];
186 * API return function to reformat results as count.
188 * @param array $apiRequest
189 * Api request as an array. Keys are.
191 * @throws API_Exception
195 function civicrm_api3_generic_getcount($apiRequest) {
196 $apiRequest['params']['options']['is_count'] = TRUE;
197 $result = civicrm_api($apiRequest['entity'], 'get', $apiRequest['params']);
198 if (is_numeric(CRM_Utils_Array
::value('values', $result))) {
199 return (int) $result['values'];
201 if (!isset($result['count'])) {
202 throw new API_Exception(ts('Unexpected result from getcount') . print_r($result, TRUE));
204 return $result['count'];
208 * API return function to reformat results as single result.
210 * @param array $apiRequest
211 * Api request as an array. Keys are.
216 function civicrm_api3_generic_getsingle($apiRequest) {
217 // So the first entity is always result['values'][0].
218 $apiRequest['params']['sequential'] = 1;
219 $result = civicrm_api($apiRequest['entity'], 'get', $apiRequest['params']);
220 if ($result['is_error'] !== 0) {
223 if ($result['count'] === 1) {
224 return $result['values'][0];
226 if ($result['count'] !== 1) {
227 return civicrm_api3_create_error("Expected one " . $apiRequest['entity'] . " but found " . $result['count'], array('count' => $result['count']));
229 return civicrm_api3_create_error("Undefined behavior");
233 * API return function to reformat results as single value.
235 * @param array $apiRequest
236 * Api request as an array. Keys are.
241 function civicrm_api3_generic_getvalue($apiRequest) {
242 $apiRequest['params']['sequential'] = 1;
243 $result = civicrm_api($apiRequest['entity'], 'get', $apiRequest['params']);
244 if ($result['is_error'] !== 0) {
247 if ($result['count'] !== 1) {
248 $result = civicrm_api3_create_error("Expected one " . $apiRequest['entity'] . " but found " . $result['count'], array('count' => $result['count']));
252 // we only take "return=" as valid options
253 if (!empty($apiRequest['params']['return'])) {
254 if (!isset($result['values'][0][$apiRequest['params']['return']])) {
255 return civicrm_api3_create_error("field " . $apiRequest['params']['return'] . " unset or not existing", array('invalid_field' => $apiRequest['params']['return']));
258 return $result['values'][0][$apiRequest['params']['return']];
261 return civicrm_api3_create_error("missing param return=field you want to read the value of", array('error_type' => 'mandatory_missing', 'missing_param' => 'return'));
265 * Get count of contact references.
267 * @param array $params
269 function _civicrm_api3_generic_getrefcount_spec(&$params) {
270 $params['id']['api.required'] = 1;
271 $params['id']['title'] = 'Entity ID';
275 * API to determine if a record is in-use.
277 * @param array $apiRequest
278 * Api request as an array.
280 * @throws API_Exception
282 * API result (int 0 or 1)
284 function civicrm_api3_generic_getrefcount($apiRequest) {
285 $entityToClassMap = CRM_Core_DAO_AllCoreTables
::daoToClass();
286 if (!isset($entityToClassMap[$apiRequest['entity']])) {
287 throw new API_Exception("The entity '{$apiRequest['entity']}' is unknown or unsupported by 'getrefcount'. Consider implementing this API.", 'getrefcount_unsupported');
289 $daoClass = $entityToClassMap[$apiRequest['entity']];
291 /* @var $dao CRM_Core_DAO */
292 $dao = new $daoClass();
293 $dao->id
= $apiRequest['params']['id'];
294 if ($dao->find(TRUE)) {
295 return civicrm_api3_create_success($dao->getReferenceCounts());
298 return civicrm_api3_create_success(array());
303 * API wrapper for replace function.
305 * @param array $apiRequest
306 * Api request as an array. Keys are.
311 function civicrm_api3_generic_replace($apiRequest) {
312 return _civicrm_api3_generic_replace($apiRequest['entity'], $apiRequest['params']);
316 * API wrapper for getoptions function.
318 * @param array $apiRequest
319 * Api request as an array.
324 function civicrm_api3_generic_getoptions($apiRequest) {
326 $fieldName = _civicrm_api3_api_resolve_alias($apiRequest['entity'], $apiRequest['params']['field']);
328 return civicrm_api3_create_error("The field '{$apiRequest['params']['field']}' doesn't exist.");
330 // Validate 'context' from params
331 $context = CRM_Utils_Array
::value('context', $apiRequest['params']);
332 CRM_Core_DAO
::buildOptionsContext($context);
333 unset($apiRequest['params']['context'], $apiRequest['params']['field']);
335 $baoName = _civicrm_api3_get_BAO($apiRequest['entity']);
336 $options = $baoName::buildOptions($fieldName, $context, $apiRequest['params']);
337 if ($options === FALSE) {
338 return civicrm_api3_create_error("The field '{$fieldName}' has no associated option list.");
340 // Support 'sequential' output as a non-associative array
341 if (!empty($apiRequest['params']['sequential'])) {
342 $options = CRM_Utils_Array
::makeNonAssociative($options);
344 return civicrm_api3_create_success($options, $apiRequest['params'], $apiRequest['entity'], 'getoptions');
350 * Function fills the 'options' array on the metadata returned by getfields if
351 * 1) the param option 'get_options' is defined - e.g. $params['options']['get_options'] => array('custom_1)
352 * (this is passed in as the $fieldsToResolve array)
353 * 2) the field is a pseudoconstant and is NOT an FK
354 * - the reason for this is that checking / transformation is done on pseudoconstants but
355 * - if the field is an FK then mysql will enforce the data quality (& we have handling on failure)
356 * @todo - if may be we should define a 'resolve' key on the pseudoconstant for when these rules are not fine enough
358 * This function is only split out for the purpose of code clarity / comment block documentation
360 * @param array $metadata
361 * The array of metadata that will form the result of the getfields function.
362 * @param array $apiRequest
363 * @param string $fieldname
364 * Field currently being processed.
365 * @param array $fieldSpec
366 * Metadata for that field.
367 * @param array $fieldsToResolve
368 * Anny field resolutions specifically requested.
370 function _civicrm_api3_generic_get_metadata_options(&$metadata, $apiRequest, $fieldname, $fieldSpec, $fieldsToResolve) {
371 if (empty($fieldSpec['pseudoconstant']) && empty($fieldSpec['option_group_id'])) {
375 if (!empty($metadata[$fieldname]['options']) ||
(!in_array($fieldname, $fieldsToResolve) && !in_array('all', $fieldsToResolve))) {
379 $options = civicrm_api($apiRequest['entity'], 'getoptions', array('version' => 3, 'field' => $fieldname, 'sequential' => !empty($apiRequest['params']['sequential'])));
380 if (is_array(CRM_Utils_Array
::value('values', $options))) {
381 $metadata[$fieldname]['options'] = $options['values'];