Merge pull request #743 from kurund/CRM-12601
[civicrm-core.git] / api / v3 / utils.php
CommitLineData
6a488035
TO
1<?php
2// $Id$
3
4/*
5 +--------------------------------------------------------------------+
6 | CiviCRM version 4.3 |
7 +--------------------------------------------------------------------+
8 | Copyright CiviCRM LLC (c) 2004-2013 |
9 +--------------------------------------------------------------------+
10 | This file is a part of CiviCRM. |
11 | |
12 | CiviCRM is free software; you can copy, modify, and distribute it |
13 | under the terms of the GNU Affero General Public License |
14 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
15 | |
16 | CiviCRM is distributed in the hope that it will be useful, but |
17 | WITHOUT ANY WARRANTY; without even the implied warranty of |
18 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
19 | See the GNU Affero General Public License for more details. |
20 | |
21 | You should have received a copy of the GNU Affero General Public |
22 | License and the CiviCRM Licensing Exception along |
23 | with this program; if not, contact CiviCRM LLC |
24 | at info[AT]civicrm[DOT]org. If you have questions about the |
25 | GNU Affero General Public License or the licensing of CiviCRM, |
26 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
27 +--------------------------------------------------------------------+
28*/
29
30/**
31 * File for CiviCRM APIv3 utilitity functions
32 *
33 * @package CiviCRM_APIv3
34 * @subpackage API_utils
35 *
36 * @copyright CiviCRM LLC (c) 2004-2013
37 * @version $Id: utils.php 30879 2010-11-22 15:45:55Z shot $
38 *
39 */
40
41/**
42 * Initialize CiviCRM - should be run at the start of each API function
43 */
44function _civicrm_api3_initialize() {
45 require_once 'CRM/Core/Config.php';
46 $config = CRM_Core_Config::singleton();
47 }
48
11e09c59 49/**
6a488035
TO
50 * Wrapper Function for civicrm_verify_mandatory to make it simple to pass either / or fields for checking
51 *
52 * @param array $params array of fields to check
53 * @param array $daoName string DAO to check for required fields (create functions only)
54 * @param array $keys list of required fields options. One of the options is required
55 * @return null or throws error if there the required fields not present
56
57 * @
58 *
59 */
60function civicrm_api3_verify_one_mandatory($params, $daoName = NULL, $keyoptions = array(
61 )) {
62 $keys = array(array());
63 foreach ($keyoptions as $key) {
64 $keys[0][] = $key;
65 }
66 civicrm_api3_verify_mandatory($params, $daoName, $keys);
67}
68
11e09c59 69/**
6a488035
TO
70 * Function to check mandatory fields are included
71 *
72 * @param array $params array of fields to check
73 * @param array $daoName string DAO to check for required fields (create functions only)
74 * @param array $keys list of required fields. A value can be an array denoting that either this or that is required.
75 * @param bool $verifyDAO
76 *
77 * @return null or throws error if there the required fields not present
78 *
79 * @todo see notes on _civicrm_api3_check_required_fields regarding removing $daoName param
80 */
81function civicrm_api3_verify_mandatory($params, $daoName = NULL, $keys = array(
82 ), $verifyDAO = TRUE) {
83
84 $unmatched = array();
85 if ($daoName != NULL && $verifyDAO && empty($params['id'])) {
86 $unmatched = _civicrm_api3_check_required_fields($params, $daoName, TRUE);
87 if (!is_array($unmatched)) {
88 $unmatched = array();
89 }
90 }
91
92 if (!empty($params['id'])) {
93 $keys = array('version');
94 }
95 else {
96 if (!in_array('version', $keys)) {
97 // required from v3 onwards
98 $keys[] = 'version';
99 }
100 }
101 foreach ($keys as $key) {
102 if (is_array($key)) {
103 $match = 0;
104 $optionset = array();
105 foreach ($key as $subkey) {
106 if (!array_key_exists($subkey, $params) || empty($params[$subkey])) {
107 $optionset[] = $subkey;
108 }
109 else {
110 // as long as there is one match then we don't need to rtn anything
111 $match = 1;
112 }
113 }
114 if (empty($match) && !empty($optionset)) {
115 $unmatched[] = "one of (" . implode(", ", $optionset) . ")";
116 }
117 }
118 else {
119 if (!array_key_exists($key, $params) || empty($params[$key])) {
120 $unmatched[] = $key;
121 }
122 }
123 }
124 if (!empty($unmatched)) {
125 throw new API_Exception("Mandatory key(s) missing from params array: " . implode(", ", $unmatched),"mandatory_missing",array("fields"=>$unmatched));
126 }
127}
128
129/**
130 *
131 * @param <type> $msg
132 * @param <type> $data
133 * @param object $dao DAO / BAO object to be freed here
134 *
135 * @return <type>
136 */
a65e2e55 137function civicrm_api3_create_error($msg, $data = array(), &$dao = NULL) {
6a488035
TO
138 //fix me - $dao should be param 4 & 3 should be $apiRequest
139 if (is_object($dao)) {
140 $dao->free();
141 }
142
143 if (is_array($dao)) {
144 if ($msg == 'DB Error: constraint violation' || substr($msg, 0,9) == 'DB Error:' || $msg == 'DB Error: already exists') {
145 try {
53ed8466 146 _civicrm_api3_validate_fields($dao['entity'], $dao['action'], $dao['params'], TRUE);
6a488035
TO
147 }
148 catch(Exception $e) {
149 $msg = $e->getMessage();
150 }
151 }
152 }
153 $data['is_error'] = 1;
154 $data['error_message'] = $msg;
155 if (is_array($dao) && isset($dao['params']) && is_array($dao['params']) && CRM_Utils_Array::value('api.has_parent', $dao['params'])) {
156 $errorCode = empty($data['error_code']) ? 'chained_api_failed' : $data['error_code'];
157 throw new API_Exception('Error in call to ' . $dao['entity'] . '_' . $dao['action'] . ' : ' . $msg, $errorCode, $data);
158 }
159 return $data;
160}
161
162/**
163 * Format array in result output styple
164 *
165 * @param array $values values generated by API operation (the result)
166 * @param array $params parameters passed into API call
167 * @param string $entity the entity being acted on
168 * @param string $action the action passed to the API
169 * @param object $dao DAO object to be freed here
170 * @param array $extraReturnValues additional values to be added to top level of result array(
171 * - this param is currently used for legacy behaviour support
172 *
173 * @return array $result
174 */
175function civicrm_api3_create_success($values = 1, $params = array(
176 ), $entity = NULL, $action = NULL, &$dao = NULL, $extraReturnValues = array()) {
177 $result = array();
178 $result['is_error'] = 0;
179 //lets set the ['id'] field if it's not set & we know what the entity is
180 if (is_array($values) && !empty($entity)) {
181 foreach ($values as $key => $item) {
182 if (empty($item['id']) && !empty($item[$entity . "_id"])) {
183 $values[$key]['id'] = $item[$entity . "_id"];
184 }
185 }
186 }
187 //if ( array_key_exists ('debug',$params) && is_object ($dao)) {
188 if (is_array($params) && array_key_exists('debug', $params)) {
189 if (!is_object($dao)) {
190 $d = _civicrm_api3_get_DAO(CRM_Utils_Array::value('entity', $params));
191 if (!empty($d)) {
192 $file = str_replace('_', '/', $d) . ".php";
193 require_once ($file);
194 $dao = new $d();
195 }
196 }
197 if (is_string($action) && $action != 'getfields') {
198 $apiFields = civicrm_api($entity, 'getfields', array('version' => 3, 'action' => $action) + $params);
199 }
200 elseif ($action != 'getfields') {
201 $apiFields = civicrm_api($entity, 'getfields', array('version' => 3) + $params);
202 }
203 else {
204 $apiFields = FALSE;
205 }
206
207 $allFields = array();
208 if ($action != 'getfields' && is_array($apiFields) && is_array(CRM_Utils_Array::value('values', $apiFields))) {
209 $allFields = array_keys($apiFields['values']);
210 }
211 $paramFields = array_keys($params);
212 $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'));
213 if ($undefined) {
214 $result['undefined_fields'] = array_merge($undefined);
215 }
216 }
217 if (is_object($dao)) {
218 $dao->free();
219 }
220
221 $result['version'] = 3;
222 if (is_array($values)) {
223 $result['count'] = count($values);
224
225 // Convert value-separated strings to array
226 _civicrm_api3_separate_values($values);
227
228 if ($result['count'] == 1) {
229 list($result['id']) = array_keys($values);
230 }
231 elseif (!empty($values['id']) && is_int($values['id'])) {
232 $result['id'] = $values['id'];
233 }
234 }
235 else {
236 $result['count'] = !empty($values) ? 1 : 0;
237 }
238
239 if (is_array($values) && isset($params['sequential']) &&
240 $params['sequential'] == 1
241 ) {
242 $result['values'] = array_values($values);
243 }
244 else {
245 $result['values'] = $values;
246 }
247
248 return array_merge($result, $extraReturnValues);
249}
11e09c59
TO
250
251/**
6a488035
TO
252 * Load the DAO of the entity
253 */
254function _civicrm_api3_load_DAO($entity) {
255 $dao = _civicrm_api3_get_DAO($entity);
256 if (empty($dao)) {
257 return FALSE;
258 }
259 $file = str_replace('_', '/', $dao) . ".php";
260 require_once ($file);
261 $d = new $dao();
262 return $d;
263}
11e09c59
TO
264
265/**
6a488035
TO
266 * Function to return the DAO of the function or Entity
267 * @param $name is either a function of the api (civicrm_{entity}_create or the entity name
268 * return the DAO name to manipulate this function
269 * eg. "civicrm_api3_contact_create" or "Contact" will return "CRM_Contact_BAO_Contact"
270 */
271function _civicrm_api3_get_DAO($name) {
6a488035
TO
272 if (strpos($name, 'civicrm_api3') !== FALSE) {
273 $last = strrpos($name, '_');
274 // len ('civicrm_api3_') == 13
275 $name = substr($name, 13, $last - 13);
276 }
277
278 if (strtolower($name) == 'individual' || strtolower($name) == 'household' || strtolower($name) == 'organization') {
279 $name = 'Contact';
280 }
281
282 //hack to deal with incorrectly named BAO/DAO - see CRM-10859 - remove after rename
283 if($name == 'price_set'){
284 return 'CRM_Price_DAO_Set';
285 }
286 if($name == 'price_field'){
287 return 'CRM_Price_DAO_Field';
288 }
289 if($name == 'price_field_value'){
290 return 'CRM_Price_DAO_FieldValue';
291 }
292 // these aren't listed on ticket CRM-10859 - but same problem - lack of standardisation
293 if($name == 'mailing_job' || $name == 'MailingJob'){
294 return 'CRM_Mailing_BAO_Job';
295 }
296 if($name == 'mailing_recipients' || $name == 'MailingRecipients'){
297 return 'CRM_Mailing_BAO_Recipients';
298 }
299 if(strtolower($name) == 'im'){
300 return 'CRM_Core_BAO_IM';
301 }
302
4d1d7aca 303 return CRM_Core_DAO_AllCoreTables::getFullName(_civicrm_api_get_camel_name($name, 3));
6a488035
TO
304}
305
11e09c59 306/**
6a488035
TO
307 * Function to return the DAO of the function or Entity
308 * @param $name is either a function of the api (civicrm_{entity}_create or the entity name
309 * return the DAO name to manipulate this function
310 * eg. "civicrm_contact_create" or "Contact" will return "CRM_Contact_BAO_Contact"
311 */
312function _civicrm_api3_get_BAO($name) {
313 $dao = _civicrm_api3_get_DAO($name);
314 $dao = str_replace("DAO", "BAO", $dao);
315 return $dao;
316}
317
318/**
319 * Recursive function to explode value-separated strings into arrays
320 *
321 */
322function _civicrm_api3_separate_values(&$values) {
323 $sp = CRM_Core_DAO::VALUE_SEPARATOR;
324 foreach ($values as $key => & $value) {
325 if (is_array($value)) {
326 _civicrm_api3_separate_values($value);
327 }
328 elseif (is_string($value)) {
329 if($key == 'case_type_id'){// this is to honor the way case API was originally written
330 $value = trim(str_replace($sp, ',', $value), ',');
331 }
332 elseif (strpos($value, $sp) !== FALSE) {
333 $value = explode($sp, trim($value, $sp));
334 }
335 }
336 }
337}
11e09c59
TO
338
339/**
6a488035
TO
340 * This is a wrapper for api_store_values which will check the suitable fields using getfields
341 * rather than DAO->fields
342 *
343 * Getfields has handling for how to deal with uniquenames which dao->fields doesn't
344 *
345 * Note this is used by BAO type create functions - eg. contribution
346 * @param string $entity
347 * @param array $params
348 * @param array $values
349 */
350function _civicrm_api3_filter_fields_for_bao($entity, &$params, &$values){
351 $fields = civicrm_api($entity,'getfields', array('version' => 3,'action' => 'create'));
352 $fields = $fields['values'];
353 _civicrm_api3_store_values($fields, $params, $values);
354}
355/**
356 *
357 * @param array $fields
358 * @param array $params
359 * @param array $values
360 *
361 * @return Bool $valueFound
362 */
363function _civicrm_api3_store_values(&$fields, &$params, &$values) {
364 $valueFound = FALSE;
365
366 $keys = array_intersect_key($params, $fields);
367 foreach ($keys as $name => $value) {
368 if ($name !== 'id') {
369 $values[$name] = $value;
370 $valueFound = TRUE;
371 }
372 }
373 return $valueFound;
374}
375/**
376 * The API supports 2 types of get requestion. The more complex uses the BAO query object.
377 * This is a generic function for those functions that call it
378 *
379 * At the moment only called by contact we should extend to contribution &
380 * others that use the query object. Note that this function passes permission information in.
381 * The others don't
382 *
383 * @param array $params as passed into api get or getcount function
384 * @param array $options array of options (so we can modify the filter)
385 * @param bool $getCount are we just after the count
386 */
53ed8466 387function _civicrm_api3_get_using_query_object($entity, $params, $additional_options = array(), $getCount = NULL){
6a488035
TO
388
389 // Convert id to e.g. contact_id
390 if (empty($params[$entity . '_id']) && isset($params['id'])) {
391 $params[$entity . '_id'] = $params['id'];
392 }
393 unset($params['id']);
394
395 $options = _civicrm_api3_get_options_from_params($params, TRUE);
396
397 $inputParams = array_merge(
398 CRM_Utils_Array::value('input_params', $options, array()),
399 CRM_Utils_Array::value('input_params', $additional_options, array())
400 );
401 $returnProperties = array_merge(
402 CRM_Utils_Array::value('return', $options, array()),
403 CRM_Utils_Array::value('return', $additional_options, array())
404 );
405 if(empty($returnProperties)){
53ed8466 406 $returnProperties = NULL;
6a488035
TO
407 }
408 if(!empty($params['check_permissions'])){
409 // we will filter query object against getfields
410 $fields = civicrm_api($entity, 'getfields', array('version' => 3, 'action' => 'get'));
411 // we need to add this in as earlier in this function 'id' was unset in favour of $entity_id
412 $fields['values'][$entity . '_id'] = array();
413 $varsToFilter = array('returnProperties', 'inputParams');
414 foreach ($varsToFilter as $varToFilter){
415 if(!is_array($$varToFilter)){
416 continue;
417 }
418 //I was going to throw an exception rather than silently filter out - but
419 //would need to diff out of exceptions arr other keys like 'options', 'return', 'api. etcetc
420 //so we are silently ignoring parts of their request
421 //$exceptionsArr = array_diff(array_keys($$varToFilter), array_keys($fields['values']));
422 $$varToFilter = array_intersect_key($$varToFilter, $fields['values']);
423 }
424 }
425 $options = array_merge($options,$additional_options);
426 $sort = CRM_Utils_Array::value('sort', $options, NULL);
427 $offset = CRM_Utils_Array::value('offset', $options, NULL);
428 $limit = CRM_Utils_Array::value('limit', $options, NULL);
429 $smartGroupCache = CRM_Utils_Array::value('smartGroupCache', $params);
430
431 if($getCount){
432 $limit = NULL;
433 $returnProperties = NULL;
434 }
435
436 $newParams = CRM_Contact_BAO_Query::convertFormValues($inputParams);
437 $skipPermissions = CRM_Utils_Array::value('check_permissions', $params)? 0 :1;
438 list($entities, $options) = CRM_Contact_BAO_Query::apiQuery(
439 $newParams,
440 $returnProperties,
441 NULL,
442 $sort,
443 $offset ,
444 $limit,
445 $smartGroupCache,
446 $getCount,
447 $skipPermissions
448 );
449 if ($getCount) { // only return the count of contacts
450 return $entities;
451 }
452
453 return $entities;
454}
11e09c59
TO
455
456/**
6a488035
TO
457 * Function transfers the filters being passed into the DAO onto the params object
458 */
459function _civicrm_api3_dao_set_filter(&$dao, $params, $unique = TRUE, $entity) {
460 $entity = substr($dao->__table, 8);
461
462 $allfields = _civicrm_api3_build_fields_array($dao, $unique);
463
464 $fields = array_intersect(array_keys($allfields), array_keys($params));
465 if (isset($params[$entity . "_id"])) {
466 //if entity_id is set then treat it as ID (will be overridden by id if set)
467 $dao->id = $params[$entity . "_id"];
468 }
469 //apply options like sort
470 _civicrm_api3_apply_options_to_dao($params, $dao, $entity);
471
472 //accept filters like filter.activity_date_time_high
473 // std is now 'filters' => ..
474 if (strstr(implode(',', array_keys($params)), 'filter')) {
475 if (isset($params['filters']) && is_array($params['filters'])) {
476 foreach ($params['filters'] as $paramkey => $paramvalue) {
477 _civicrm_api3_apply_filters_to_dao($paramkey, $paramvalue, $dao);
478 }
479 }
480 else {
481 foreach ($params as $paramkey => $paramvalue) {
482 if (strstr($paramkey, 'filter')) {
483 _civicrm_api3_apply_filters_to_dao(substr($paramkey, 7), $paramvalue, $dao);
484 }
485 }
486 }
487 }
488 // http://issues.civicrm.org/jira/browse/CRM-9150 - stick with 'simple' operators for now
489 // support for other syntaxes is discussed in ticket but being put off for now
490 $acceptedSQLOperators = array('=', '<=', '>=', '>', '<', 'LIKE', "<>", "!=", "NOT LIKE", 'IN', 'NOT IN', 'BETWEEN', 'NOT BETWEEN');
491 if (!$fields) {
492 $fields = array();
493 }
494
495 foreach ($fields as $field) {
496 if (is_array($params[$field])) {
497 //get the actual fieldname from db
498 $fieldName = $allfields[$field]['name'];
499 //array is the syntax for SQL clause
500 foreach ($params[$field] as $operator => $criteria) {
501 if (in_array($operator, $acceptedSQLOperators)) {
502 switch ($operator) {
503 // unary operators
504
505 case 'IS NULL':
506 case 'IS NOT NULL':
507 $dao->whereAdd(sprintf('%s %s', $fieldName, $operator));
508 break;
509
510 // ternary operators
511
512 case 'BETWEEN':
513 case 'NOT BETWEEN':
514 if (empty($criteria[0]) || empty($criteria[1])) {
515 throw new exception("invalid criteria for $operator");
516 }
517 $dao->whereAdd(sprintf('%s ' . $operator . ' "%s" AND "%s"', $fieldName, CRM_Core_DAO::escapeString($criteria[0]), CRM_Core_DAO::escapeString($criteria[1])));
518 break;
519
520 // n-ary operators
521
522 case 'IN':
523 case 'NOT IN':
524 if (empty($criteria)) {
525 throw new exception("invalid criteria for $operator");
526 }
527 $escapedCriteria = array_map(array('CRM_Core_DAO', 'escapeString'), $criteria);
528 $dao->whereAdd(sprintf('%s %s ("%s")', $fieldName, $operator, implode('", "', $escapedCriteria)));
529 break;
530
531 // binary operators
532
533 default:
534
535 $dao->whereAdd(sprintf('%s %s "%s"', $fieldName, $operator, CRM_Core_DAO::escapeString($criteria)));
536 }
537 }
538 }
539 }
540 else {
541 if ($unique) {
ed22af33
TO
542 $daoFieldName = $allfields[$field]['name'];
543 if (empty($daoFieldName)) {
544 throw new API_Exception("Failed to determine field name for \"$field\"");
545 }
546 $dao->{$daoFieldName} = $params[$field];
6a488035
TO
547 }
548 else {
549 $dao->$field = $params[$field];
550 }
551 }
552 }
553 if (!empty($params['return']) && is_array($params['return'])) {
554 $dao->selectAdd();
555 $allfields = _civicrm_api3_get_unique_name_array($dao);
556 $returnMatched = array_intersect($params['return'], $allfields);
557 $returnUniqueMatched = array_intersect(
558 array_diff(// not already matched on the field names
559 $params['return'],
560 $returnMatched),
561 array_flip($allfields)// but a match for the field keys
562 );
563
564 foreach ($returnMatched as $returnValue) {
565 $dao->selectAdd($returnValue);
566 }
567 foreach ($returnUniqueMatched as $uniqueVal){
568 $dao->selectAdd($allfields[$uniqueVal]);
569
570 }
571 $dao->selectAdd('id');
572 }
573}
574
11e09c59 575/**
6a488035
TO
576 * Apply filters (e.g. high, low) to DAO object (prior to find)
577 * @param string $filterField field name of filter
578 * @param string $filterValue field value of filter
579 * @param object $dao DAO object
580 */
581function _civicrm_api3_apply_filters_to_dao($filterField, $filterValue, &$dao) {
582 if (strstr($filterField, 'high')) {
583 $fieldName = substr($filterField, 0, -5);
584 $dao->whereAdd("($fieldName <= $filterValue )");
585 }
586 if (strstr($filterField, 'low')) {
587 $fieldName = substr($filterField, 0, -4);
588 $dao->whereAdd("($fieldName >= $filterValue )");
589 }
590 if($filterField == 'is_current' && $filterValue == 1){
591 $todayStart = date('Ymd000000', strtotime('now'));
592 $todayEnd = date('Ymd235959', strtotime('now'));
593 $dao->whereAdd("(start_date <= '$todayStart' OR start_date IS NULL) AND (end_date >= '$todayEnd' OR end_date IS NULL)");
594 if(property_exists($dao, 'is_active')){
595 $dao->whereAdd('is_active = 1');
596 }
597 }
598}
11e09c59
TO
599
600/**
6a488035
TO
601 * Get sort, limit etc options from the params - supporting old & new formats.
602 * get returnproperties for legacy
603 * @param array $params params array as passed into civicrm_api
604 * @param bool $queryObject - is this supporting a queryobject api (e.g contact) - if so we support more options
605 * for legacy report & return a unique fields array
606 * @return array $options options extracted from params
607 */
53ed8466 608function _civicrm_api3_get_options_from_params(&$params, $queryObject = FALSE, $entity = '', $action = '') {
6a488035
TO
609 $sort = CRM_Utils_Array::value('sort', $params, 0);
610 $sort = CRM_Utils_Array::value('option.sort', $params, $sort);
611 $sort = CRM_Utils_Array::value('option_sort', $params, $sort);
612
613 $offset = CRM_Utils_Array::value('offset', $params, 0);
614 $offset = CRM_Utils_Array::value('option.offset', $params, $offset);
615 // dear PHP thought it would be a good idea to transform a.b into a_b in the get/post
616 $offset = CRM_Utils_Array::value('option_offset', $params, $offset);
617
618 $limit = CRM_Utils_Array::value('rowCount', $params, 25);
619 $limit = CRM_Utils_Array::value('option.limit', $params, $limit);
620 $limit = CRM_Utils_Array::value('option_limit', $params, $limit);
621
622 if (is_array(CRM_Utils_Array::value('options', $params))) {
623 $offset = CRM_Utils_Array::value('offset', $params['options'], $offset);
624 $limit = CRM_Utils_Array::value('limit', $params['options'], $limit);
625 $sort = CRM_Utils_Array::value('sort', $params['options'], $sort);
626 }
627
628 $returnProperties = array();
629 // handle the format return =sort_name,display_name...
630 if (array_key_exists('return', $params)) {
631 if (is_array($params['return'])) {
632 $returnProperties = array_fill_keys($params['return'], 1);
633 }
634 else {
635 $returnProperties = explode(',', str_replace(' ', '', $params['return']));
636 $returnProperties = array_fill_keys($returnProperties, 1);
637 }
638 }
639 if($entity && $action =='get' ){
640 if(CRM_Utils_Array::value('id',$returnProperties)){
641 $returnProperties[$entity . '_id'] = 1;
642 unset($returnProperties['id']);
643 }
644 switch (trim(strtolower($sort))){
645 case 'id':
646 case 'id desc':
647 case 'id asc':
648 $sort = str_replace('id', $entity . '_id',$sort);
649 }
650 }
651
652
653 $options = array(
654 'offset' => $offset,
655 'sort' => $sort,
656 'limit' => $limit,
657 'return' => !empty($returnProperties) ? $returnProperties : NULL,
658 );
659 if (!$queryObject) {
660 return $options;
661 }
662 //here comes the legacy support for $returnProperties, $inputParams e.g for contat_get
663 // if the queryobject is being used this should be used
664 $inputParams = array();
665 $legacyreturnProperties = array();
666 $otherVars = array(
667 'sort', 'offset', 'rowCount', 'options','return',
668 );
669 foreach ($params as $n => $v) {
670 if (substr($n, 0, 7) == 'return.') {
671 $legacyreturnProperties[substr($n, 7)] = $v;
672 }
673 elseif($n == 'id'){
674 $inputParams[$entity. '_id'] = $v;
675 }
676 elseif (in_array($n, $otherVars)) {}
677 else{
678 $inputParams[$n] = $v;
679 }
680 }
681 $options['return'] = array_merge($returnProperties, $legacyreturnProperties);
682 $options['input_params'] = $inputParams;
683 return $options;
684}
11e09c59
TO
685
686/**
6a488035
TO
687 * Apply options (e.g. sort, limit, order by) to DAO object (prior to find)
688 * @param array $params params array as passed into civicrm_api
689 * @param object $dao DAO object
690 */
691function _civicrm_api3_apply_options_to_dao(&$params, &$dao, $entity) {
692
53ed8466 693 $options = _civicrm_api3_get_options_from_params($params,FALSE,$entity);
6a488035
TO
694 $dao->limit((int)$options['offset'], (int)$options['limit']);
695 if (!empty($options['sort'])) {
696 $dao->orderBy($options['sort']);
697 }
698}
699
11e09c59 700/**
6a488035
TO
701 * build fields array. This is the array of fields as it relates to the given DAO
702 * returns unique fields as keys by default but if set but can return by DB fields
703 */
704function _civicrm_api3_build_fields_array(&$bao, $unique = TRUE) {
705 $fields = $bao->fields();
706 if ($unique) {
707 if(!CRM_Utils_Array::value('id', $fields)){
708 $entity = _civicrm_api_get_entity_name_from_dao($bao);
709 $fields['id'] = $fields[$entity . '_id'];
710 unset($fields[$entity . '_id']);
711 }
712 return $fields;
713 }
714
715 foreach ($fields as $field) {
716 $dbFields[$field['name']] = $field;
717 }
718 return $dbFields;
719}
720
11e09c59 721/**
6a488035
TO
722 * build fields array. This is the array of fields as it relates to the given DAO
723 * returns unique fields as keys by default but if set but can return by DB fields
724 */
725function _civicrm_api3_get_unique_name_array(&$bao) {
726 $fields = $bao->fields();
727 foreach ($fields as $field => $values) {
728 $uniqueFields[$field] = CRM_Utils_Array::value('name',$values, $field);
729 }
730 return $uniqueFields;
731}
732
6a488035
TO
733/**
734 * Converts an DAO object to an array
735 *
736 * @param object $dao (reference )object to convert
737 * @params array of arrays (key = id) of array of fields
738 * @static void
739 * @access public
740 */
741function _civicrm_api3_dao_to_array($dao, $params = NULL, $uniqueFields = TRUE, $entity = "") {
742 $result = array();
743 if (empty($dao) || !$dao->find()) {
744 return array();
745 }
746
747 //if custom fields are required we will endeavour to set them . NB passing $entity in might be a bit clunky / unrequired
748 if (!empty($entity) && CRM_Utils_Array::value('return', $params) && is_array($params['return'])) {
749 foreach ($params['return'] as $return) {
750 if (substr($return, 0, 6) == 'custom') {
751 $custom = TRUE;
752 }
753 }
754 }
755
756
757 $fields = array_keys(_civicrm_api3_build_fields_array($dao, $uniqueFields));
758
759 while ($dao->fetch()) {
760 $tmp = array();
761 foreach ($fields as $key) {
762 if (array_key_exists($key, $dao)) {
763 // not sure on that one
764 if ($dao->$key !== NULL) {
765 $tmp[$key] = $dao->$key;
766 }
767 }
768 }
769 $result[$dao->id] = $tmp;
770 if (!empty($custom)) {
771 _civicrm_api3_custom_data_get($result[$dao->id], $entity, $dao->id);
772 }
773 }
774
775
776 return $result;
777}
778
779/**
780 * Converts an object to an array
781 *
782 * @param object $dao (reference) object to convert
783 * @param array $values (reference) array
784 * @param array $uniqueFields
785 *
786 * @return array
787 * @static void
788 * @access public
789 */
790function _civicrm_api3_object_to_array(&$dao, &$values, $uniqueFields = FALSE) {
791
792 $fields = _civicrm_api3_build_fields_array($dao, $uniqueFields);
793 foreach ($fields as $key => $value) {
794 if (array_key_exists($key, $dao)) {
795 $values[$key] = $dao->$key;
796 }
797 }
798}
799
11e09c59 800/**
6a488035
TO
801 * Wrapper for _civicrm_object_to_array when api supports unique fields
802 */
803function _civicrm_api3_object_to_array_unique_fields(&$dao, &$values) {
804 return _civicrm_api3_object_to_array($dao, $values, TRUE);
805}
806
807/**
808 *
809 * @param array $params
810 * @param array $values
811 * @param string $extends entity that this custom field extends (e.g. contribution, event, contact)
812 * @param string $entityId ID of entity per $extends
813 */
814function _civicrm_api3_custom_format_params($params, &$values, $extends, $entityId = NULL) {
815 $values['custom'] = array();
816 foreach ($params as $key => $value) {
817 list($customFieldID, $customValueID) = CRM_Core_BAO_CustomField::getKeyID($key, TRUE);
818 if ($customFieldID) {
819 CRM_Core_BAO_CustomField::formatCustomField($customFieldID, $values['custom'],
820 $value, $extends, $customValueID, $entityId, FALSE, FALSE
821 );
822 }
823 }
824}
825
826/**
827 * @deprecated
828 * This function ensures that we have the right input parameters
829 *
830 * This function is only called when $dao is passed into verify_mandatory.
831 * The practice of passing $dao into verify_mandatory turned out to be
832 * unsatisfactory as the required fields @ the dao level is so diffent to the abstract
833 * api level. Hence the intention is to remove this function
834 * & the associated param from viery_mandatory
835 *
836 * @param array $params Associative array of property name/value
837 * pairs to insert in new history.
838 * @daoName string DAO to check params agains
839 *
840 * @return bool should the missing fields be returned as an array (core error created as default)
841 *
842 * @return bool true if all fields present, depending on $result a core error is created of an array of missing fields is returned
843 * @access public
844 */
845function _civicrm_api3_check_required_fields($params, $daoName, $return = FALSE) {
846 //@deprecated - see notes
847 if (isset($params['extends'])) {
848 if (($params['extends'] == 'Activity' ||
849 $params['extends'] == 'Phonecall' ||
850 $params['extends'] == 'Meeting' ||
851 $params['extends'] == 'Group' ||
852 $params['extends'] == 'Contribution'
853 ) &&
854 ($params['style'] == 'Tab')
855 ) {
856 return civicrm_api3_create_error(ts("Can not create Custom Group in Tab for " . $params['extends']));
857 }
858 }
859
860 $dao = new $daoName();
861 $fields = $dao->fields();
862
863 $missing = array();
864 foreach ($fields as $k => $v) {
865 if ($v['name'] == 'id') {
866 continue;
867 }
868
869 if (CRM_Utils_Array::value('required', $v)) {
870 // 0 is a valid input for numbers, CRM-8122
871 if (!isset($params[$k]) || (empty($params[$k]) && !($params[$k] === 0))) {
872 $missing[] = $k;
873 }
874 }
875 }
876
877 if (!empty($missing)) {
878 if (!empty($return)) {
879 return $missing;
880 }
881 else {
882 return civicrm_api3_create_error(ts("Required fields " . implode(',', $missing) . " for $daoName are not present"));
883 }
884 }
885
886 return TRUE;
887}
888
889/**
890 * Check permissions for a given API call.
891 *
892 * @param $entity string API entity being accessed
893 * @param $action string API action being performed
894 * @param $params array params of the API call
895 * @param $throw bool whether to throw exception instead of returning false
896 *
897 * @return bool whether the current API user has the permission to make the call
898 */
899function _civicrm_api3_api_check_permission($entity, $action, &$params, $throw = TRUE) {
900 // return early unless we’re told explicitly to do the permission check
901 if (empty($params['check_permissions']) or $params['check_permissions'] == FALSE) {
902 return TRUE;
903 }
904
905 require_once 'CRM/Core/Permission.php';
906
aa5ba569 907 require_once 'CRM/Core/DAO/permissions.php';
6a488035
TO
908 $permissions = _civicrm_api3_permissions($entity, $action, $params);
909
910 // $params might’ve been reset by the alterAPIPermissions() hook
911 if (isset($params['check_permissions']) and $params['check_permissions'] == FALSE) {
912 return TRUE;
913 }
914
915 foreach ($permissions as $perm) {
916 if (!CRM_Core_Permission::check($perm)) {
917 if ($throw) {
918 throw new Exception("API permission check failed for $entity/$action call; missing permission: $perm.");
919 }
920 else {
921 return FALSE;
922 }
923 }
924 }
925 return TRUE;
926}
927
11e09c59 928/**
6a488035
TO
929 * Function to do a 'standard' api get - when the api is only doing a $bao->find then use this
930 *
931 * @param string $bao_name name of BAO
932 * @param array $params params from api
933 * @param bool $returnAsSuccess return in api success format
934 */
935function _civicrm_api3_basic_get($bao_name, &$params, $returnAsSuccess = TRUE, $entity = "") {
936 $bao = new $bao_name();
937 _civicrm_api3_dao_set_filter($bao, $params, TRUE,$entity);
938 if ($returnAsSuccess) {
939 return civicrm_api3_create_success(_civicrm_api3_dao_to_array($bao, $params, FALSE, $entity), $params, $entity);
940 }
941 else {
942 return _civicrm_api3_dao_to_array($bao, $params, FALSE, $entity);
943 }
944}
945
11e09c59 946/**
6a488035
TO
947 * Function to do a 'standard' api create - when the api is only doing a $bao::create then use this
948 * @param string $bao_name Name of BAO Class
949 * @param array $params parameters passed into the api call
950 * @param string $entity Entity - pass in if entity is non-standard & required $ids array
951 */
53ed8466 952function _civicrm_api3_basic_create($bao_name, &$params, $entity = NULL) {
6a488035
TO
953
954 $args = array(&$params);
955 if(!empty($entity)){
956 $ids = array($entity => CRM_Utils_Array::value('id', $params));
957 $args[] = &$ids;
958 }
959 if (method_exists($bao_name, 'create')) {
960 $fct = 'create';
961 }
962 elseif (method_exists($bao_name, 'add')) {
963 $fct = 'add';
964 }
965 if (!isset($fct)) {
966 return civicrm_api3_create_error('Entity not created, missing create or add method for ' . $bao_name);
967 }
968 $bao = call_user_func_array(array($bao_name, $fct), $args);
969 if (is_null($bao)) {
970 return civicrm_api3_create_error('Entity not created ' . $bao_name . '::' . $fct);
971 }
972 else {
973 $values = array();
974 _civicrm_api3_object_to_array($bao, $values[$bao->id]);
53ed8466 975 return civicrm_api3_create_success($values, $params, NULL, 'create', $bao);
6a488035
TO
976 }
977}
978
11e09c59 979/**
6a488035
TO
980 * Function to do a 'standard' api del - when the api is only doing a $bao::del then use this
981 * if api::del doesn't exist it will try DAO delete method
982 */
983function _civicrm_api3_basic_delete($bao_name, &$params) {
984
985 civicrm_api3_verify_mandatory($params, NULL, array('id'));
986 $args = array(&$params['id']);
987 if (method_exists($bao_name, 'del')) {
988 $bao = call_user_func_array(array($bao_name, 'del'), $args);
a65e2e55
CW
989 if ($bao !== FALSE) {
990 return civicrm_api3_create_success(TRUE);
991 }
992 return civicrm_api3_create_error('Could not delete entity id ' . $params['id']);
6a488035
TO
993 }
994 elseif (method_exists($bao_name, 'delete')) {
995 $dao = new $bao_name();
996 $dao->id = $params['id'];
997 if ($dao->find()) {
998 while ($dao->fetch()) {
999 $dao->delete();
1000 return civicrm_api3_create_success();
1001 }
1002 }
1003 else {
1004 return civicrm_api3_create_error('Could not delete entity id ' . $params['id']);
1005 }
1006 }
1007
1008 return civicrm_api3_create_error('no delete method found');
1009}
1010
11e09c59 1011/**
6a488035
TO
1012 * Get custom data for the given entity & Add it to the returnArray as 'custom_123' = 'custom string' AND 'custom_123_1' = 'custom string'
1013 * Where 123 is field value & 1 is the id within the custom group data table (value ID)
1014 *
1015 * @param array $returnArray - array to append custom data too - generally $result[4] where 4 is the entity id.
1016 * @param string $entity e.g membership, event
1017 * @param int $groupID - per CRM_Core_BAO_CustomGroup::getTree
1018 * @param int $subType e.g. membership_type_id where custom data doesn't apply to all membership types
1019 * @param string $subName - Subtype of entity
1020 *
1021 */
1022function _civicrm_api3_custom_data_get(&$returnArray, $entity, $entity_id, $groupID = NULL, $subType = NULL, $subName = NULL) {
1023 require_once 'CRM/Core/BAO/CustomGroup.php';
1024 require_once 'CRM/Core/BAO/CustomField.php';
1025 $groupTree = &CRM_Core_BAO_CustomGroup::getTree($entity,
1026 CRM_Core_DAO::$_nullObject,
1027 $entity_id,
1028 $groupID,
1029 $subType,
1030 $subName
1031 );
1032 $groupTree = CRM_Core_BAO_CustomGroup::formatGroupTree($groupTree, 1, CRM_Core_DAO::$_nullObject);
1033 $customValues = array();
1034 CRM_Core_BAO_CustomGroup::setDefaults($groupTree, $customValues);
1035 if (!empty($customValues)) {
1036 foreach ($customValues as $key => $val) {
1037 if (strstr($key, '_id')) {
1038 $idkey = substr($key, 0, -3);
1039 $returnArray['custom_' . (CRM_Core_BAO_CustomField::getKeyID($idkey) . "_id")] = $val;
1040 $returnArray[$key] = $val;
1041 }
1042 else {
1043 // per standard - return custom_fieldID
1044 $returnArray['custom_' . (CRM_Core_BAO_CustomField::getKeyID($key))] = $val;
1045
1046 //not standard - but some api did this so guess we should keep - cheap as chips
1047 $returnArray[$key] = $val;
1048 }
1049 }
1050 }
1051}
1052
11e09c59 1053/**
6a488035
TO
1054 * Validate fields being passed into API. This function relies on the getFields function working accurately
1055 * for the given API. If error mode is set to TRUE then it will also check
1056 * foreign keys
1057 *
1058 * As of writing only date was implemented.
1059 * @param string $entity
1060 * @param string $action
1061 * @param array $params -
1062 * all variables are the same as per civicrm_api
1063 */
1064function _civicrm_api3_validate_fields($entity, $action, &$params, $errorMode = NULL) {
1065 //skip any entities without working getfields functions
1066 $skippedEntities = array('entity', 'mailinggroup', 'customvalue', 'custom_value', 'mailing_group');
1067 if (in_array(strtolower($entity), $skippedEntities) || strtolower($action) == 'getfields') {
1068 return;
1069 }
1070 $fields = civicrm_api($entity, 'getfields', array('version' => 3, 'action' => $action));
1071 $fields = array_intersect_key($fields['values'], $params);
1072 foreach ($fields as $fieldname => $fieldInfo) {
1073 switch (CRM_Utils_Array::value('type', $fieldInfo)) {
1074 case CRM_Utils_Type::T_INT:
1075 //field is of type integer
1076 _civicrm_api3_validate_integer($params, $fieldname, $fieldInfo, $entity);
1077 break;
1078
1079 case 4:
1080 case 12:
1081 //field is of type date or datetime
1082 _civicrm_api3_validate_date($params, $fieldname, $fieldInfo);
1083 break;
1084 case 32://blob
1085 _civicrm_api3_validate_html($params, $fieldname, $fieldInfo);
1086 break;
1087 case CRM_Utils_Type::T_STRING:
1088
1089 _civicrm_api3_validate_string($params, $fieldname, $fieldInfo);
1090 break;
1091
1092 case CRM_Utils_Type::T_MONEY:
1093 if (!CRM_Utils_Rule::money($params[$fieldname])) {
1094 throw new Exception($fieldname . " is not a valid amount: " . $params[$fieldname]);
1095 }
1096 }
1097
1098 // intensive checks - usually only called after DB level fail
1099 if (!empty($errorMode) && strtolower($action) == 'create') {
1100 if (CRM_Utils_Array::value('FKClassName', $fieldInfo)) {
1101 if (CRM_Utils_Array::value($fieldname, $params)) {
1102 _civicrm_api3_validate_constraint($params, $fieldname, $fieldInfo);
1103 }
1104 elseif (CRM_Utils_Array::value('required', $fieldInfo)) {
1105 throw new Exception("DB Constraint Violation - possibly $fieldname should possibly be marked as mandatory for this API. If so, please raise a bug report");
1106 }
1107 }
1108 if (CRM_Utils_Array::value('api.unique', $fieldInfo)) {
1109 $params['entity'] = $entity;
1110 _civicrm_api3_validate_uniquekey($params, $fieldname, $fieldInfo);
1111 }
1112 }
1113 }
1114}
1115
11e09c59 1116/**
6a488035
TO
1117 * Validate date fields being passed into API.
1118 * It currently converts both unique fields and DB field names to a mysql date.
1119 * @todo - probably the unique field handling & the if exists handling is now done before this
1120 * function is reached in the wrapper - can reduce this code down to assume we
1121 * are only checking the passed in field
1122 *
1123 * It also checks against the RULE:date function. This is a centralisation of code that was scattered and
1124 * may not be the best thing to do. There is no code level documentation on the existing functions to work off
1125 *
1126 * @param array $params params from civicrm_api
1127 * @param string $fieldname uniquename of field being checked
1128 * @param array $fieldinfo array of fields from getfields function
1129 */
1130function _civicrm_api3_validate_date(&$params, &$fieldname, &$fieldInfo) {
1131 //should we check first to prevent it from being copied if they have passed in sql friendly format?
1132 if (CRM_Utils_Array::value($fieldInfo['name'], $params)) {
1133 //accept 'whatever strtotime accepts
1134 if (strtotime($params[$fieldInfo['name']]) === FALSE) {
1135 throw new Exception($fieldInfo['name'] . " is not a valid date: " . $params[$fieldInfo['name']]);
1136 }
1137 $params[$fieldInfo['name']] = CRM_Utils_Date::processDate($params[$fieldInfo['name']]);
1138 }
1139 if ((CRM_Utils_Array::value('name', $fieldInfo) != $fieldname) && CRM_Utils_Array::value($fieldname, $params)) {
1140 //If the unique field name differs from the db name & is set handle it here
1141 if (strtotime($params[$fieldname]) === FALSE) {
1142 throw new Exception($fieldname . " is not a valid date: " . $params[$fieldname]);
1143 }
1144 $params[$fieldname] = CRM_Utils_Date::processDate($params[$fieldname]);
1145 }
1146}
11e09c59
TO
1147
1148/**
6a488035
TO
1149 * Validate foreign constraint fields being passed into API.
1150 *
1151 * @param array $params params from civicrm_api
1152 * @param string $fieldname uniquename of field being checked
1153 * @param array $fieldinfo array of fields from getfields function
1154 */
1155function _civicrm_api3_validate_constraint(&$params, &$fieldname, &$fieldInfo) {
1156 $file = str_replace('_', '/', $fieldInfo['FKClassName']) . ".php";
1157 require_once ($file);
1158 $dao = new $fieldInfo['FKClassName'];
1159 $dao->id = $params[$fieldname];
1160 $dao->selectAdd();
1161 $dao->selectAdd('id');
1162 if (!$dao->find()) {
1163 throw new Exception("$fieldname is not valid : " . $params[$fieldname]);
1164 }
1165}
1166
11e09c59 1167/**
6a488035
TO
1168 * Validate foreign constraint fields being passed into API.
1169 *
1170 * @param array $params params from civicrm_api
1171 * @param string $fieldname uniquename of field being checked
1172 * @param array $fieldinfo array of fields from getfields function
1173 */
1174function _civicrm_api3_validate_uniquekey(&$params, &$fieldname, &$fieldInfo) {
1175 $existing = civicrm_api($params['entity'], 'get', array(
1176 'version' => $params['version'],
1177 $fieldname => $params[$fieldname],
1178 ));
1179 // an entry already exists for this unique field
1180 if ($existing['count'] == 1) {
1181 // question - could this ever be a security issue?
1182 throw new Exception("Field: `$fieldname` must be unique. An conflicting entity already exists - id: " . $existing['id']);
1183 }
1184}
1185
1186/**
1187 * Generic implementation of the "replace" action.
1188 *
1189 * Replace the old set of entities (matching some given keys) with a new set of
1190 * entities (matching the same keys).
1191 *
1192 * Note: This will verify that 'values' is present, but it does not directly verify
1193 * any other parameters.
1194 *
1195 * @param string $entity entity name
1196 * @param array $params params from civicrm_api, including:
1197 * - 'values': an array of records to save
1198 * - all other items: keys which identify new/pre-existing records
1199 */
1200function _civicrm_api3_generic_replace($entity, $params) {
1201
1202 require_once 'CRM/Core/Transaction.php';
1203 $transaction = new CRM_Core_Transaction();
1204 try {
1205 if (!is_array($params['values'])) {
1206 throw new Exception("Mandatory key(s) missing from params array: values");
1207 }
1208
1209 // Extract the keys -- somewhat scary, don't think too hard about it
1210 $baseParams = $params;
1211 unset($baseParams['values']);
1212 unset($baseParams['sequential']);
1213
1214 // Lookup pre-existing records
1215 $preexisting = civicrm_api($entity, 'get', $baseParams, $params);
1216 if (civicrm_error($preexisting)) {
1217 $transaction->rollback();
1218 return $preexisting;
1219 }
1220
1221 // Save the new/updated records
1222 $creates = array();
1223 foreach ($params['values'] as $replacement) {
1224 // Sugar: Don't force clients to duplicate the 'key' data
1225 $replacement = array_merge($baseParams, $replacement);
1226 $action = (isset($replacement['id']) || isset($replacement[$entity . '_id'])) ? 'update' : 'create';
1227 $create = civicrm_api($entity, $action, $replacement);
1228 if (civicrm_error($create)) {
1229 $transaction->rollback();
1230 return $create;
1231 }
1232 foreach ($create['values'] as $entity_id => $entity_value) {
1233 $creates[$entity_id] = $entity_value;
1234 }
1235 }
1236
1237 // Remove stale records
1238 $staleIDs = array_diff(
1239 array_keys($preexisting['values']),
1240 array_keys($creates)
1241 );
1242 foreach ($staleIDs as $staleID) {
1243 $delete = civicrm_api($entity, 'delete', array(
1244 'version' => $params['version'],
1245 'id' => $staleID,
1246 ));
1247 if (civicrm_error($delete)) {
1248 $transaction->rollback();
1249 return $delete;
1250 }
1251 }
1252
1253 return civicrm_api3_create_success($creates, $params);
1254 }
1255 catch(PEAR_Exception $e) {
1256 $transaction->rollback();
1257 return civicrm_api3_create_error($e->getMessage());
1258 }
1259 catch(Exception $e) {
1260 $transaction->rollback();
1261 return civicrm_api3_create_error($e->getMessage());
1262 }
1263}
1264
11e09c59 1265/**
6a488035
TO
1266 * returns fields allowable by api
1267 * @param $entity string Entity to query
1268 * @param bool $unique index by unique fields?
1269 */
1270function _civicrm_api_get_fields($entity, $unique = FALSE, &$params = array(
1271 )) {
1272 $unsetIfEmpty = array('dataPattern', 'headerPattern', 'default', 'export', 'import');
1273 $dao = _civicrm_api3_get_DAO($entity);
1274 if (empty($dao)) {
1275 return array();
1276 }
1277 $file = str_replace('_', '/', $dao) . ".php";
1278 require_once ($file);
1279 $d = new $dao();
1280 $fields = $d->fields();
1281 // replace uniqueNames by the normal names as the key
1282 if (empty($unique)) {
1283 foreach ($fields as $name => & $field) {
1284 //getting rid of unused attributes
1285 foreach ($unsetIfEmpty as $attr) {
1286 if (empty($field[$attr])) {
1287 unset($field[$attr]);
1288 }
1289 }
1290 if ($name == $field['name']) {
1291 continue;
1292 }
1293 if (array_key_exists($field['name'], $fields)) {
1294 $field['error'] = 'name conflict';
1295 // it should never happen, but better safe than sorry
1296 continue;
1297 }
1298 $fields[$field['name']] = $field;
1299 $fields[$field['name']]['uniqueName'] = $name;
1300 unset($fields[$name]);
1301 }
1302 }
1303 $fields += _civicrm_api_get_custom_fields($entity, $params);
1304 return $fields;
1305}
1306
11e09c59 1307/**
6a488035
TO
1308 * Return an array of fields for a given entity - this is the same as the BAO function but
1309 * fields are prefixed with 'custom_' to represent api params
1310 */
1311function _civicrm_api_get_custom_fields($entity, &$params) {
1312 require_once 'CRM/Core/BAO/CustomField.php';
1313 $customfields = array();
1314 $entity = _civicrm_api_get_camel_name($entity);
1315 if (strtolower($entity) == 'contact') {
1316 $entity = CRM_Utils_Array::value('contact_type', $params);
1317 }
1318 $retrieveOnlyParent = FALSE;
1319 // we could / should probably test for other subtypes here - e.g. activity_type_id
1320 if($entity == 'Contact'){
1321 empty($params['contact_sub_type']);
1322 }
1323 $customfields = CRM_Core_BAO_CustomField::getFields($entity,
1324 FALSE,
1325 FALSE,
1326 CRM_Utils_Array::value('contact_sub_type', $params, FALSE),
1327 NULL,
1328 $retrieveOnlyParent,
1329 FALSE,
1330 FALSE
1331 );
1332 // find out if we have any requests to resolve options
1333 $getoptions = CRM_Utils_Array::value('get_options', CRM_Utils_Array::value('options',$params));
1334 if(!is_array($getoptions)){
1335 $getoptions = array($getoptions);
1336 }
1337
1338 foreach ($customfields as $key => $value) {
1339 $customfields['custom_' . $key] = $value;
1340 if(in_array('custom_' . $key, $getoptions)){
1341 $customfields['custom_' . $key]['options'] = CRM_Core_BAO_CustomOption::valuesByID($key);
1342 }
1343 unset($customfields[$key]);
1344 }
1345 return $customfields;
1346}
11e09c59
TO
1347
1348/**
6a488035
TO
1349 * Return array of defaults for the given API (function is a wrapper on getfields)
1350 */
1351function _civicrm_api3_getdefaults($apiRequest) {
1352 $defaults = array();
1353
1354 $result = civicrm_api($apiRequest['entity'],
1355 'getfields',
1356 array(
1357 'version' => 3,
1358 'action' => $apiRequest['action'],
1359 )
1360 );
1361
1362 foreach ($result['values'] as $field => $values) {
1363 if (isset($values['api.default'])) {
1364 $defaults[$field] = $values['api.default'];
1365 }
1366 }
1367 return $defaults;
1368}
1369
11e09c59 1370/**
6a488035
TO
1371 * Return array of defaults for the given API (function is a wrapper on getfields)
1372 */
1373function _civicrm_api3_getrequired($apiRequest) {
1374 $required = array('version');
1375
1376 $result = civicrm_api($apiRequest['entity'],
1377 'getfields',
1378 array(
1379 'version' => 3,
1380 'action' => $apiRequest['action'],
1381 )
1382 );
1383 foreach ($result['values'] as $field => $values) {
1384 if (CRM_Utils_Array::value('api.required', $values)) {
1385 $required[] = $field;
1386 }
1387 }
1388 return $required;
1389}
1390
11e09c59 1391/**
6a488035
TO
1392 * Fill params array with alternate (alias) values where a field has an alias and that is filled & the main field isn't
1393 * If multiple aliases the last takes precedence
1394 *
1395 * Function also swaps unique fields for non-unique fields & vice versa.
1396 */
1397function _civicrm_api3_swap_out_aliases(&$apiRequest) {
1398 if (strtolower($apiRequest['action'] == 'getfields')) {
1399 if (CRM_Utils_Array::value('api_action', $apiRequest['params'])) {
1400 $apiRequest['params']['action'] = $apiRequest['params']['api_action'];
1401 unset($apiRequest['params']['api_action']);
1402 }
1403 return;
1404 }
1405 $result = civicrm_api($apiRequest['entity'],
1406 'getfields',
1407 array(
1408 'version' => 3,
1409 'action' => $apiRequest['action'],
1410 )
1411 );
1412
1413 foreach ($result['values'] as $field => $values) {
1414 $uniqueName = CRM_Utils_Array::value('uniqueName', $values);
1415 if (CRM_Utils_Array::value('api.aliases', $values)) {
1416 // if aliased field is not set we try to use field alias
1417 if (!isset($apiRequest['params'][$field])) {
1418 foreach ($values['api.aliases'] as $alias) {
1419 if (isset($apiRequest['params'][$alias])) {
1420 $apiRequest['params'][$field] = $apiRequest['params'][$alias];
1421 }
1422 //unset original field nb - need to be careful with this as it may bring inconsistencies
1423 // out of the woodwork but will be implementing only as _spec function extended
1424 unset($apiRequest['params'][$alias]);
1425 }
1426 }
1427 }
1428 if (!isset($apiRequest['params'][$field])
1429 && CRM_Utils_Array::value('name', $values)
1430 && $field != $values['name']
1431 && isset($apiRequest['params'][$values['name']])
1432 ) {
1433 $apiRequest['params'][$field] = $apiRequest['params'][$values['name']];
1434 // note that it would make sense to unset the original field here but tests need to be in place first
1435 }
1436 if (!isset($apiRequest['params'][$field])
1437 && $uniqueName
1438 && $field != $uniqueName
1439 && array_key_exists($uniqueName, $apiRequest['params'])
1440 )
1441 {
1442 $apiRequest['params'][$field] = CRM_Utils_Array::value($values['uniqueName'], $apiRequest['params']);
1443 // note that it would make sense to unset the original field here but tests need to be in place first
1444 }
1445 }
1446
1447}
11e09c59
TO
1448
1449/**
6a488035
TO
1450 * Validate integer fields being passed into API.
1451 * It currently converts the incoming value 'user_contact_id' into the id of the currenty logged in user
1452 *
1453 * @param array $params params from civicrm_api
1454 * @param string $fieldname uniquename of field being checked
1455 * @param array $fieldinfo array of fields from getfields function
1456 */
1457function _civicrm_api3_validate_integer(&$params, &$fieldname, &$fieldInfo, $entity) {
1458 //if fieldname exists in params
1459 if (CRM_Utils_Array::value($fieldname, $params)) {
1460 //if value = 'user_contact_id' replace value with logged in user id
1461 if ($params[$fieldname] == "user_contact_id") {
1462 $session = &CRM_Core_Session::singleton();
1463 $params[$fieldname] = $session->get('userID');
1464 }
1465 if (CRM_Utils_Array::value('pseudoconstant', $fieldInfo) ) {
1466 $constant = CRM_Utils_Array::value('options', $fieldInfo);
1467 if (is_numeric($params[$fieldname]) && !CRM_Utils_Array::value('FKClassName',$fieldInfo) && !array_key_exists($params[$fieldname], $fieldInfo['options'])) {
1468 throw new API_Exception("$fieldname is not valid", 2001, array('error_field' => $fieldname,"type"=>"integer"));
1469 }
1470 }
1471 // we are looking for strings that should be swapped out e.g swap 'Donation' to financial_type_id 1
1472 if (!is_numeric($params[$fieldname]) && !is_array($params[$fieldname])) {
1473 if(CRM_Utils_Array::value('FKClassName', $fieldInfo)){
1474 // we'll get the options for this now since we are doing a swap out
1475 $options = civicrm_api($entity, 'getoptions', array('version' => 3, 'field' => $fieldname));
1476 if(empty($options['is_error'])){
1477 $fieldInfo['options'] = $options['values'];
1478 }
1479 }
1480 if(!empty($fieldInfo['options'])){
1481 $numericvalue = array_search($params[$fieldname], $fieldInfo['options']);
1482 if (empty($numericvalue)) {
1483 throw new Exception("$fieldname " . $params[$fieldname] . " is not valid");
1484 }
1485 else {
1486 $params[$fieldname] = $numericvalue;
1487 }
1488 }
1489 }
1490
1491 // once we have done any swaps check our field length
1492 if(is_string($params[$fieldname]) &&
1493 CRM_Utils_Array::value('maxlength',$fieldInfo)
1494 && strlen($params[$fieldname]) > $fieldInfo['maxlength']
1495 ){
1496 throw new API_Exception( $params[$fieldname] . " is " . strlen($params[$fieldname]) . " characters - longer than $fieldname length" . $fieldInfo['maxlength'] . ' characters',
1497 2100, array('field' => $fieldname, "max_length"=>$fieldInfo['maxlength'])
1498 );
1499 }
1500 }
1501}
1502
1503function _civicrm_api3_validate_html(&$params, &$fieldname, &$fieldInfo) {
1504 if ($value = CRM_Utils_Array::value($fieldname, $params)) {
1505 if (!CRM_Utils_Rule::xssString($value)) {
1506 throw new API_Exception('Illegal characters in input (potential scripting attack)',array("field"=>$fieldname,"error_code"=>"xss"));
1507 }
1508 }
1509}
1510
11e09c59 1511/**
6a488035
TO
1512 * Validate string fields being passed into API.
1513 * @param array $params params from civicrm_api
1514 * @param string $fieldname uniquename of field being checked
1515 * @param array $fieldinfo array of fields from getfields function
1516 */
1517function _civicrm_api3_validate_string(&$params, &$fieldname, &$fieldInfo) {
1518 // If fieldname exists in params
1519 $value = (string) CRM_Utils_Array::value($fieldname, $params,'');
1520 if ($value ) {
1521 if (!CRM_Utils_Rule::xssString($value)) {
1522 throw new Exception('Illegal characters in input (potential scripting attack)');
1523 }
1524 if ($fieldname == 'currency') {
1525 if (!CRM_Utils_Rule::currencyCode($value)) {
1526 throw new Exception("Currency not a valid code: $value");
1527 }
1528 }
1529 if (!empty ($fieldInfo['options'])) {
1530 // Validate & swap out any pseudoconstants / options
1531 $options = $fieldInfo['options'];
1532 $lowerCaseOptions = array_map("strtolower", $options);
1533 // If value passed is not a key, it may be a label
1534 // Try to lookup key from label - if it can't be found throw error
1535 if (!isset($options[strtolower($value)]) && !isset($options[$value]) ) {
1536 if (!in_array(strtolower($value), $lowerCaseOptions)) {
1537 throw new Exception("$fieldname `$value` is not valid.");
1538 }
1539 }
1540 }
1541 // Check our field length
1542 elseif (is_string($value) && !empty($fieldInfo['maxlength']) && strlen($value) > $fieldInfo['maxlength']) {
1543 throw new API_Exception("Value for $fieldname is " . strlen($value) . " characters - This field has a maxlength of {$fieldInfo['maxlength']} characters.",
1544 2100, array('field' => $fieldname)
1545 );
1546 }
1547 }
1548}