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