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