remove trailing whitespace
[civicrm-core.git] / api / v3 / utils.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
232624b1 4 | CiviCRM version 4.4 |
6a488035
TO
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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 * File for CiviCRM APIv3 utilitity functions
30 *
31 * @package CiviCRM_APIv3
32 * @subpackage API_utils
33 *
34 * @copyright CiviCRM LLC (c) 2004-2013
35 * @version $Id: utils.php 30879 2010-11-22 15:45:55Z shot $
36 *
37 */
38
39/**
40 * Initialize CiviCRM - should be run at the start of each API function
41 */
42function _civicrm_api3_initialize() {
22fd1690
ARW
43 require_once 'CRM/Core/ClassLoader.php';
44 CRM_Core_ClassLoader::singleton()->register();
45 CRM_Core_Config::singleton();
46}
6a488035 47
11e09c59 48/**
6a488035
TO
49 * Wrapper Function for civicrm_verify_mandatory to make it simple to pass either / or fields for checking
50 *
44248b7e 51 * @param array $params array of fields to checkl
6a488035 52 * @param array $daoName string DAO to check for required fields (create functions only)
26728d3f
E
53 * @param array $keyoptions
54 *
55 * @internal param array $keys list of required fields options. One of the options is required
6a488035 56 * @return null or throws error if there the required fields not present
6a488035 57 * @
6a488035
TO
58 */
59function civicrm_api3_verify_one_mandatory($params, $daoName = NULL, $keyoptions = array(
60 )) {
61 $keys = array(array());
62 foreach ($keyoptions as $key) {
63 $keys[0][] = $key;
64 }
65 civicrm_api3_verify_mandatory($params, $daoName, $keys);
66}
67
11e09c59 68/**
6a488035
TO
69 * Function to check mandatory fields are included
70 *
71 * @param array $params array of fields to check
72 * @param array $daoName string DAO to check for required fields (create functions only)
73 * @param array $keys list of required fields. A value can be an array denoting that either this or that is required.
74 * @param bool $verifyDAO
75 *
916b48b6 76 * @throws API_Exception
6a488035
TO
77 * @return null or throws error if there the required fields not present
78 *
79 * @todo see notes on _civicrm_api3_check_required_fields regarding removing $daoName param
80 */
81function civicrm_api3_verify_mandatory($params, $daoName = NULL, $keys = array(
82 ), $verifyDAO = TRUE) {
83
84 $unmatched = array();
85 if ($daoName != NULL && $verifyDAO && empty($params['id'])) {
86 $unmatched = _civicrm_api3_check_required_fields($params, $daoName, TRUE);
87 if (!is_array($unmatched)) {
88 $unmatched = array();
89 }
90 }
91
92 if (!empty($params['id'])) {
93 $keys = array('version');
94 }
95 else {
96 if (!in_array('version', $keys)) {
97 // required from v3 onwards
98 $keys[] = 'version';
99 }
100 }
101 foreach ($keys as $key) {
102 if (is_array($key)) {
103 $match = 0;
104 $optionset = array();
105 foreach ($key as $subkey) {
106 if (!array_key_exists($subkey, $params) || empty($params[$subkey])) {
107 $optionset[] = $subkey;
108 }
109 else {
110 // as long as there is one match then we don't need to rtn anything
111 $match = 1;
112 }
113 }
114 if (empty($match) && !empty($optionset)) {
115 $unmatched[] = "one of (" . implode(", ", $optionset) . ")";
116 }
117 }
118 else {
5ba3bfc8
CW
119 // Disallow empty values except for the number zero.
120 // TODO: create a utility for this since it's needed in many places
121 if (!array_key_exists($key, $params) || (empty($params[$key]) && $params[$key] !== 0 && $params[$key] !== '0')) {
6a488035
TO
122 $unmatched[] = $key;
123 }
124 }
125 }
126 if (!empty($unmatched)) {
127 throw new API_Exception("Mandatory key(s) missing from params array: " . implode(", ", $unmatched),"mandatory_missing",array("fields"=>$unmatched));
128 }
129}
130
131/**
132 *
6a488035 133 * @param <type> $data
916b48b6 134 * @param array $data
6a488035
TO
135 * @param object $dao DAO / BAO object to be freed here
136 *
916b48b6
VU
137 * @throws API_Exception
138 * @return array <type>
6a488035 139 */
a65e2e55 140function civicrm_api3_create_error($msg, $data = array(), &$dao = NULL) {
6a488035
TO
141 //fix me - $dao should be param 4 & 3 should be $apiRequest
142 if (is_object($dao)) {
143 $dao->free();
144 }
145
146 if (is_array($dao)) {
147 if ($msg == 'DB Error: constraint violation' || substr($msg, 0,9) == 'DB Error:' || $msg == 'DB Error: already exists') {
148 try {
94359f7e 149 $fields = _civicrm_api3_api_getfields($dao);
150 _civicrm_api3_validate_fields($dao['entity'], $dao['action'], $dao['params'], $fields, TRUE);
6a488035
TO
151 }
152 catch(Exception $e) {
153 $msg = $e->getMessage();
154 }
155 }
156 }
157 $data['is_error'] = 1;
158 $data['error_message'] = $msg;
e7c4a581 159 // we will show sql to privelledged user only (not sure of a specific
160 // security hole here but seems sensible - perhaps should apply to the trace as well?
161 if(isset($data['sql']) && CRM_Core_Permission::check('Administer CiviCRM')) {
162 $data['debug_information'] = $data['sql'];
163 }
6a488035
TO
164 if (is_array($dao) && isset($dao['params']) && is_array($dao['params']) && CRM_Utils_Array::value('api.has_parent', $dao['params'])) {
165 $errorCode = empty($data['error_code']) ? 'chained_api_failed' : $data['error_code'];
166 throw new API_Exception('Error in call to ' . $dao['entity'] . '_' . $dao['action'] . ' : ' . $msg, $errorCode, $data);
167 }
168 return $data;
169}
170
171/**
172 * Format array in result output styple
173 *
174 * @param array $values values generated by API operation (the result)
175 * @param array $params parameters passed into API call
176 * @param string $entity the entity being acted on
177 * @param string $action the action passed to the API
178 * @param object $dao DAO object to be freed here
179 * @param array $extraReturnValues additional values to be added to top level of result array(
180 * - this param is currently used for legacy behaviour support
181 *
182 * @return array $result
183 */
184function civicrm_api3_create_success($values = 1, $params = array(
185 ), $entity = NULL, $action = NULL, &$dao = NULL, $extraReturnValues = array()) {
186 $result = array();
187 $result['is_error'] = 0;
188 //lets set the ['id'] field if it's not set & we know what the entity is
189 if (is_array($values) && !empty($entity)) {
190 foreach ($values as $key => $item) {
191 if (empty($item['id']) && !empty($item[$entity . "_id"])) {
192 $values[$key]['id'] = $item[$entity . "_id"];
193 }
a1c68fd2 194 if(!empty($item['financial_type_id'])){
797b807e 195 //4.3 legacy handling
a1c68fd2 196 $values[$key]['contribution_type_id'] = $item['financial_type_id'];
197 }
797b807e 198 if(!empty($item['next_sched_contribution_date'])){
199 // 4.4 legacy handling
200 $values[$key]['next_sched_contribution'] = $item['next_sched_contribution_date'];
201 }
6a488035
TO
202 }
203 }
d8453bed 204
205 if (is_array($params) && !empty($params['debug'])) {
6a488035
TO
206 if (is_string($action) && $action != 'getfields') {
207 $apiFields = civicrm_api($entity, 'getfields', array('version' => 3, 'action' => $action) + $params);
208 }
209 elseif ($action != 'getfields') {
210 $apiFields = civicrm_api($entity, 'getfields', array('version' => 3) + $params);
211 }
212 else {
213 $apiFields = FALSE;
214 }
215
216 $allFields = array();
217 if ($action != 'getfields' && is_array($apiFields) && is_array(CRM_Utils_Array::value('values', $apiFields))) {
218 $allFields = array_keys($apiFields['values']);
219 }
220 $paramFields = array_keys($params);
972322c5 221 $undefined = array_diff($paramFields, $allFields, array_keys($_COOKIE), array('action', 'entity', 'debug', 'version', 'check_permissions', 'IDS_request_uri', 'IDS_user_agent', 'return', 'sequential', 'rowCount', 'option_offset', 'option_limit', 'custom', 'option_sort', 'options'));
6a488035
TO
222 if ($undefined) {
223 $result['undefined_fields'] = array_merge($undefined);
224 }
225 }
226 if (is_object($dao)) {
227 $dao->free();
228 }
229
230 $result['version'] = 3;
231 if (is_array($values)) {
e7c4a581 232 $result['count'] = (int) count($values);
6a488035
TO
233
234 // Convert value-separated strings to array
235 _civicrm_api3_separate_values($values);
236
237 if ($result['count'] == 1) {
238 list($result['id']) = array_keys($values);
239 }
240 elseif (!empty($values['id']) && is_int($values['id'])) {
241 $result['id'] = $values['id'];
242 }
243 }
244 else {
245 $result['count'] = !empty($values) ? 1 : 0;
246 }
247
248 if (is_array($values) && isset($params['sequential']) &&
249 $params['sequential'] == 1
250 ) {
251 $result['values'] = array_values($values);
252 }
253 else {
254 $result['values'] = $values;
255 }
44248b7e 256 if(!empty($params['options']['metadata'])) {
257 // we've made metadata an array but only supporting 'fields' atm
dc5a7701
E
258 if(in_array('fields', $params['options']['metadata'])) {
259 $fields = civicrm_api3($entity, 'getfields', array('action' => $action));
260 $result['metadata']['fields'] = $fields['values'];
261 }
262 }
6a488035
TO
263 return array_merge($result, $extraReturnValues);
264}
11e09c59
TO
265
266/**
6a488035
TO
267 * Load the DAO of the entity
268 */
269function _civicrm_api3_load_DAO($entity) {
270 $dao = _civicrm_api3_get_DAO($entity);
271 if (empty($dao)) {
272 return FALSE;
273 }
6a488035
TO
274 $d = new $dao();
275 return $d;
276}
11e09c59
TO
277
278/**
6a488035 279 * Function to return the DAO of the function or Entity
26728d3f 280 * @param String $name either a function of the api (civicrm_{entity}_create or the entity name
6a488035
TO
281 * return the DAO name to manipulate this function
282 * eg. "civicrm_api3_contact_create" or "Contact" will return "CRM_Contact_BAO_Contact"
26728d3f 283 * @return mixed|string
6a488035
TO
284 */
285function _civicrm_api3_get_DAO($name) {
6a488035
TO
286 if (strpos($name, 'civicrm_api3') !== FALSE) {
287 $last = strrpos($name, '_');
288 // len ('civicrm_api3_') == 13
289 $name = substr($name, 13, $last - 13);
290 }
291
292 if (strtolower($name) == 'individual' || strtolower($name) == 'household' || strtolower($name) == 'organization') {
293 $name = 'Contact';
294 }
295
9da8dc8c 296 //hack to deal with incorrectly named BAO/DAO - see CRM-10859 -
297 // several of these have been removed but am not confident mailing_recipients is
298 // tests so have not tackled.
299 // correct approach for im is unclear
6a488035
TO
300 if($name == 'mailing_recipients' || $name == 'MailingRecipients'){
301 return 'CRM_Mailing_BAO_Recipients';
302 }
303 if(strtolower($name) == 'im'){
304 return 'CRM_Core_BAO_IM';
305 }
4d1d7aca 306 return CRM_Core_DAO_AllCoreTables::getFullName(_civicrm_api_get_camel_name($name, 3));
6a488035
TO
307}
308
11e09c59 309/**
6a488035 310 * Function to return the DAO of the function or Entity
26728d3f 311 * @param String $name is either a function of the api (civicrm_{entity}_create or the entity name
6a488035
TO
312 * return the DAO name to manipulate this function
313 * eg. "civicrm_contact_create" or "Contact" will return "CRM_Contact_BAO_Contact"
26728d3f 314 * @return mixed
6a488035
TO
315 */
316function _civicrm_api3_get_BAO($name) {
317 $dao = _civicrm_api3_get_DAO($name);
5c1174d3
CW
318 if (!$dao) {
319 return NULL;
320 }
d9f036bb 321 $bao = str_replace("DAO", "BAO", $dao);
49e101d0 322 $file = strtr($bao, '_', '/') . '.php';
5c1174d3 323 // Check if this entity actually has a BAO. Fall back on the DAO if not.
49e101d0 324 return stream_resolve_include_path($file) ? $bao : $dao;
6a488035
TO
325}
326
327/**
328 * Recursive function to explode value-separated strings into arrays
329 *
330 */
331function _civicrm_api3_separate_values(&$values) {
332 $sp = CRM_Core_DAO::VALUE_SEPARATOR;
333 foreach ($values as $key => & $value) {
334 if (is_array($value)) {
335 _civicrm_api3_separate_values($value);
336 }
337 elseif (is_string($value)) {
338 if($key == 'case_type_id'){// this is to honor the way case API was originally written
339 $value = trim(str_replace($sp, ',', $value), ',');
340 }
341 elseif (strpos($value, $sp) !== FALSE) {
342 $value = explode($sp, trim($value, $sp));
343 }
344 }
345 }
346}
11e09c59
TO
347
348/**
d4251d65 349 * This is a legacy wrapper for api_store_values which will check the suitable fields using getfields
6a488035
TO
350 * rather than DAO->fields
351 *
352 * Getfields has handling for how to deal with uniquenames which dao->fields doesn't
353 *
354 * Note this is used by BAO type create functions - eg. contribution
355 * @param string $entity
356 * @param array $params
357 * @param array $values
358 */
359function _civicrm_api3_filter_fields_for_bao($entity, &$params, &$values){
360 $fields = civicrm_api($entity,'getfields', array('version' => 3,'action' => 'create'));
361 $fields = $fields['values'];
362 _civicrm_api3_store_values($fields, $params, $values);
363}
364/**
365 *
366 * @param array $fields
367 * @param array $params
368 * @param array $values
369 *
370 * @return Bool $valueFound
371 */
372function _civicrm_api3_store_values(&$fields, &$params, &$values) {
373 $valueFound = FALSE;
374
375 $keys = array_intersect_key($params, $fields);
376 foreach ($keys as $name => $value) {
377 if ($name !== 'id') {
378 $values[$name] = $value;
379 $valueFound = TRUE;
380 }
381 }
382 return $valueFound;
383}
26728d3f 384
6a488035
TO
385/**
386 * The API supports 2 types of get requestion. The more complex uses the BAO query object.
387 * This is a generic function for those functions that call it
388 *
389 * At the moment only called by contact we should extend to contribution &
390 * others that use the query object. Note that this function passes permission information in.
391 * The others don't
392 *
82f7d8b2
EM
393 * * Ideally this would be merged with _civicrm_get_query_object but we need to resolve differences in what the
394 * 2 variants call
26728d3f 395 * @param $entity
6a488035 396 * @param array $params as passed into api get or getcount function
26728d3f 397 * @param array $additional_options
6a488035 398 * @param bool $getCount are we just after the count
26728d3f
E
399 *
400 * @return
401 * @internal param array $options array of options (so we can modify the filter)
6a488035 402 */
53ed8466 403function _civicrm_api3_get_using_query_object($entity, $params, $additional_options = array(), $getCount = NULL){
6a488035
TO
404
405 // Convert id to e.g. contact_id
406 if (empty($params[$entity . '_id']) && isset($params['id'])) {
407 $params[$entity . '_id'] = $params['id'];
408 }
409 unset($params['id']);
410
411 $options = _civicrm_api3_get_options_from_params($params, TRUE);
412
413 $inputParams = array_merge(
414 CRM_Utils_Array::value('input_params', $options, array()),
415 CRM_Utils_Array::value('input_params', $additional_options, array())
416 );
417 $returnProperties = array_merge(
418 CRM_Utils_Array::value('return', $options, array()),
419 CRM_Utils_Array::value('return', $additional_options, array())
420 );
421 if(empty($returnProperties)){
53ed8466 422 $returnProperties = NULL;
6a488035
TO
423 }
424 if(!empty($params['check_permissions'])){
425 // we will filter query object against getfields
426 $fields = civicrm_api($entity, 'getfields', array('version' => 3, 'action' => 'get'));
427 // we need to add this in as earlier in this function 'id' was unset in favour of $entity_id
428 $fields['values'][$entity . '_id'] = array();
429 $varsToFilter = array('returnProperties', 'inputParams');
430 foreach ($varsToFilter as $varToFilter){
431 if(!is_array($$varToFilter)){
432 continue;
433 }
434 //I was going to throw an exception rather than silently filter out - but
435 //would need to diff out of exceptions arr other keys like 'options', 'return', 'api. etcetc
436 //so we are silently ignoring parts of their request
437 //$exceptionsArr = array_diff(array_keys($$varToFilter), array_keys($fields['values']));
438 $$varToFilter = array_intersect_key($$varToFilter, $fields['values']);
439 }
440 }
441 $options = array_merge($options,$additional_options);
442 $sort = CRM_Utils_Array::value('sort', $options, NULL);
443 $offset = CRM_Utils_Array::value('offset', $options, NULL);
444 $limit = CRM_Utils_Array::value('limit', $options, NULL);
445 $smartGroupCache = CRM_Utils_Array::value('smartGroupCache', $params);
446
447 if($getCount){
448 $limit = NULL;
449 $returnProperties = NULL;
450 }
451
452 $newParams = CRM_Contact_BAO_Query::convertFormValues($inputParams);
78c0bfc0 453 foreach ($newParams as &$newParam) {
454 if($newParam[1] == '=' && is_array($newParam[2])) {
455 // we may be looking at an attempt to use the 'IN' style syntax
456 // @todo at time of writing only 'IN' & 'NOT IN' are supported for the array style syntax
457 $sqlFilter = CRM_Core_DAO::createSqlFilter($newParam[0], $params[$newParam[0]], 'String', NULL, TRUE);
458 if($sqlFilter) {
459 $newParam[1] = key($newParam[2]);
460 $newParam[2] = $sqlFilter;
461 }
462 }
463
464 }
6a488035 465 $skipPermissions = CRM_Utils_Array::value('check_permissions', $params)? 0 :1;
78c0bfc0 466
6a488035
TO
467 list($entities, $options) = CRM_Contact_BAO_Query::apiQuery(
468 $newParams,
469 $returnProperties,
470 NULL,
471 $sort,
472 $offset ,
473 $limit,
474 $smartGroupCache,
475 $getCount,
476 $skipPermissions
477 );
478 if ($getCount) { // only return the count of contacts
479 return $entities;
480 }
481
482 return $entities;
483}
11e09c59 484
82f7d8b2
EM
485/**
486 * get dao query object based on input params
487 * Ideally this would be merged with _civicrm_get_using_query_object but we need to resolve differences in what the
488 * 2 variants call
489 *
490 * @param array $params
491 * @param string $mode
492 * @param string $entity
493 * @return CRM_Core_DAO query object
494 */
495function _civicrm_api3_get_query_object($params, $mode, $entity) {
496 $options = _civicrm_api3_get_options_from_params($params, TRUE, $entity, 'get');
497 $sort = CRM_Utils_Array::value('sort', $options, NULL);
498 $offset = CRM_Utils_Array::value('offset', $options);
499 $rowCount = CRM_Utils_Array::value('limit', $options);
500 $inputParams = CRM_Utils_Array::value('input_params', $options, array());
501 $returnProperties = CRM_Utils_Array::value('return', $options, NULL);
502 if (empty($returnProperties)) {
503 $returnProperties = CRM_Contribute_BAO_Query::defaultReturnProperties($mode);
504 }
505
506 $newParams = CRM_Contact_BAO_Query::convertFormValues($inputParams);
507 $query = new CRM_Contact_BAO_Query($newParams, $returnProperties, NULL,
508 FALSE, FALSE, $mode
509 );
510 list($select, $from, $where, $having) = $query->query();
511
512 $sql = "$select $from $where $having";
513
514 if (!empty($sort)) {
515 $sql .= " ORDER BY $sort ";
516 }
517 if(!empty($rowCount)) {
518 $sql .= " LIMIT $offset, $rowCount ";
519 }
520 $dao = CRM_Core_DAO::executeQuery($sql);
521 return array($dao, $query);
522}
523
11e09c59 524/**
6a488035
TO
525 * Function transfers the filters being passed into the DAO onto the params object
526 */
527function _civicrm_api3_dao_set_filter(&$dao, $params, $unique = TRUE, $entity) {
528 $entity = substr($dao->__table, 8);
529
530 $allfields = _civicrm_api3_build_fields_array($dao, $unique);
531
532 $fields = array_intersect(array_keys($allfields), array_keys($params));
533 if (isset($params[$entity . "_id"])) {
534 //if entity_id is set then treat it as ID (will be overridden by id if set)
535 $dao->id = $params[$entity . "_id"];
536 }
3c70d501 537
538 $options = _civicrm_api3_get_options_from_params($params);
6a488035
TO
539 //apply options like sort
540 _civicrm_api3_apply_options_to_dao($params, $dao, $entity);
541
542 //accept filters like filter.activity_date_time_high
543 // std is now 'filters' => ..
544 if (strstr(implode(',', array_keys($params)), 'filter')) {
545 if (isset($params['filters']) && is_array($params['filters'])) {
546 foreach ($params['filters'] as $paramkey => $paramvalue) {
547 _civicrm_api3_apply_filters_to_dao($paramkey, $paramvalue, $dao);
548 }
549 }
550 else {
551 foreach ($params as $paramkey => $paramvalue) {
552 if (strstr($paramkey, 'filter')) {
553 _civicrm_api3_apply_filters_to_dao(substr($paramkey, 7), $paramvalue, $dao);
554 }
555 }
556 }
557 }
558 // http://issues.civicrm.org/jira/browse/CRM-9150 - stick with 'simple' operators for now
559 // support for other syntaxes is discussed in ticket but being put off for now
560 $acceptedSQLOperators = array('=', '<=', '>=', '>', '<', 'LIKE', "<>", "!=", "NOT LIKE", 'IN', 'NOT IN', 'BETWEEN', 'NOT BETWEEN');
561 if (!$fields) {
562 $fields = array();
563 }
564
565 foreach ($fields as $field) {
566 if (is_array($params[$field])) {
567 //get the actual fieldname from db
568 $fieldName = $allfields[$field]['name'];
a038992c 569 $where = CRM_Core_DAO::createSqlFilter($fieldName, $params[$field], 'String');
570 if(!empty($where)) {
571 $dao->whereAdd($where);
6a488035
TO
572 }
573 }
574 else {
575 if ($unique) {
ed22af33
TO
576 $daoFieldName = $allfields[$field]['name'];
577 if (empty($daoFieldName)) {
578 throw new API_Exception("Failed to determine field name for \"$field\"");
579 }
580 $dao->{$daoFieldName} = $params[$field];
6a488035
TO
581 }
582 else {
583 $dao->$field = $params[$field];
584 }
585 }
586 }
972322c5 587 if (!empty($options['return']) && is_array($options['return']) && empty($options['is_count'])) {
6a488035 588 $dao->selectAdd();
3c70d501 589 $options['return']['id'] = TRUE;// ensure 'id' is included
6a488035 590 $allfields = _civicrm_api3_get_unique_name_array($dao);
3c70d501 591 $returnMatched = array_intersect(array_keys($options['return']), $allfields);
6a488035 592 foreach ($returnMatched as $returnValue) {
48e1c0dc 593 $dao->selectAdd($returnValue);
6a488035 594 }
48e1c0dc 595
596 $unmatchedFields = array_diff(// not already matched on the field names
597 array_keys($options['return']),
598 $returnMatched
599 );
600
601 $returnUniqueMatched = array_intersect(
602 $unmatchedFields,
603 array_flip($allfields)// but a match for the field keys
604 );
6a488035
TO
605 foreach ($returnUniqueMatched as $uniqueVal){
606 $dao->selectAdd($allfields[$uniqueVal]);
6a488035 607 }
6a488035 608 }
6e1bb60c 609 $dao->setApiFilter($params);
6a488035
TO
610}
611
11e09c59 612/**
6a488035
TO
613 * Apply filters (e.g. high, low) to DAO object (prior to find)
614 * @param string $filterField field name of filter
615 * @param string $filterValue field value of filter
616 * @param object $dao DAO object
617 */
618function _civicrm_api3_apply_filters_to_dao($filterField, $filterValue, &$dao) {
619 if (strstr($filterField, 'high')) {
620 $fieldName = substr($filterField, 0, -5);
621 $dao->whereAdd("($fieldName <= $filterValue )");
622 }
623 if (strstr($filterField, 'low')) {
624 $fieldName = substr($filterField, 0, -4);
625 $dao->whereAdd("($fieldName >= $filterValue )");
626 }
627 if($filterField == 'is_current' && $filterValue == 1){
628 $todayStart = date('Ymd000000', strtotime('now'));
629 $todayEnd = date('Ymd235959', strtotime('now'));
630 $dao->whereAdd("(start_date <= '$todayStart' OR start_date IS NULL) AND (end_date >= '$todayEnd' OR end_date IS NULL)");
631 if(property_exists($dao, 'is_active')){
632 $dao->whereAdd('is_active = 1');
633 }
634 }
635}
11e09c59
TO
636
637/**
6a488035
TO
638 * Get sort, limit etc options from the params - supporting old & new formats.
639 * get returnproperties for legacy
26728d3f 640 *
6a488035
TO
641 * @param array $params params array as passed into civicrm_api
642 * @param bool $queryObject - is this supporting a queryobject api (e.g contact) - if so we support more options
643 * for legacy report & return a unique fields array
26728d3f
E
644 *
645 * @param string $entity
646 * @param string $action
647 *
6a488035
TO
648 * @return array $options options extracted from params
649 */
53ed8466 650function _civicrm_api3_get_options_from_params(&$params, $queryObject = FALSE, $entity = '', $action = '') {
972322c5 651 $is_count = FALSE;
6a488035
TO
652 $sort = CRM_Utils_Array::value('sort', $params, 0);
653 $sort = CRM_Utils_Array::value('option.sort', $params, $sort);
654 $sort = CRM_Utils_Array::value('option_sort', $params, $sort);
655
656 $offset = CRM_Utils_Array::value('offset', $params, 0);
657 $offset = CRM_Utils_Array::value('option.offset', $params, $offset);
658 // dear PHP thought it would be a good idea to transform a.b into a_b in the get/post
659 $offset = CRM_Utils_Array::value('option_offset', $params, $offset);
660
661 $limit = CRM_Utils_Array::value('rowCount', $params, 25);
662 $limit = CRM_Utils_Array::value('option.limit', $params, $limit);
663 $limit = CRM_Utils_Array::value('option_limit', $params, $limit);
664
665 if (is_array(CRM_Utils_Array::value('options', $params))) {
972322c5 666 // is count is set by generic getcount not user
667 $is_count = CRM_Utils_Array::value('is_count', $params['options']);
6a488035
TO
668 $offset = CRM_Utils_Array::value('offset', $params['options'], $offset);
669 $limit = CRM_Utils_Array::value('limit', $params['options'], $limit);
670 $sort = CRM_Utils_Array::value('sort', $params['options'], $sort);
671 }
672
673 $returnProperties = array();
674 // handle the format return =sort_name,display_name...
675 if (array_key_exists('return', $params)) {
676 if (is_array($params['return'])) {
677 $returnProperties = array_fill_keys($params['return'], 1);
678 }
679 else {
680 $returnProperties = explode(',', str_replace(' ', '', $params['return']));
681 $returnProperties = array_fill_keys($returnProperties, 1);
682 }
683 }
13c1cf91 684 if ($entity && $action =='get') {
685 if (CRM_Utils_Array::value('id',$returnProperties)) {
6a488035
TO
686 $returnProperties[$entity . '_id'] = 1;
687 unset($returnProperties['id']);
688 }
689 switch (trim(strtolower($sort))){
690 case 'id':
691 case 'id desc':
692 case 'id asc':
693 $sort = str_replace('id', $entity . '_id',$sort);
694 }
695 }
696
6a488035 697 $options = array(
ba93e7ad
CW
698 'offset' => CRM_Utils_Rule::integer($offset) ? $offset : NULL,
699 'sort' => CRM_Utils_Rule::string($sort) ? $sort : NULL,
700 'limit' => CRM_Utils_Rule::integer($limit) ? $limit : NULL,
6313f1f7 701 'is_count' => $is_count,
6a488035
TO
702 'return' => !empty($returnProperties) ? $returnProperties : NULL,
703 );
972322c5 704
13c1cf91 705 if ($options['sort'] && stristr($options['sort'], 'SELECT')) {
ba93e7ad
CW
706 throw new API_Exception('invalid string in sort options');
707 }
13c1cf91 708
6a488035
TO
709 if (!$queryObject) {
710 return $options;
711 }
712 //here comes the legacy support for $returnProperties, $inputParams e.g for contat_get
713 // if the queryobject is being used this should be used
714 $inputParams = array();
715 $legacyreturnProperties = array();
716 $otherVars = array(
717 'sort', 'offset', 'rowCount', 'options','return',
718 );
719 foreach ($params as $n => $v) {
720 if (substr($n, 0, 7) == 'return.') {
721 $legacyreturnProperties[substr($n, 7)] = $v;
722 }
13c1cf91 723 elseif ($n == 'id') {
6a488035
TO
724 $inputParams[$entity. '_id'] = $v;
725 }
726 elseif (in_array($n, $otherVars)) {}
13c1cf91 727 else {
6a488035 728 $inputParams[$n] = $v;
13c1cf91 729 if ($v && !is_array($v) && stristr($v, 'SELECT')) {
ba93e7ad
CW
730 throw new API_Exception('invalid string');
731 }
6a488035
TO
732 }
733 }
734 $options['return'] = array_merge($returnProperties, $legacyreturnProperties);
735 $options['input_params'] = $inputParams;
736 return $options;
737}
11e09c59
TO
738
739/**
6a488035 740 * Apply options (e.g. sort, limit, order by) to DAO object (prior to find)
26728d3f 741 *
6a488035
TO
742 * @param array $params params array as passed into civicrm_api
743 * @param object $dao DAO object
26728d3f 744 * @param $entity
6a488035
TO
745 */
746function _civicrm_api3_apply_options_to_dao(&$params, &$dao, $entity) {
747
53ed8466 748 $options = _civicrm_api3_get_options_from_params($params,FALSE,$entity);
972322c5 749 if(!$options['is_count']) {
ebddc2d9
EM
750 if(!empty($options['limit'])) {
751 $dao->limit((int)$options['offset'], (int)$options['limit']);
752 }
972322c5 753 if (!empty($options['sort'])) {
754 $dao->orderBy($options['sort']);
755 }
6a488035
TO
756 }
757}
758
11e09c59 759/**
6a488035
TO
760 * build fields array. This is the array of fields as it relates to the given DAO
761 * returns unique fields as keys by default but if set but can return by DB fields
762 */
763function _civicrm_api3_build_fields_array(&$bao, $unique = TRUE) {
764 $fields = $bao->fields();
765 if ($unique) {
766 if(!CRM_Utils_Array::value('id', $fields)){
767 $entity = _civicrm_api_get_entity_name_from_dao($bao);
768 $fields['id'] = $fields[$entity . '_id'];
769 unset($fields[$entity . '_id']);
770 }
771 return $fields;
772 }
773
774 foreach ($fields as $field) {
775 $dbFields[$field['name']] = $field;
776 }
777 return $dbFields;
778}
779
11e09c59 780/**
6a488035
TO
781 * build fields array. This is the array of fields as it relates to the given DAO
782 * returns unique fields as keys by default but if set but can return by DB fields
783 */
784function _civicrm_api3_get_unique_name_array(&$bao) {
785 $fields = $bao->fields();
786 foreach ($fields as $field => $values) {
787 $uniqueFields[$field] = CRM_Utils_Array::value('name',$values, $field);
788 }
789 return $uniqueFields;
790}
791
6a488035
TO
792/**
793 * Converts an DAO object to an array
794 *
26728d3f
E
795 * @param object $dao (reference )object to convert
796 * @param null $params
797 * @param bool $uniqueFields
798 * @param string $entity
799 *
800 * @return array
801 *
6a488035 802 * @params array of arrays (key = id) of array of fields
26728d3f 803 *
6a488035
TO
804 * @static void
805 * @access public
806 */
ab5fa8f2 807function _civicrm_api3_dao_to_array($dao, $params = NULL, $uniqueFields = TRUE, $entity = "", $autoFind = TRUE) {
6a488035 808 $result = array();
972322c5 809 if(isset($params['options']) && CRM_Utils_Array::value('is_count', $params['options'])) {
810 return $dao->count();
811 }
ab5fa8f2
TO
812 if (empty($dao)) {
813 return array();
814 }
815 if ($autoFind && !$dao->find()) {
6a488035
TO
816 return array();
817 }
818
972322c5 819 if(isset($dao->count)) {
820 return $dao->count;
821 }
6a488035
TO
822 //if custom fields are required we will endeavour to set them . NB passing $entity in might be a bit clunky / unrequired
823 if (!empty($entity) && CRM_Utils_Array::value('return', $params) && is_array($params['return'])) {
824 foreach ($params['return'] as $return) {
825 if (substr($return, 0, 6) == 'custom') {
826 $custom = TRUE;
827 }
828 }
829 }
830
831
832 $fields = array_keys(_civicrm_api3_build_fields_array($dao, $uniqueFields));
833
834 while ($dao->fetch()) {
835 $tmp = array();
836 foreach ($fields as $key) {
837 if (array_key_exists($key, $dao)) {
838 // not sure on that one
839 if ($dao->$key !== NULL) {
840 $tmp[$key] = $dao->$key;
841 }
842 }
843 }
844 $result[$dao->id] = $tmp;
845 if (!empty($custom)) {
846 _civicrm_api3_custom_data_get($result[$dao->id], $entity, $dao->id);
847 }
848 }
849
850
851 return $result;
852}
853
854/**
855 * Converts an object to an array
856 *
26728d3f
E
857 * @param object $dao (reference) object to convert
858 * @param array $values (reference) array
859 * @param array|bool $uniqueFields
6a488035
TO
860 *
861 * @return array
862 * @static void
863 * @access public
864 */
865function _civicrm_api3_object_to_array(&$dao, &$values, $uniqueFields = FALSE) {
866
867 $fields = _civicrm_api3_build_fields_array($dao, $uniqueFields);
868 foreach ($fields as $key => $value) {
869 if (array_key_exists($key, $dao)) {
870 $values[$key] = $dao->$key;
871 }
872 }
873}
874
11e09c59 875/**
6a488035
TO
876 * Wrapper for _civicrm_object_to_array when api supports unique fields
877 */
878function _civicrm_api3_object_to_array_unique_fields(&$dao, &$values) {
879 return _civicrm_api3_object_to_array($dao, $values, TRUE);
880}
881
882/**
883 *
884 * @param array $params
885 * @param array $values
886 * @param string $extends entity that this custom field extends (e.g. contribution, event, contact)
887 * @param string $entityId ID of entity per $extends
888 */
889function _civicrm_api3_custom_format_params($params, &$values, $extends, $entityId = NULL) {
890 $values['custom'] = array();
891 foreach ($params as $key => $value) {
892 list($customFieldID, $customValueID) = CRM_Core_BAO_CustomField::getKeyID($key, TRUE);
fe6daa04 893 if ($customFieldID && (!IS_NULL($value))) {
6a488035
TO
894 CRM_Core_BAO_CustomField::formatCustomField($customFieldID, $values['custom'],
895 $value, $extends, $customValueID, $entityId, FALSE, FALSE
896 );
897 }
898 }
899}
900
901/**
902 * @deprecated
903 * This function ensures that we have the right input parameters
904 *
905 * This function is only called when $dao is passed into verify_mandatory.
906 * The practice of passing $dao into verify_mandatory turned out to be
907 * unsatisfactory as the required fields @ the dao level is so diffent to the abstract
908 * api level. Hence the intention is to remove this function
909 * & the associated param from viery_mandatory
910 *
26728d3f 911 * @param array $params Associative array of property name/value
6a488035 912 * pairs to insert in new history.
26728d3f
E
913 * @param $daoName
914 * @param bool $return
915 *
6a488035
TO
916 * @daoName string DAO to check params agains
917 *
918 * @return bool should the missing fields be returned as an array (core error created as default)
919 *
920 * @return bool true if all fields present, depending on $result a core error is created of an array of missing fields is returned
921 * @access public
922 */
923function _civicrm_api3_check_required_fields($params, $daoName, $return = FALSE) {
924 //@deprecated - see notes
925 if (isset($params['extends'])) {
926 if (($params['extends'] == 'Activity' ||
927 $params['extends'] == 'Phonecall' ||
928 $params['extends'] == 'Meeting' ||
929 $params['extends'] == 'Group' ||
930 $params['extends'] == 'Contribution'
931 ) &&
932 ($params['style'] == 'Tab')
933 ) {
934 return civicrm_api3_create_error(ts("Can not create Custom Group in Tab for " . $params['extends']));
935 }
936 }
937
938 $dao = new $daoName();
939 $fields = $dao->fields();
940
941 $missing = array();
942 foreach ($fields as $k => $v) {
943 if ($v['name'] == 'id') {
944 continue;
945 }
946
947 if (CRM_Utils_Array::value('required', $v)) {
948 // 0 is a valid input for numbers, CRM-8122
949 if (!isset($params[$k]) || (empty($params[$k]) && !($params[$k] === 0))) {
950 $missing[] = $k;
951 }
952 }
953 }
954
955 if (!empty($missing)) {
956 if (!empty($return)) {
957 return $missing;
958 }
959 else {
960 return civicrm_api3_create_error(ts("Required fields " . implode(',', $missing) . " for $daoName are not present"));
961 }
962 }
963
964 return TRUE;
965}
966
967/**
968 * Check permissions for a given API call.
969 *
970 * @param $entity string API entity being accessed
971 * @param $action string API action being performed
972 * @param $params array params of the API call
60ec9f43 973 * @param $throw deprecated bool whether to throw exception instead of returning false
6a488035 974 *
916b48b6 975 * @throws Exception
6a488035
TO
976 * @return bool whether the current API user has the permission to make the call
977 */
978function _civicrm_api3_api_check_permission($entity, $action, &$params, $throw = TRUE) {
979 // return early unless we’re told explicitly to do the permission check
980 if (empty($params['check_permissions']) or $params['check_permissions'] == FALSE) {
981 return TRUE;
982 }
983
aa5ba569 984 require_once 'CRM/Core/DAO/permissions.php';
6a488035
TO
985 $permissions = _civicrm_api3_permissions($entity, $action, $params);
986
987 // $params might’ve been reset by the alterAPIPermissions() hook
988 if (isset($params['check_permissions']) and $params['check_permissions'] == FALSE) {
989 return TRUE;
990 }
991
60ec9f43
E
992 if (!CRM_Core_Permission::check($permissions)) {
993 if ($throw) {
994 if(is_array($permissions)) {
995 $permissions = implode(' and ', $permissions);
6a488035 996 }
60ec9f43
E
997 throw new Exception("API permission check failed for $entity/$action call; insufficient permission: require $permissions");
998 }
999 else {
1000 //@todo remove this - this is an internal api function called with $throw set to TRUE. It is only called with false
1001 // in tests & that should be tidied up
1002 return FALSE;
6a488035
TO
1003 }
1004 }
60ec9f43 1005
6a488035
TO
1006 return TRUE;
1007}
1008
11e09c59 1009/**
6a488035
TO
1010 * Function to do a 'standard' api get - when the api is only doing a $bao->find then use this
1011 *
1012 * @param string $bao_name name of BAO
1013 * @param array $params params from api
1014 * @param bool $returnAsSuccess return in api success format
26728d3f
E
1015 * @param string $entity
1016 *
1017 * @return array
6a488035
TO
1018 */
1019function _civicrm_api3_basic_get($bao_name, &$params, $returnAsSuccess = TRUE, $entity = "") {
1020 $bao = new $bao_name();
53949b36 1021 _civicrm_api3_dao_set_filter($bao, $params, TRUE, $entity);
6a488035 1022 if ($returnAsSuccess) {
dc5a7701 1023 return civicrm_api3_create_success(_civicrm_api3_dao_to_array($bao, $params, FALSE, $entity), $params, $entity, 'get');
6a488035
TO
1024 }
1025 else {
1026 return _civicrm_api3_dao_to_array($bao, $params, FALSE, $entity);
1027 }
1028}
1029
11e09c59 1030/**
6a488035
TO
1031 * Function to do a 'standard' api create - when the api is only doing a $bao::create then use this
1032 * @param string $bao_name Name of BAO Class
1033 * @param array $params parameters passed into the api call
1034 * @param string $entity Entity - pass in if entity is non-standard & required $ids array
26728d3f 1035 * @return array
6a488035 1036 */
53ed8466 1037function _civicrm_api3_basic_create($bao_name, &$params, $entity = NULL) {
6a488035
TO
1038
1039 $args = array(&$params);
acde3ae0 1040 if (!empty($entity)) {
6a488035
TO
1041 $ids = array($entity => CRM_Utils_Array::value('id', $params));
1042 $args[] = &$ids;
1043 }
acde3ae0 1044
6a488035
TO
1045 if (method_exists($bao_name, 'create')) {
1046 $fct = 'create';
acde3ae0
TO
1047 $fct_name = $bao_name . '::' . $fct;
1048 $bao = call_user_func_array(array($bao_name, $fct), $args);
6a488035
TO
1049 }
1050 elseif (method_exists($bao_name, 'add')) {
1051 $fct = 'add';
acde3ae0
TO
1052 $fct_name = $bao_name . '::' . $fct;
1053 $bao = call_user_func_array(array($bao_name, $fct), $args);
6a488035 1054 }
acde3ae0
TO
1055 else {
1056 $fct_name = '_civicrm_api3_basic_create_fallback';
1057 $bao = _civicrm_api3_basic_create_fallback($bao_name, $params);
6a488035 1058 }
acde3ae0 1059
6a488035 1060 if (is_null($bao)) {
acde3ae0 1061 return civicrm_api3_create_error('Entity not created (' . $fct_name . ')');
6a488035 1062 }
736eec43
E
1063 elseif (is_a($bao, 'CRM_Core_Error')) {
1064 //some wierd circular thing means the error takes itself as an argument
1065 $msg = $bao->getMessages($bao);
1066 // the api deals with entities on a one-by-one basis. However, the contribution bao pushes entities
1067 // onto the error object - presumably because the contribution import is not handling multiple errors correctly
1068 // so we need to reset the error object here to avoid getting concatenated errors
1069 //@todo - the mulitple error handling should be moved out of the contribution object to the import / multiple entity processes
1070 CRM_Core_Error::singleton()->reset();
1071 throw new API_Exception($msg);
1072 }
6a488035
TO
1073 else {
1074 $values = array();
1075 _civicrm_api3_object_to_array($bao, $values[$bao->id]);
504a78f6 1076 return civicrm_api3_create_success($values, $params, $entity, 'create', $bao);
6a488035
TO
1077 }
1078}
1079
acde3ae0
TO
1080/**
1081 * For BAO's which don't have a create() or add() functions, use this fallback implementation.
1082 *
26728d3f 1083 * @fixme There's an intuitive sense that this behavior should be defined somehow in the BAO/DAO class
acde3ae0
TO
1084 * structure. In practice, that requires a fair amount of refactoring and/or kludgery.
1085 *
1086 * @param string $bao_name
1087 * @param array $params
916b48b6
VU
1088 *
1089 * @throws API_Exception
acde3ae0
TO
1090 * @return CRM_Core_DAO|NULL an instance of the BAO
1091 */
1092function _civicrm_api3_basic_create_fallback($bao_name, &$params) {
1093 $entityName = CRM_Core_DAO_AllCoreTables::getBriefName(get_parent_class($bao_name));
1094 if (empty($entityName)) {
1095 throw new API_Exception("Class \"$bao_name\" does not map to an entity name", "unmapped_class_to_entity", array(
1096 'class_name' => $bao_name,
1097 ));
1098 }
1099 $hook = empty($params['id']) ? 'create' : 'edit';
1100
1101 CRM_Utils_Hook::pre($hook, $entityName, CRM_Utils_Array::value('id', $params), $params);
1102 $instance = new $bao_name();
1103 $instance->copyValues($params);
1104 $instance->save();
1105 CRM_Utils_Hook::post($hook, $entityName, $instance->id, $instance);
1106
1107 return $instance;
1108}
1109
11e09c59 1110/**
6a488035
TO
1111 * Function to do a 'standard' api del - when the api is only doing a $bao::del then use this
1112 * if api::del doesn't exist it will try DAO delete method
1113 */
1114function _civicrm_api3_basic_delete($bao_name, &$params) {
1115
1116 civicrm_api3_verify_mandatory($params, NULL, array('id'));
1117 $args = array(&$params['id']);
1118 if (method_exists($bao_name, 'del')) {
1119 $bao = call_user_func_array(array($bao_name, 'del'), $args);
a65e2e55
CW
1120 if ($bao !== FALSE) {
1121 return civicrm_api3_create_success(TRUE);
1122 }
fb32de45 1123 throw new API_Exception('Could not delete entity id ' . $params['id']);
6a488035
TO
1124 }
1125 elseif (method_exists($bao_name, 'delete')) {
1126 $dao = new $bao_name();
1127 $dao->id = $params['id'];
1128 if ($dao->find()) {
1129 while ($dao->fetch()) {
1130 $dao->delete();
1131 return civicrm_api3_create_success();
1132 }
1133 }
1134 else {
fb32de45 1135 throw new API_Exception('Could not delete entity id ' . $params['id']);
6a488035
TO
1136 }
1137 }
1138
fb32de45 1139 throw new API_Exception('no delete method found');
6a488035
TO
1140}
1141
11e09c59 1142/**
6a488035
TO
1143 * Get custom data for the given entity & Add it to the returnArray as 'custom_123' = 'custom string' AND 'custom_123_1' = 'custom string'
1144 * Where 123 is field value & 1 is the id within the custom group data table (value ID)
1145 *
1146 * @param array $returnArray - array to append custom data too - generally $result[4] where 4 is the entity id.
1147 * @param string $entity e.g membership, event
26728d3f 1148 * @param $entity_id
6a488035
TO
1149 * @param int $groupID - per CRM_Core_BAO_CustomGroup::getTree
1150 * @param int $subType e.g. membership_type_id where custom data doesn't apply to all membership types
1151 * @param string $subName - Subtype of entity
6a488035
TO
1152 */
1153function _civicrm_api3_custom_data_get(&$returnArray, $entity, $entity_id, $groupID = NULL, $subType = NULL, $subName = NULL) {
6a488035
TO
1154 $groupTree = &CRM_Core_BAO_CustomGroup::getTree($entity,
1155 CRM_Core_DAO::$_nullObject,
1156 $entity_id,
1157 $groupID,
1158 $subType,
1159 $subName
1160 );
1161 $groupTree = CRM_Core_BAO_CustomGroup::formatGroupTree($groupTree, 1, CRM_Core_DAO::$_nullObject);
1162 $customValues = array();
1163 CRM_Core_BAO_CustomGroup::setDefaults($groupTree, $customValues);
1164 if (!empty($customValues)) {
1165 foreach ($customValues as $key => $val) {
1166 if (strstr($key, '_id')) {
1167 $idkey = substr($key, 0, -3);
1168 $returnArray['custom_' . (CRM_Core_BAO_CustomField::getKeyID($idkey) . "_id")] = $val;
1169 $returnArray[$key] = $val;
1170 }
1171 else {
1172 // per standard - return custom_fieldID
1173 $returnArray['custom_' . (CRM_Core_BAO_CustomField::getKeyID($key))] = $val;
1174
1175 //not standard - but some api did this so guess we should keep - cheap as chips
1176 $returnArray[$key] = $val;
1177 }
1178 }
1179 }
1180}
1181
11e09c59 1182/**
6a488035
TO
1183 * Validate fields being passed into API. This function relies on the getFields function working accurately
1184 * for the given API. If error mode is set to TRUE then it will also check
1185 * foreign keys
1186 *
1187 * As of writing only date was implemented.
1188 * @param string $entity
1189 * @param string $action
1190 * @param array $params -
916b48b6
VU
1191 * @param array $fields response from getfields all variables are the same as per civicrm_api
1192 * @param bool $errorMode errorMode do intensive post fail checks?
1193 * @throws Exception
6a488035 1194 */
94359f7e 1195function _civicrm_api3_validate_fields($entity, $action, &$params, $fields, $errorMode = False) {
1196 $fields = array_intersect_key($fields, $params);
70f7ba9e 1197 foreach ($fields as $fieldName => $fieldInfo) {
6a488035
TO
1198 switch (CRM_Utils_Array::value('type', $fieldInfo)) {
1199 case CRM_Utils_Type::T_INT:
1200 //field is of type integer
70f7ba9e 1201 _civicrm_api3_validate_integer($params, $fieldName, $fieldInfo, $entity);
6a488035
TO
1202 break;
1203
1204 case 4:
1205 case 12:
1206 //field is of type date or datetime
70f7ba9e 1207 _civicrm_api3_validate_date($params, $fieldName, $fieldInfo);
6a488035 1208 break;
83abdecd 1209
70f7ba9e
CW
1210 case 32://blob
1211 _civicrm_api3_validate_html($params, $fieldName, $fieldInfo);
6a488035 1212 break;
6a488035 1213
83abdecd 1214 case CRM_Utils_Type::T_STRING:
70f7ba9e 1215 _civicrm_api3_validate_string($params, $fieldName, $fieldInfo, $entity);
6a488035
TO
1216 break;
1217
1218 case CRM_Utils_Type::T_MONEY:
0c094d12 1219 if (!CRM_Utils_Rule::money($params[$fieldName]) && !empty($params[$fieldName])) {
70f7ba9e 1220 throw new Exception($fieldName . " is not a valid amount: " . $params[$fieldName]);
6a488035
TO
1221 }
1222 }
1223
1224 // intensive checks - usually only called after DB level fail
1225 if (!empty($errorMode) && strtolower($action) == 'create') {
1226 if (CRM_Utils_Array::value('FKClassName', $fieldInfo)) {
70f7ba9e
CW
1227 if (CRM_Utils_Array::value($fieldName, $params)) {
1228 _civicrm_api3_validate_constraint($params, $fieldName, $fieldInfo);
6a488035
TO
1229 }
1230 elseif (CRM_Utils_Array::value('required', $fieldInfo)) {
70f7ba9e 1231 throw new Exception("DB Constraint Violation - possibly $fieldName should possibly be marked as mandatory for this API. If so, please raise a bug report");
6a488035
TO
1232 }
1233 }
1234 if (CRM_Utils_Array::value('api.unique', $fieldInfo)) {
1235 $params['entity'] = $entity;
70f7ba9e 1236 _civicrm_api3_validate_uniquekey($params, $fieldName, $fieldInfo);
6a488035
TO
1237 }
1238 }
1239 }
1240}
1241
11e09c59 1242/**
6a488035
TO
1243 * Validate date fields being passed into API.
1244 * It currently converts both unique fields and DB field names to a mysql date.
1245 * @todo - probably the unique field handling & the if exists handling is now done before this
1246 * function is reached in the wrapper - can reduce this code down to assume we
1247 * are only checking the passed in field
1248 *
1249 * It also checks against the RULE:date function. This is a centralisation of code that was scattered and
1250 * may not be the best thing to do. There is no code level documentation on the existing functions to work off
1251 *
1252 * @param array $params params from civicrm_api
70f7ba9e 1253 * @param string $fieldName uniquename of field being checked
916b48b6
VU
1254 * @param $fieldInfo
1255 * @throws Exception
1256 * @internal param array $fieldinfo array of fields from getfields function
6a488035 1257 */
70f7ba9e 1258function _civicrm_api3_validate_date(&$params, &$fieldName, &$fieldInfo) {
6a488035
TO
1259 //should we check first to prevent it from being copied if they have passed in sql friendly format?
1260 if (CRM_Utils_Array::value($fieldInfo['name'], $params)) {
1261 //accept 'whatever strtotime accepts
1262 if (strtotime($params[$fieldInfo['name']]) === FALSE) {
1263 throw new Exception($fieldInfo['name'] . " is not a valid date: " . $params[$fieldInfo['name']]);
1264 }
1265 $params[$fieldInfo['name']] = CRM_Utils_Date::processDate($params[$fieldInfo['name']]);
1266 }
70f7ba9e 1267 if ((CRM_Utils_Array::value('name', $fieldInfo) != $fieldName) && CRM_Utils_Array::value($fieldName, $params)) {
6a488035 1268 //If the unique field name differs from the db name & is set handle it here
70f7ba9e
CW
1269 if (strtotime($params[$fieldName]) === FALSE) {
1270 throw new Exception($fieldName . " is not a valid date: " . $params[$fieldName]);
6a488035 1271 }
70f7ba9e 1272 $params[$fieldName] = CRM_Utils_Date::processDate($params[$fieldName]);
6a488035
TO
1273 }
1274}
11e09c59
TO
1275
1276/**
6a488035
TO
1277 * Validate foreign constraint fields being passed into API.
1278 *
1279 * @param array $params params from civicrm_api
70f7ba9e 1280 * @param string $fieldName uniquename of field being checked
916b48b6
VU
1281 * @param $fieldInfo
1282 * @throws Exception
1283 * @internal param array $fieldinfo array of fields from getfields function
6a488035 1284 */
70f7ba9e 1285function _civicrm_api3_validate_constraint(&$params, &$fieldName, &$fieldInfo) {
6a488035 1286 $dao = new $fieldInfo['FKClassName'];
70f7ba9e 1287 $dao->id = $params[$fieldName];
6a488035
TO
1288 $dao->selectAdd();
1289 $dao->selectAdd('id');
1290 if (!$dao->find()) {
70f7ba9e 1291 throw new Exception("$fieldName is not valid : " . $params[$fieldName]);
6a488035
TO
1292 }
1293}
1294
11e09c59 1295/**
6a488035
TO
1296 * Validate foreign constraint fields being passed into API.
1297 *
1298 * @param array $params params from civicrm_api
70f7ba9e 1299 * @param string $fieldName uniquename of field being checked
916b48b6
VU
1300 * @param $fieldInfo
1301 * @throws Exception
1302 * @internal param array $fieldinfo array of fields from getfields function
6a488035 1303 */
70f7ba9e 1304function _civicrm_api3_validate_uniquekey(&$params, &$fieldName, &$fieldInfo) {
6a488035
TO
1305 $existing = civicrm_api($params['entity'], 'get', array(
1306 'version' => $params['version'],
70f7ba9e 1307 $fieldName => $params[$fieldName],
6a488035
TO
1308 ));
1309 // an entry already exists for this unique field
1310 if ($existing['count'] == 1) {
1311 // question - could this ever be a security issue?
70f7ba9e 1312 throw new Exception("Field: `$fieldName` must be unique. An conflicting entity already exists - id: " . $existing['id']);
6a488035
TO
1313 }
1314}
1315
1316/**
1317 * Generic implementation of the "replace" action.
1318 *
1319 * Replace the old set of entities (matching some given keys) with a new set of
1320 * entities (matching the same keys).
1321 *
1322 * Note: This will verify that 'values' is present, but it does not directly verify
1323 * any other parameters.
1324 *
1325 * @param string $entity entity name
1326 * @param array $params params from civicrm_api, including:
1327 * - 'values': an array of records to save
1328 * - all other items: keys which identify new/pre-existing records
26728d3f 1329 * @return array|int
6a488035
TO
1330 */
1331function _civicrm_api3_generic_replace($entity, $params) {
1332
6a488035
TO
1333 $transaction = new CRM_Core_Transaction();
1334 try {
1335 if (!is_array($params['values'])) {
1336 throw new Exception("Mandatory key(s) missing from params array: values");
1337 }
1338
1339 // Extract the keys -- somewhat scary, don't think too hard about it
e4b4e33a 1340 $baseParams = _civicrm_api3_generic_replace_base_params($params);
6a488035
TO
1341
1342 // Lookup pre-existing records
1343 $preexisting = civicrm_api($entity, 'get', $baseParams, $params);
1344 if (civicrm_error($preexisting)) {
1345 $transaction->rollback();
1346 return $preexisting;
1347 }
1348
1349 // Save the new/updated records
1350 $creates = array();
1351 foreach ($params['values'] as $replacement) {
1352 // Sugar: Don't force clients to duplicate the 'key' data
1353 $replacement = array_merge($baseParams, $replacement);
1354 $action = (isset($replacement['id']) || isset($replacement[$entity . '_id'])) ? 'update' : 'create';
1355 $create = civicrm_api($entity, $action, $replacement);
1356 if (civicrm_error($create)) {
1357 $transaction->rollback();
1358 return $create;
1359 }
1360 foreach ($create['values'] as $entity_id => $entity_value) {
1361 $creates[$entity_id] = $entity_value;
1362 }
1363 }
1364
1365 // Remove stale records
1366 $staleIDs = array_diff(
1367 array_keys($preexisting['values']),
1368 array_keys($creates)
1369 );
1370 foreach ($staleIDs as $staleID) {
1371 $delete = civicrm_api($entity, 'delete', array(
1372 'version' => $params['version'],
1373 'id' => $staleID,
1374 ));
1375 if (civicrm_error($delete)) {
1376 $transaction->rollback();
1377 return $delete;
1378 }
1379 }
1380
1381 return civicrm_api3_create_success($creates, $params);
1382 }
1383 catch(PEAR_Exception $e) {
1384 $transaction->rollback();
1385 return civicrm_api3_create_error($e->getMessage());
1386 }
1387 catch(Exception $e) {
1388 $transaction->rollback();
1389 return civicrm_api3_create_error($e->getMessage());
1390 }
1391}
1392
26728d3f
E
1393/**
1394 * @param $params
1395 *
1396 * @return mixed
1397 */
e4b4e33a
TO
1398function _civicrm_api3_generic_replace_base_params($params) {
1399 $baseParams = $params;
1400 unset($baseParams['values']);
1401 unset($baseParams['sequential']);
1402 unset($baseParams['options']);
1403 return $baseParams;
1404}
1405
11e09c59 1406/**
6a488035 1407 * returns fields allowable by api
26728d3f 1408 *
6a488035
TO
1409 * @param $entity string Entity to query
1410 * @param bool $unique index by unique fields?
26728d3f
E
1411 * @param array $params
1412 *
1413 * @return array
6a488035
TO
1414 */
1415function _civicrm_api_get_fields($entity, $unique = FALSE, &$params = array(
1416 )) {
1417 $unsetIfEmpty = array('dataPattern', 'headerPattern', 'default', 'export', 'import');
1418 $dao = _civicrm_api3_get_DAO($entity);
1419 if (empty($dao)) {
1420 return array();
1421 }
6a488035
TO
1422 $d = new $dao();
1423 $fields = $d->fields();
1424 // replace uniqueNames by the normal names as the key
1425 if (empty($unique)) {
1426 foreach ($fields as $name => & $field) {
1427 //getting rid of unused attributes
1428 foreach ($unsetIfEmpty as $attr) {
1429 if (empty($field[$attr])) {
1430 unset($field[$attr]);
1431 }
1432 }
1433 if ($name == $field['name']) {
1434 continue;
1435 }
1436 if (array_key_exists($field['name'], $fields)) {
1437 $field['error'] = 'name conflict';
1438 // it should never happen, but better safe than sorry
1439 continue;
1440 }
1441 $fields[$field['name']] = $field;
1442 $fields[$field['name']]['uniqueName'] = $name;
1443 unset($fields[$name]);
1444 }
1445 }
1446 $fields += _civicrm_api_get_custom_fields($entity, $params);
1447 return $fields;
1448}
1449
11e09c59 1450/**
6a488035
TO
1451 * Return an array of fields for a given entity - this is the same as the BAO function but
1452 * fields are prefixed with 'custom_' to represent api params
1453 */
1454function _civicrm_api_get_custom_fields($entity, &$params) {
6a488035
TO
1455 $customfields = array();
1456 $entity = _civicrm_api_get_camel_name($entity);
1457 if (strtolower($entity) == 'contact') {
837afcfe 1458 // Use sub-type if available, otherwise stick with 'Contact'
0400dfac 1459 $entity = CRM_Utils_Array::value('contact_type', $params);
6a488035
TO
1460 }
1461 $retrieveOnlyParent = FALSE;
1462 // we could / should probably test for other subtypes here - e.g. activity_type_id
1463 if($entity == 'Contact'){
1464 empty($params['contact_sub_type']);
1465 }
1466 $customfields = CRM_Core_BAO_CustomField::getFields($entity,
1467 FALSE,
1468 FALSE,
1469 CRM_Utils_Array::value('contact_sub_type', $params, FALSE),
1470 NULL,
1471 $retrieveOnlyParent,
1472 FALSE,
1473 FALSE
1474 );
1475 // find out if we have any requests to resolve options
1476 $getoptions = CRM_Utils_Array::value('get_options', CRM_Utils_Array::value('options',$params));
1477 if(!is_array($getoptions)){
1478 $getoptions = array($getoptions);
1479 }
1480
1481 foreach ($customfields as $key => $value) {
a4c5e9a3
CW
1482 // Regular fields have a 'name' property
1483 $value['name'] = 'custom_' . $key;
effb666a 1484 $value['type'] = _getStandardTypeFromCustomDataType($value['data_type']);
6a488035 1485 $customfields['custom_' . $key] = $value;
a4c5e9a3
CW
1486 if (in_array('custom_' . $key, $getoptions)) {
1487 $customfields['custom_' . $key]['options'] = CRM_Core_BAO_CustomOption::valuesByID($key);
1488 }
6a488035
TO
1489 unset($customfields[$key]);
1490 }
1491 return $customfields;
1492}
effb666a 1493/**
1494 * Translate the custom field data_type attribute into a std 'type'
1495 */
1496function _getStandardTypeFromCustomDataType($dataType) {
1497 $mapping = array(
1498 'String' => CRM_Utils_Type::T_STRING,
1499 'Int' => CRM_Utils_Type::T_INT,
1500 'Money' => CRM_Utils_Type::T_MONEY,
1501 'Memo' => CRM_Utils_Type::T_LONGTEXT,
1502 'Float' => CRM_Utils_Type::T_FLOAT,
1503 'Date' => CRM_Utils_Type::T_DATE,
1504 'Boolean' => CRM_Utils_Type::T_BOOLEAN,
1505 'StateProvince' => CRM_Utils_Type::T_INT,
1506 'File' => CRM_Utils_Type::T_STRING,
1507 'Link' => CRM_Utils_Type::T_STRING,
1508 'ContactReference' => CRM_Utils_Type::T_INT,
3e93ae67 1509 'Country' => CRM_Utils_Type::T_INT,
effb666a 1510 );
1511 return $mapping[$dataType];
1512}
11e09c59 1513/**
6a488035
TO
1514 * Return array of defaults for the given API (function is a wrapper on getfields)
1515 */
94359f7e 1516function _civicrm_api3_getdefaults($apiRequest, $fields) {
6a488035
TO
1517 $defaults = array();
1518
94359f7e 1519 foreach ($fields as $field => $values) {
6a488035
TO
1520 if (isset($values['api.default'])) {
1521 $defaults[$field] = $values['api.default'];
1522 }
1523 }
1524 return $defaults;
1525}
1526
11e09c59 1527/**
6a488035
TO
1528 * Return array of defaults for the given API (function is a wrapper on getfields)
1529 */
94359f7e 1530function _civicrm_api3_getrequired($apiRequest, $fields) {
6a488035
TO
1531 $required = array('version');
1532
94359f7e 1533 foreach ($fields as $field => $values) {
6a488035
TO
1534 if (CRM_Utils_Array::value('api.required', $values)) {
1535 $required[] = $field;
1536 }
1537 }
1538 return $required;
1539}
1540
11e09c59 1541/**
6a488035
TO
1542 * Fill params array with alternate (alias) values where a field has an alias and that is filled & the main field isn't
1543 * If multiple aliases the last takes precedence
1544 *
1545 * Function also swaps unique fields for non-unique fields & vice versa.
1546 */
94359f7e 1547function _civicrm_api3_swap_out_aliases(&$apiRequest, $fields) {
1548 foreach ($fields as $field => $values) {
6a488035
TO
1549 $uniqueName = CRM_Utils_Array::value('uniqueName', $values);
1550 if (CRM_Utils_Array::value('api.aliases', $values)) {
1551 // if aliased field is not set we try to use field alias
1552 if (!isset($apiRequest['params'][$field])) {
1553 foreach ($values['api.aliases'] as $alias) {
1554 if (isset($apiRequest['params'][$alias])) {
1555 $apiRequest['params'][$field] = $apiRequest['params'][$alias];
1556 }
1557 //unset original field nb - need to be careful with this as it may bring inconsistencies
1558 // out of the woodwork but will be implementing only as _spec function extended
1559 unset($apiRequest['params'][$alias]);
1560 }
1561 }
1562 }
1563 if (!isset($apiRequest['params'][$field])
1564 && CRM_Utils_Array::value('name', $values)
1565 && $field != $values['name']
1566 && isset($apiRequest['params'][$values['name']])
1567 ) {
1568 $apiRequest['params'][$field] = $apiRequest['params'][$values['name']];
1569 // note that it would make sense to unset the original field here but tests need to be in place first
1570 }
1571 if (!isset($apiRequest['params'][$field])
1572 && $uniqueName
1573 && $field != $uniqueName
1574 && array_key_exists($uniqueName, $apiRequest['params'])
1575 )
1576 {
1577 $apiRequest['params'][$field] = CRM_Utils_Array::value($values['uniqueName'], $apiRequest['params']);
1578 // note that it would make sense to unset the original field here but tests need to be in place first
1579 }
1580 }
1581
1582}
11e09c59
TO
1583
1584/**
6a488035
TO
1585 * Validate integer fields being passed into API.
1586 * It currently converts the incoming value 'user_contact_id' into the id of the currenty logged in user
1587 *
1588 * @param array $params params from civicrm_api
70f7ba9e 1589 * @param string $fieldName uniquename of field being checked
916b48b6
VU
1590 * @param $fieldInfo
1591 * @param $entity
1592 * @throws API_Exception
1593 * @internal param array $fieldinfo array of fields from getfields function
6a488035 1594 */
70f7ba9e 1595function _civicrm_api3_validate_integer(&$params, &$fieldName, &$fieldInfo, $entity) {
6a488035 1596 //if fieldname exists in params
3db3b06b 1597 if (CRM_Utils_Array::value($fieldName, $params)) {
46b6363c 1598 // if value = 'user_contact_id' (or similar), replace value with contact id
e68c64eb 1599 if (!is_numeric($params[$fieldName]) && is_scalar($params[$fieldName])) {
3db3b06b 1600 $realContactId = _civicrm_api3_resolve_contactID($params[$fieldName]);
17cb9f7f 1601 if ('unknown-user' === $realContactId) {
3db3b06b 1602 throw new API_Exception("\"$fieldName\" \"{$params[$fieldName]}\" cannot be resolved to a contact ID", 2002, array('error_field' => $fieldName,"type"=>"integer"));
17cb9f7f
TO
1603 } elseif (is_numeric($realContactId)) {
1604 $params[$fieldName] = $realContactId;
46b6363c 1605 }
6a488035 1606 }
6fa8a394
CW
1607 if (!empty($fieldInfo['pseudoconstant']) || !empty($fieldInfo['options'])) {
1608 _civicrm_api3_api_match_pseudoconstant($params, $entity, $fieldName, $fieldInfo);
6a488035
TO
1609 }
1610
283f988c
CW
1611 // After swapping options, ensure we have an integer(s)
1612 foreach ((array) ($params[$fieldName]) as $value) {
736f9c2d 1613 if ($value && !is_numeric($value) && $value !== 'null' && !is_array($value)) {
283f988c
CW
1614 throw new API_Exception("$fieldName is not a valid integer", 2001, array('error_field' => $fieldName, "type" => "integer"));
1615 }
6fa8a394
CW
1616 }
1617
1618 // Check our field length
70f7ba9e 1619 if(is_string($params[$fieldName]) &&
6a488035 1620 CRM_Utils_Array::value('maxlength',$fieldInfo)
70f7ba9e 1621 && strlen($params[$fieldName]) > $fieldInfo['maxlength']
6a488035 1622 ){
70f7ba9e
CW
1623 throw new API_Exception( $params[$fieldName] . " is " . strlen($params[$fieldName]) . " characters - longer than $fieldName length" . $fieldInfo['maxlength'] . ' characters',
1624 2100, array('field' => $fieldName, "max_length"=>$fieldInfo['maxlength'])
6a488035
TO
1625 );
1626 }
1627 }
1628}
1629
46b6363c
TO
1630/**
1631 * Determine a contact ID using a string expression
1632 *
1633 * @param string $contactIdExpr e.g. "user_contact_id" or "@user:username"
17cb9f7f 1634 * @return int|NULL|'unknown-user'
46b6363c
TO
1635 */
1636function _civicrm_api3_resolve_contactID($contactIdExpr) {
1637 //if value = 'user_contact_id' replace value with logged in user id
1638 if ($contactIdExpr == "user_contact_id") {
1639 $session = &CRM_Core_Session::singleton();
1640 if (!is_numeric($session->get('userID'))) {
1641 return NULL;
1642 }
1643 return $session->get('userID');
1644 } elseif (preg_match('/^@user:(.*)$/', $contactIdExpr, $matches)) {
1645 $config = CRM_Core_Config::singleton();
1646
1647 $ufID = $config->userSystem->getUfId($matches[1]);
1648 if (!$ufID) {
17cb9f7f 1649 return 'unknown-user';
46b6363c
TO
1650 }
1651
1652 $contactID = CRM_Core_BAO_UFMatch::getContactId($ufID);
17cb9f7f
TO
1653 if (!$contactID) {
1654 return 'unknown-user';
46b6363c
TO
1655 }
1656
1657 return $contactID;
1658 }
31fd7b1e 1659 return NULL;
46b6363c
TO
1660}
1661
26728d3f
E
1662/**
1663 * Validate html (check for scripting attack)
1664 * @param $params
1665 * @param $fieldName
1666 * @param $fieldInfo
1667 *
1668 * @throws API_Exception
1669 */
70f7ba9e
CW
1670function _civicrm_api3_validate_html(&$params, &$fieldName, &$fieldInfo) {
1671 if ($value = CRM_Utils_Array::value($fieldName, $params)) {
6a488035 1672 if (!CRM_Utils_Rule::xssString($value)) {
e7c4a581 1673 throw new API_Exception('Illegal characters in input (potential scripting attack)', array("field"=>$fieldName,"error_code"=>"xss"));
6a488035
TO
1674 }
1675 }
1676}
1677
11e09c59 1678/**
6a488035
TO
1679 * Validate string fields being passed into API.
1680 * @param array $params params from civicrm_api
70f7ba9e 1681 * @param string $fieldName uniquename of field being checked
916b48b6
VU
1682 * @param $fieldInfo
1683 * @param $entity
1684 * @throws API_Exception
1685 * @throws Exception
1686 * @internal param array $fieldinfo array of fields from getfields function
6a488035 1687 */
70f7ba9e 1688function _civicrm_api3_validate_string(&$params, &$fieldName, &$fieldInfo, $entity) {
6a488035 1689 // If fieldname exists in params
70f7ba9e 1690 $value = CRM_Utils_Array::value($fieldName, $params, '');
69c1fac4 1691 if(!is_array($value)){
1692 $value = (string) $value;
1693 }
1694 else{
1695 //@todo what do we do about passed in arrays. For many of these fields
1696 // the missing piece of functionality is separating them to a separated string
1697 // & many save incorrectly. But can we change them wholesale?
1698 }
6a488035
TO
1699 if ($value ) {
1700 if (!CRM_Utils_Rule::xssString($value)) {
1701 throw new Exception('Illegal characters in input (potential scripting attack)');
1702 }
70f7ba9e 1703 if ($fieldName == 'currency') {
6a488035
TO
1704 if (!CRM_Utils_Rule::currencyCode($value)) {
1705 throw new Exception("Currency not a valid code: $value");
1706 }
1707 }
f39bacdf 1708 if (!empty($fieldInfo['pseudoconstant']) || !empty($fieldInfo['options']) || !empty($fieldInfo['enumValues'])) {
6fa8a394 1709 _civicrm_api3_api_match_pseudoconstant($params, $entity, $fieldName, $fieldInfo);
6a488035
TO
1710 }
1711 // Check our field length
1712 elseif (is_string($value) && !empty($fieldInfo['maxlength']) && strlen($value) > $fieldInfo['maxlength']) {
70f7ba9e
CW
1713 throw new API_Exception("Value for $fieldName is " . strlen($value) . " characters - This field has a maxlength of {$fieldInfo['maxlength']} characters.",
1714 2100, array('field' => $fieldName)
6a488035
TO
1715 );
1716 }
1717 }
1718}
70f7ba9e
CW
1719
1720/**
1721 * Validate & swap out any pseudoconstants / options
1722 *
1723 * @param $params: api parameters
1724 * @param $entity: api entity name
6fa8a394
CW
1725 * @param $fieldName: field name used in api call (not necessarily the canonical name)
1726 * @param $fieldInfo: getfields meta-data
70f7ba9e 1727 */
6fa8a394
CW
1728function _civicrm_api3_api_match_pseudoconstant(&$params, $entity, $fieldName, $fieldInfo) {
1729 $options = CRM_Utils_Array::value('options', $fieldInfo);
1730 if (!$options) {
94359f7e 1731 if(strtolower($entity) == 'profile' && !empty($fieldInfo['entity'])) {
1732 // we need to get the options from the entity the field relates to
1733 $entity = $fieldInfo['entity'];
1734 }
786ad6e1 1735 $options = civicrm_api($entity, 'getoptions', array('version' => 3, 'field' => $fieldInfo['name'], 'context' => 'validate'));
6fa8a394
CW
1736 $options = CRM_Utils_Array::value('values', $options, array());
1737 }
70f7ba9e 1738
5b932170 1739 // If passed a value-separated string, explode to an array, then re-implode after matching values
70f7ba9e
CW
1740 $implode = FALSE;
1741 if (is_string($params[$fieldName]) && strpos($params[$fieldName], CRM_Core_DAO::VALUE_SEPARATOR) !== FALSE) {
1742 $params[$fieldName] = CRM_Utils_Array::explodePadded($params[$fieldName]);
1743 $implode = TRUE;
1744 }
1745 // If passed multiple options, validate each
1746 if (is_array($params[$fieldName])) {
1747 foreach ($params[$fieldName] as &$value) {
736f9c2d
CW
1748 if (!is_array($value)) {
1749 _civicrm_api3_api_match_pseudoconstant_value($value, $options, $fieldName);
1750 }
70f7ba9e
CW
1751 }
1752 // TODO: unwrap the call to implodePadded from the conditional and do it always
1753 // need to verify that this is safe and doesn't break anything though.
1754 // Better yet would be to leave it as an array and ensure that every dao/bao can handle array input
1755 if ($implode) {
1756 CRM_Utils_Array::implodePadded($params[$fieldName]);
1757 }
1758 }
1759 else {
1760 _civicrm_api3_api_match_pseudoconstant_value($params[$fieldName], $options, $fieldName);
1761 }
1762}
1763
1764/**
1765 * Validate & swap a single option value for a field
1766 *
1767 * @param $value: field value
1768 * @param $options: array of options for this field
6fa8a394 1769 * @param $fieldName: field name used in api call (not necessarily the canonical name)
916b48b6 1770 * @throws API_Exception
70f7ba9e
CW
1771 */
1772function _civicrm_api3_api_match_pseudoconstant_value(&$value, $options, $fieldName) {
1773 // If option is a key, no need to translate
b4bb913e 1774 if (array_key_exists($value, $options)) {
70f7ba9e
CW
1775 return;
1776 }
70f7ba9e 1777
a4c5e9a3
CW
1778 // Translate value into key
1779 $newValue = array_search($value, $options);
1780 if ($newValue !== FALSE) {
1781 $value = $newValue;
1782 return;
1783 }
70f7ba9e 1784 // Case-insensitive matching
80085473 1785 $newValue = strtolower($value);
70f7ba9e 1786 $options = array_map("strtolower", $options);
80085473
CW
1787 $newValue = array_search($newValue, $options);
1788 if ($newValue === FALSE) {
1789 throw new API_Exception("'$value' is not a valid option for field $fieldName", 2001, array('error_field' => $fieldName));
70f7ba9e 1790 }
80085473 1791 $value = $newValue;
70f7ba9e
CW
1792}
1793
1794/**
1795 * Returns the canonical name of a field
a38a89fc 1796 * @param $entity: api entity name (string should already be standardized - no camelCase)
70f7ba9e
CW
1797 * @param $fieldName: any variation of a field's name (name, unique_name, api.alias)
1798 *
1799 * @return (string|bool) fieldName or FALSE if the field does not exist
1800 */
1801function _civicrm_api3_api_resolve_alias($entity, $fieldName) {
a38a89fc 1802 if (strpos($fieldName, 'custom_') === 0 && is_numeric($fieldName[7])) {
a4c5e9a3
CW
1803 return $fieldName;
1804 }
1805 if ($fieldName == "{$entity}_id") {
1806 return 'id';
1807 }
70f7ba9e
CW
1808 $result = civicrm_api($entity, 'getfields', array(
1809 'version' => 3,
1810 'action' => 'create',
1811 ));
1812 $meta = $result['values'];
e354351f 1813 if (!isset($meta[$fieldName]['name']) && isset($meta[$fieldName . '_id'])) {
1814 $fieldName = $fieldName . '_id';
1815 }
70f7ba9e
CW
1816 if (isset($meta[$fieldName])) {
1817 return $meta[$fieldName]['name'];
1818 }
70f7ba9e
CW
1819 foreach ($meta as $info) {
1820 if ($fieldName == CRM_Utils_Array::value('uniqueName', $info)) {
1821 return $info['name'];
1822 }
1823 if (array_search($fieldName, CRM_Utils_Array::value('api.aliases', $info, array())) !== FALSE) {
1824 return $info['name'];
1825 }
1826 }
1827 return FALSE;
1828}