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