3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
29 * CiviCRM APIv3 utility functions.
31 * @package CiviCRM_APIv3
35 * Initialize CiviCRM - should be run at the start of each API function.
37 function _civicrm_api3_initialize() {
38 require_once 'CRM/Core/ClassLoader.php';
39 CRM_Core_ClassLoader
::singleton()->register();
40 CRM_Core_Config
::singleton();
44 * Wrapper Function for civicrm_verify_mandatory to make it simple to pass either / or fields for checking.
46 * @param array $params
47 * Array of fields to check.
48 * @param array $daoName
49 * String DAO to check for required fields (create functions only).
50 * @param array $keyoptions
51 * List of required fields options. One of the options is required.
53 function civicrm_api3_verify_one_mandatory($params, $daoName = NULL, $keyoptions = array()) {
54 $keys = array(array());
55 foreach ($keyoptions as $key) {
58 civicrm_api3_verify_mandatory($params, $daoName, $keys);
62 * Check mandatory fields are included.
64 * @param array $params
65 * Array of fields to check.
66 * @param array $daoName
67 * String DAO to check for required fields (create functions only).
69 * List of required fields. A value can be an array denoting that either this or that is required.
70 * @param bool $verifyDAO
72 * @throws \API_Exception
74 function civicrm_api3_verify_mandatory($params, $daoName = NULL, $keys = array(), $verifyDAO = TRUE) {
77 if ($daoName != NULL && $verifyDAO && empty($params['id'])) {
78 $unmatched = _civicrm_api3_check_required_fields($params, $daoName, TRUE);
79 if (!is_array($unmatched)) {
84 if (!empty($params['id'])) {
85 $keys = array('version');
88 if (!in_array('version', $keys)) {
89 // required from v3 onwards
93 foreach ($keys as $key) {
97 foreach ($key as $subkey) {
98 if (!array_key_exists($subkey, $params) ||
empty($params[$subkey])) {
99 $optionset[] = $subkey;
102 // as long as there is one match then we don't need to rtn anything
106 if (empty($match) && !empty($optionset)) {
107 $unmatched[] = "one of (" . implode(", ", $optionset) . ")";
111 // Disallow empty values except for the number zero.
112 // TODO: create a utility for this since it's needed in many places
113 if (!array_key_exists($key, $params) ||
(empty($params[$key]) && $params[$key] !== 0 && $params[$key] !== '0')) {
118 if (!empty($unmatched)) {
119 throw new API_Exception("Mandatory key(s) missing from params array: " . implode(", ", $unmatched), "mandatory_missing", array("fields" => $unmatched));
124 * Create error array.
131 function civicrm_api3_create_error($msg, $data = array()) {
132 $data['is_error'] = 1;
133 $data['error_message'] = $msg;
134 // we will show sql to privileged user only (not sure of a specific
135 // security hole here but seems sensible - perhaps should apply to the trace as well?)
136 if (isset($data['sql']) && CRM_Core_Permission
::check('Administer CiviCRM')) {
137 // Isn't this redundant?
138 $data['debug_information'] = $data['sql'];
147 * Format array in result output style.
149 * @param array|int $values values generated by API operation (the result)
150 * @param array $params
151 * Parameters passed into API call.
152 * @param string $entity
153 * The entity being acted on.
154 * @param string $action
155 * The action passed to the API.
157 * DAO object to be freed here.
158 * @param array $extraReturnValues
159 * Additional values to be added to top level of result array(.
160 * - this param is currently used for legacy behaviour support
164 function civicrm_api3_create_success($values = 1, $params = array(), $entity = NULL, $action = NULL, &$dao = NULL, $extraReturnValues = array()) {
166 $lowercase_entity = _civicrm_api_get_entity_name_from_camel($entity);
167 // TODO: This shouldn't be necessary but this fn sometimes gets called with lowercase entity
168 $entity = _civicrm_api_get_camel_name($entity);
169 $result['is_error'] = 0;
170 //lets set the ['id'] field if it's not set & we know what the entity is
171 if (is_array($values) && $entity && $action != 'getfields') {
172 foreach ($values as $key => $item) {
173 if (empty($item['id']) && !empty($item[$lowercase_entity . "_id"])) {
174 $values[$key]['id'] = $item[$lowercase_entity . "_id"];
176 if (!empty($item['financial_type_id'])) {
177 //4.3 legacy handling
178 $values[$key]['contribution_type_id'] = $item['financial_type_id'];
180 if (!empty($item['next_sched_contribution_date'])) {
181 // 4.4 legacy handling
182 $values[$key]['next_sched_contribution'] = $item['next_sched_contribution_date'];
187 if (is_array($params) && !empty($params['debug'])) {
188 if (is_string($action) && $action != 'getfields') {
189 $apiFields = civicrm_api($entity, 'getfields', array('version' => 3, 'action' => $action) +
$params);
191 elseif ($action != 'getfields') {
192 $apiFields = civicrm_api($entity, 'getfields', array('version' => 3) +
$params);
198 $allFields = array();
199 if ($action != 'getfields' && is_array($apiFields) && is_array(CRM_Utils_Array
::value('values', $apiFields))) {
200 $allFields = array_keys($apiFields['values']);
202 $paramFields = array_keys($params);
203 $undefined = array_diff($paramFields, $allFields, array_keys($_COOKIE), array(
222 $result['undefined_fields'] = array_merge($undefined);
225 if (is_object($dao)) {
229 $result['version'] = 3;
230 if (is_array($values)) {
231 $result['count'] = (int) count($values);
233 // Convert value-separated strings to array
234 _civicrm_api3_separate_values($values);
236 if ($result['count'] == 1) {
237 list($result['id']) = array_keys($values);
239 elseif (!empty($values['id']) && is_int($values['id'])) {
240 $result['id'] = $values['id'];
244 $result['count'] = !empty($values) ?
1 : 0;
247 if (is_array($values) && isset($params['sequential']) &&
248 $params['sequential'] == 1
250 $result['values'] = array_values($values);
253 $result['values'] = $values;
255 if (!empty($params['options']['metadata'])) {
256 // We've made metadata an array but only supporting 'fields' atm.
257 if (in_array('fields', (array) $params['options']['metadata']) && $action !== 'getfields') {
258 $fields = civicrm_api3($entity, 'getfields', array(
259 'action' => substr($action, 0, 3) == 'get' ?
'get' : 'create',
261 $result['metadata']['fields'] = $fields['values'];
264 // Report deprecations.
265 $deprecated = _civicrm_api3_deprecation_check($entity, $result);
266 // Always report "setvalue" action as deprecated.
267 if (!is_string($deprecated) && ($action == 'getactions' ||
$action == 'setvalue')) {
268 $deprecated = ((array) $deprecated) +
array('setvalue' => 'The "setvalue" action is deprecated. Use "create" with an id instead.');
270 // Always report "update" action as deprecated.
271 if (!is_string($deprecated) && ($action == 'getactions' ||
$action == 'update')) {
272 $deprecated = ((array) $deprecated) +
array('update' => 'The "update" action is deprecated. Use "create" with an id instead.');
275 // Metadata-level deprecations or wholesale entity deprecations.
276 if ($entity == 'Entity' ||
$action == 'getactions' ||
is_string($deprecated)) {
277 $result['deprecated'] = $deprecated;
279 // Action-specific deprecations
280 elseif (!empty($deprecated[$action])) {
281 $result['deprecated'] = $deprecated[$action];
284 return array_merge($result, $extraReturnValues);
288 * Load the DAO of the entity.
294 function _civicrm_api3_load_DAO($entity) {
295 $dao = _civicrm_api3_get_DAO($entity);
304 * Return the DAO of the function or Entity.
306 * @param string $name
307 * Either a function of the api (civicrm_{entity}_create or the entity name.
308 * return the DAO name to manipulate this function
309 * eg. "civicrm_api3_contact_create" or "Contact" will return "CRM_Contact_BAO_Contact"
311 * @return mixed|string
313 function _civicrm_api3_get_DAO($name) {
314 if (strpos($name, 'civicrm_api3') !== FALSE) {
315 $last = strrpos($name, '_');
316 // len ('civicrm_api3_') == 13
317 $name = substr($name, 13, $last - 13);
320 $name = _civicrm_api_get_camel_name($name);
322 if ($name == 'Individual' ||
$name == 'Household' ||
$name == 'Organization') {
326 // hack to deal with incorrectly named BAO/DAO - see CRM-10859
328 // FIXME: DAO should be renamed CRM_Mailing_DAO_MailingEventQueue
329 if ($name == 'MailingEventQueue') {
330 return 'CRM_Mailing_Event_DAO_Queue';
332 // FIXME: DAO should be renamed CRM_Mailing_DAO_MailingRecipients
333 // but am not confident mailing_recipients is tested so have not tackled.
334 if ($name == 'MailingRecipients') {
335 return 'CRM_Mailing_DAO_Recipients';
337 // FIXME: DAO should be renamed CRM_Mailing_DAO_MailingComponent
338 if ($name == 'MailingComponent') {
339 return 'CRM_Mailing_DAO_Component';
341 // FIXME: DAO should be renamed CRM_ACL_DAO_AclRole
342 if ($name == 'AclRole') {
343 return 'CRM_ACL_DAO_EntityRole';
345 // FIXME: DAO should be renamed CRM_SMS_DAO_SmsProvider
346 // But this would impact SMS extensions so need to coordinate
347 // Probably best approach is to migrate them to use the api and decouple them from core BAOs
348 if ($name == 'SmsProvider') {
349 return 'CRM_SMS_DAO_Provider';
351 // FIXME: DAO names should follow CamelCase convention
352 if ($name == 'Im' ||
$name == 'Acl') {
353 $name = strtoupper($name);
355 $dao = CRM_Core_DAO_AllCoreTables
::getFullName($name);
356 if ($dao ||
!$name) {
360 // Really weird apis can declare their own DAO name. Not sure if this is a good idea...
361 if (file_exists("api/v3/$name.php")) {
362 include_once "api/v3/$name.php";
365 $daoFn = "_civicrm_api3_" . _civicrm_api_get_entity_name_from_camel($name) . "_DAO";
366 if (function_exists($daoFn)) {
374 * Return the DAO of the function or Entity.
376 * @param string $name
377 * Is either a function of the api (civicrm_{entity}_create or the entity name.
378 * return the DAO name to manipulate this function
379 * eg. "civicrm_contact_create" or "Contact" will return "CRM_Contact_BAO_Contact"
383 function _civicrm_api3_get_BAO($name) {
384 // FIXME: DAO should be renamed CRM_Badge_DAO_BadgeLayout
385 if ($name == 'PrintLabel') {
386 return 'CRM_Badge_BAO_Layout';
388 $dao = _civicrm_api3_get_DAO($name);
392 $bao = str_replace("DAO", "BAO", $dao);
393 $file = strtr($bao, '_', '/') . '.php';
394 // Check if this entity actually has a BAO. Fall back on the DAO if not.
395 return stream_resolve_include_path($file) ?
$bao : $dao;
399 * Recursive function to explode value-separated strings into arrays.
403 function _civicrm_api3_separate_values(&$values) {
404 $sp = CRM_Core_DAO
::VALUE_SEPARATOR
;
405 foreach ($values as $key => & $value) {
406 if (is_array($value)) {
407 _civicrm_api3_separate_values($value);
409 elseif (is_string($value)) {
410 // This is to honor the way case API was originally written.
411 if ($key == 'case_type_id') {
412 $value = trim(str_replace($sp, ',', $value), ',');
414 elseif (strpos($value, $sp) !== FALSE) {
415 $value = explode($sp, trim($value, $sp));
422 * This is a legacy wrapper for api_store_values.
424 * It checks suitable fields using getfields rather than DAO->fields.
426 * Getfields has handling for how to deal with unique names which dao->fields doesn't
428 * Note this is used by BAO type create functions - eg. contribution
430 * @param string $entity
431 * @param array $params
432 * @param array $values
434 function _civicrm_api3_filter_fields_for_bao($entity, &$params, &$values) {
435 $fields = civicrm_api($entity, 'getfields', array('version' => 3, 'action' => 'create'));
436 $fields = $fields['values'];
437 _civicrm_api3_store_values($fields, $params, $values);
442 * @param array $fields
443 * @param array $params
444 * @param array $values
448 function _civicrm_api3_store_values(&$fields, &$params, &$values) {
451 $keys = array_intersect_key($params, $fields);
452 foreach ($keys as $name => $value) {
453 if ($name !== 'id') {
454 $values[$name] = $value;
462 * Get function for query object api.
464 * This is a simple get function, but it should be usable for any kind of
465 * entity. I created it to work around CRM-16036.
467 * @param string $dao_name
469 * @param array $params
470 * As passed into api get function.
471 * @param bool $isFillUniqueFields
472 * Do we need to ensure unique fields continue to be populated for this api? (backward compatibility).
473 * @param CRM_Utils_SQL_Select|NULL $sqlFragment
477 function _civicrm_api3_get_using_utils_sql($dao_name, $params, $isFillUniqueFields, $sqlFragment) {
479 $dao = new $dao_name();
480 $entity = _civicrm_api_get_entity_name_from_dao($dao);
481 $custom_fields = _civicrm_api3_custom_fields_for_entity($entity);
482 $options = _civicrm_api3_get_options_from_params($params);
484 // Unset $params['options'] if they are api parameters (not options as a fieldname).
485 if (!empty($params['options']) && is_array($params['options'])&& array_intersect(array_keys($params['options']), array_keys($options))) {
486 unset ($params['options']);
489 $entity_field_names = _civicrm_api3_field_names(_civicrm_api3_build_fields_array($dao));
490 $custom_field_names = array();
491 $uniqueAliases = array();
492 $getFieldsResult = civicrm_api3($entity, 'getfields', array('action' => 'get'));
493 $getFieldsResult = $getFieldsResult['values'];
494 foreach ($getFieldsResult as $getFieldKey => $getFieldSpec) {
495 $uniqueAliases[$getFieldKey] = $getFieldSpec['name'];
496 $uniqueAliases[$getFieldSpec['name']] = $getFieldSpec['name'];
499 // $select_fields maps column names to the field names of the result
501 $select_fields = array();
503 // array with elements array('column', 'operator', 'value');
504 $where_clauses = array();
506 // Tables we need to join with to retrieve the custom values.
507 $custom_value_tables = array();
509 // ID's of custom fields that refer to a contact.
510 $contact_reference_field_ids = array();
512 // populate $select_fields
513 $return_all_fields = (empty($options['return']) ||
!is_array($options['return']));
514 $return = $return_all_fields ?
array_fill_keys($entity_field_names, 1) : $options['return'];
517 foreach (array_keys($return) as $field_name) {
518 if (!empty($uniqueAliases[$field_name]) && (CRM_Core_BAO_CustomField
::getKeyID($field_name) == FALSE)) {
519 // 'a.' is an alias for the entity table.
520 $select_fields["a.{$uniqueAliases[$field_name]}"] = $uniqueAliases[$field_name];
525 foreach ($custom_fields as $cf_id => $custom_field) {
526 $field_name = "custom_$cf_id";
527 $custom_field_names[] = $field_name;
528 if ($return_all_fields ||
!empty($options['return'][$field_name])
530 // This is a tested format so we support it.
531 !empty($options['return']['custom'])
533 $table_name = $custom_field["table_name"];
534 $column_name = $custom_field["column_name"];
535 // remember that we will need to join the correct table.
536 if (!in_array($table_name, $custom_value_tables)) {
537 $custom_value_tables[] = $table_name;
539 if ($custom_field["data_type"] != "ContactReference") {
540 // 'ordinary' custom field. We will select the value as custom_XX.
541 $select_fields["$table_name.$column_name"] = $field_name;
544 // contact reference custom field. The ID will be stored in
545 // custom_XX_id. custom_XX will contain the sort name of the
547 $contact_reference_field_ids[] = $cf_id;
548 $select_fields["$table_name.$column_name"] = $field_name . "_id";
549 // We will call the contact table for the join c_XX.
550 $select_fields["c_$cf_id.sort_name"] = $field_name;
554 if (!in_array("a.id", $select_fields)) {
555 // Always select the ID.
556 $select_fields["a.id"] = "id";
559 $query = CRM_Utils_SQL_Select
::from($dao->tableName() . " a");
561 // populate $where_clauses
562 foreach ($params as $key => $value) {
567 if (substr($key, 0, 7) == 'filter.') {
568 // Legacy support for old filter syntax per the test contract.
569 // (Convert the style to the later one & then deal with them).
570 $filterArray = explode('.', $key);
571 $value = array($filterArray[1] => $value);
575 // Legacy support for 'filter's construct.
576 if ($key == 'filters') {
577 foreach ($value as $filterKey => $filterValue) {
578 if (substr($filterKey, -4, 4) == 'high') {
579 $key = substr($filterKey, 0, -5);
580 $value = array('<=' => $filterValue);
583 if (substr($filterKey, -3, 3) == 'low') {
584 $key = substr($filterKey, 0, -4);
585 $value = array('>=' => $filterValue);
588 if ($filterKey == 'is_current' ||
$filterKey == 'isCurrent') {
589 // Is current is almost worth creating as a 'sql filter' in the DAO function since several entities have the
591 $todayStart = date('Ymd000000', strtotime('now'));
592 $todayEnd = date('Ymd235959', strtotime('now'));
593 $query->where(array("(a.start_date <= '$todayStart' OR a.start_date IS NULL) AND (a.end_date >= '$todayEnd' OR
601 if (array_key_exists($key, $getFieldsResult)) {
602 $type = $getFieldsResult[$key]['type'];
603 $key = $getFieldsResult[$key]['name'];
605 if ($key == _civicrm_api_get_entity_name_from_camel($entity) . '_id') {
606 // The test contract enforces support of (eg) mailing_group_id if the entity is MailingGroup.
610 if (in_array($key, $entity_field_names)) {
614 elseif (($cf_id = CRM_Core_BAO_CustomField
::getKeyID($key)) != FALSE) {
615 $table_name = $custom_fields[$cf_id]["table_name"];
616 $column_name = $custom_fields[$cf_id]["column_name"];
618 if (!in_array($table_name, $custom_value_tables)) {
619 $custom_value_tables[] = $table_name;
622 // I don't know why I had to specifically exclude 0 as a key - wouldn't the others have caught it?
623 // We normally silently ignore null values passed in - if people want IS_NULL they can use acceptedSqlOperator syntax.
624 if ((!$table_name) ||
empty($key) ||
is_null($value)) {
625 // No valid filter field. This might be a chained call or something.
626 // Just ignore this for the $where_clause.
629 if (!is_array($value)) {
630 $query->where(array("{$table_name}.{$column_name} = @value"), array(
635 // We expect only one element in the array, of the form
636 // "operator" => "rhs".
637 $operator = CRM_Utils_Array
::first(array_keys($value));
638 if (!in_array($operator, CRM_Core_DAO
::acceptedSQLOperators())) {
640 "{$table_name}.{$column_name} = @value"), array("@value" => $value)
644 $query->where(CRM_Core_DAO
::createSQLFilter("{$table_name}.{$column_name}", $value, $type));
650 if (!$options['is_count']) {
651 foreach ($select_fields as $column => $alias) {
653 $query = $query->select("!column_$i as !alias_$i", array(
654 "!column_$i" => $column,
655 "!alias_$i" => $alias,
660 $query->select("count(*) as c");
663 // join with custom value tables
664 foreach ($custom_value_tables as $table_name) {
666 $query = $query->join(
668 "LEFT OUTER JOIN !table_name_$i ON !table_name_$i.entity_id = a.id",
669 array("!table_name_$i" => $table_name)
673 // join with contact for contact reference fields
674 foreach ($contact_reference_field_ids as $field_id) {
676 $query = $query->join(
677 "!contact_table_name$i",
678 "LEFT OUTER JOIN civicrm_contact !contact_table_name_$i ON !contact_table_name_$i.id = !values_table_name_$i.!column_name_$i",
680 "!contact_table_name_$i" => "c_$field_id",
681 "!values_table_name_$i" => $custom_fields[$field_id]["table_name"],
682 "!column_name_$i" => $custom_fields[$field_id]["column_name"],
686 foreach ($where_clauses as $clause) {
688 if (substr($clause[1], -4) == "NULL") {
689 $query->where("!columnName_$i !nullThing_$i", array(
690 "!columnName_$i" => $clause[0],
691 "!nullThing_$i" => $clause[1],
695 $query->where("!columnName_$i !operator_$i @value_$i", array(
696 "!columnName_$i" => $clause[0],
697 "!operator_$i" => $clause[1],
698 "@value_$i" => $clause[2],
702 if (!empty($sqlFragment)) {
703 $query->merge($sqlFragment);
707 if (!empty($options['sort'])) {
708 $sort_fields = array();
709 foreach (explode(',', $options['sort']) as $sort_option) {
710 $words = preg_split("/[\s]+/", $sort_option);
711 if (count($words) > 0 && in_array($words[0], array_values($select_fields))) {
713 if (!empty($words[1]) && strtoupper($words[1]) == 'DESC') {
716 $sort_fields[] = $tmp;
719 if (count($sort_fields) > 0) {
720 $query->orderBy(implode(",", $sort_fields));
725 if (!empty($options['limit']) ||
!empty($options['offset'])) {
726 $query->limit($options['limit'], $options['offset']);
729 $result_entities = array();
730 $result_dao = CRM_Core_DAO
::executeQuery($query->toSQL());
732 while ($result_dao->fetch()) {
733 if ($options['is_count']) {
735 return (int) $result_dao->c
;
737 $result_entities[$result_dao->id
] = array();
738 foreach ($select_fields as $column => $alias) {
739 if (property_exists($result_dao, $alias) && $result_dao->$alias != NULL) {
740 $result_entities[$result_dao->id
][$alias] = $result_dao->$alias;
742 // Backward compatibility on fields names.
743 if ($isFillUniqueFields && !empty($getFieldsResult['values'][$column]['uniqueName'])) {
744 $result_entities[$result_dao->id
][$getFieldsResult['values'][$column]['uniqueName']] = $result_dao->$alias;
746 foreach ($getFieldsResult as $returnName => $spec) {
747 if (empty($result_entities[$result_dao->id
][$returnName]) && !empty($result_entities[$result_dao->id
][$spec['name']])) {
748 $result_entities[$result_dao->id
][$returnName] = $result_entities[$result_dao->id
][$spec['name']];
754 return $result_entities;
758 * Returns field names of the given entity fields.
760 * @param array $fields
761 * Fields array to retrieve the field names for.
764 function _civicrm_api3_field_names($fields) {
766 foreach ($fields as $key => $value) {
767 if (!empty($value['name'])) {
768 $result[] = $value['name'];
775 * Returns an array with database information for the custom fields of an
778 * Something similar might already exist in CiviCRM. But I was not
781 * @param string $entity
784 * an array that maps the custom field ID's to table name and
788 * 'table_name' => 'table_name_1',
789 * 'column_name' => 'column_name_1',
790 * 'data_type' => 'data_type_1',
794 function _civicrm_api3_custom_fields_for_entity($entity) {
798 SELECT f.id, f.label, f.data_type,
799 f.html_type, f.is_search_range,
800 f.option_group_id, f.custom_group_id,
801 f.column_name, g.table_name,
802 f.date_format,f.time_format
803 FROM civicrm_custom_field f
804 JOIN civicrm_custom_group g ON f.custom_group_id = g.id
805 WHERE g.is_active = 1
810 '1' => array($entity, 'String'),
813 $dao = CRM_Core_DAO
::executeQuery($query, $params);
814 while ($dao->fetch()) {
815 $result[$dao->id
] = array(
816 'table_name' => $dao->table_name
,
817 'column_name' => $dao->column_name
,
818 'data_type' => $dao->data_type
,
827 * Get function for query object api.
829 * The API supports 2 types of get request. The more complex uses the BAO query object.
830 * This is a generic function for those functions that call it
832 * At the moment only called by contact we should extend to contribution &
833 * others that use the query object. Note that this function passes permission information in.
836 * Ideally this would be merged with _civicrm_get_query_object but we need to resolve differences in what the
840 * @param array $params
841 * As passed into api get or getcount function.
842 * @param array $additional_options
843 * Array of options (so we can modify the filter).
844 * @param bool $getCount
845 * Are we just after the count.
849 function _civicrm_api3_get_using_query_object($entity, $params, $additional_options = array(), $getCount = NULL) {
850 $lowercase_entity = _civicrm_api_get_entity_name_from_camel($entity);
851 // Convert id to e.g. contact_id
852 if (empty($params[$lowercase_entity . '_id']) && isset($params['id'])) {
853 $params[$lowercase_entity . '_id'] = $params['id'];
855 unset($params['id']);
857 $options = _civicrm_api3_get_options_from_params($params, TRUE);
859 $inputParams = array_merge(
860 CRM_Utils_Array
::value('input_params', $options, array()),
861 CRM_Utils_Array
::value('input_params', $additional_options, array())
863 $returnProperties = array_merge(
864 CRM_Utils_Array
::value('return', $options, array()),
865 CRM_Utils_Array
::value('return', $additional_options, array())
867 if (empty($returnProperties)) {
868 $returnProperties = NULL;
870 if (!empty($params['check_permissions'])) {
871 // we will filter query object against getfields
872 $fields = civicrm_api($entity, 'getfields', array('version' => 3, 'action' => 'get'));
873 // we need to add this in as earlier in this function 'id' was unset in favour of $entity_id
874 $fields['values'][$lowercase_entity . '_id'] = array();
875 $varsToFilter = array('returnProperties', 'inputParams');
876 foreach ($varsToFilter as $varToFilter) {
877 if (!is_array($
$varToFilter)) {
880 //I was going to throw an exception rather than silently filter out - but
881 //would need to diff out of exceptions arr other keys like 'options', 'return', 'api. etcetc
882 //so we are silently ignoring parts of their request
883 //$exceptionsArr = array_diff(array_keys($$varToFilter), array_keys($fields['values']));
884 $
$varToFilter = array_intersect_key($
$varToFilter, $fields['values']);
887 $options = array_merge($options, $additional_options);
888 $sort = CRM_Utils_Array
::value('sort', $options, NULL);
889 $offset = CRM_Utils_Array
::value('offset', $options, NULL);
890 $limit = CRM_Utils_Array
::value('limit', $options, NULL);
891 $smartGroupCache = CRM_Utils_Array
::value('smartGroupCache', $params);
895 $returnProperties = NULL;
898 if (substr($sort, 0, 2) == 'id') {
899 $sort = $lowercase_entity . "_" . $sort;
902 $newParams = CRM_Contact_BAO_Query
::convertFormValues($inputParams);
904 $skipPermissions = !empty($params['check_permissions']) ?
0 : 1;
906 list($entities, $options) = CRM_Contact_BAO_Query
::apiQuery(
918 // only return the count of contacts
926 * Get dao query object based on input params.
928 * Ideally this would be merged with _civicrm_get_using_query_object but we need to resolve differences in what the
931 * @param array $params
932 * @param string $mode
933 * @param string $entity
936 * [CRM_Core_DAO|CRM_Contact_BAO_Query]
938 function _civicrm_api3_get_query_object($params, $mode, $entity) {
939 $options = _civicrm_api3_get_options_from_params($params, TRUE, $entity, 'get');
940 $sort = CRM_Utils_Array
::value('sort', $options, NULL);
941 $offset = CRM_Utils_Array
::value('offset', $options);
942 $rowCount = CRM_Utils_Array
::value('limit', $options);
943 $inputParams = CRM_Utils_Array
::value('input_params', $options, array());
944 $returnProperties = CRM_Utils_Array
::value('return', $options, NULL);
945 if (empty($returnProperties)) {
946 $returnProperties = CRM_Contribute_BAO_Query
::defaultReturnProperties($mode);
949 $newParams = CRM_Contact_BAO_Query
::convertFormValues($inputParams, 0, FALSE, $entity);
950 $query = new CRM_Contact_BAO_Query($newParams, $returnProperties, NULL,
952 empty($params['check_permissions'])
954 list($select, $from, $where, $having) = $query->query();
956 $sql = "$select $from $where $having";
959 $sql .= " ORDER BY $sort ";
961 if (!empty($rowCount)) {
962 $sql .= " LIMIT $offset, $rowCount ";
964 $dao = CRM_Core_DAO
::executeQuery($sql);
965 return array($dao, $query);
969 * Function transfers the filters being passed into the DAO onto the params object.
971 * @deprecated DAO based retrieval is being phased out.
973 * @param CRM_Core_DAO $dao
974 * @param array $params
975 * @param bool $unique
976 * @param array $extraSql
977 * API specific queries eg for event isCurrent would be converted to
978 * $extraSql['where'] = array('civicrm_event' => array('(start_date >= CURDATE() || end_date >= CURDATE())'));
980 * @throws API_Exception
983 function _civicrm_api3_dao_set_filter(&$dao, $params, $unique = TRUE, $extraSql = array()) {
984 $entity = _civicrm_api_get_entity_name_from_dao($dao);
985 $lowercase_entity = _civicrm_api_get_entity_name_from_camel($entity);
986 if (!empty($params[$lowercase_entity . "_id"]) && empty($params['id'])) {
987 //if entity_id is set then treat it as ID (will be overridden by id if set)
988 $params['id'] = $params[$lowercase_entity . "_id"];
990 $allfields = _civicrm_api3_build_fields_array($dao, $unique);
991 $fields = array_intersect(array_keys($allfields), array_keys($params));
993 $options = _civicrm_api3_get_options_from_params($params);
994 //apply options like sort
995 _civicrm_api3_apply_options_to_dao($params, $dao, $entity);
997 //accept filters like filter.activity_date_time_high
998 // std is now 'filters' => ..
999 if (strstr(implode(',', array_keys($params)), 'filter')) {
1000 if (isset($params['filters']) && is_array($params['filters'])) {
1001 foreach ($params['filters'] as $paramkey => $paramvalue) {
1002 _civicrm_api3_apply_filters_to_dao($paramkey, $paramvalue, $dao);
1006 foreach ($params as $paramkey => $paramvalue) {
1007 if (strstr($paramkey, 'filter')) {
1008 _civicrm_api3_apply_filters_to_dao(substr($paramkey, 7), $paramvalue, $dao);
1017 foreach ($fields as $field) {
1018 if (is_array($params[$field])) {
1019 //get the actual fieldname from db
1020 $fieldName = $allfields[$field]['name'];
1021 $where = CRM_Core_DAO
::createSqlFilter($fieldName, $params[$field], 'String');
1022 if (!empty($where)) {
1023 $dao->whereAdd($where);
1028 $daoFieldName = $allfields[$field]['name'];
1029 if (empty($daoFieldName)) {
1030 throw new API_Exception("Failed to determine field name for \"$field\"");
1032 $dao->{$daoFieldName} = $params[$field];
1035 $dao->$field = $params[$field];
1039 if (!empty($extraSql['where'])) {
1040 foreach ($extraSql['where'] as $table => $sqlWhere) {
1041 foreach ($sqlWhere as $where) {
1042 $dao->whereAdd($where);
1046 if (!empty($options['return']) && is_array($options['return']) && empty($options['is_count'])) {
1048 // Ensure 'id' is included.
1049 $options['return']['id'] = TRUE;
1050 $allfields = _civicrm_api3_get_unique_name_array($dao);
1051 $returnMatched = array_intersect(array_keys($options['return']), $allfields);
1052 foreach ($returnMatched as $returnValue) {
1053 $dao->selectAdd($returnValue);
1056 // Not already matched on the field names.
1057 $unmatchedFields = array_diff(
1058 array_keys($options['return']),
1062 $returnUniqueMatched = array_intersect(
1064 // But a match for the field keys.
1065 array_flip($allfields)
1067 foreach ($returnUniqueMatched as $uniqueVal) {
1068 $dao->selectAdd($allfields[$uniqueVal]);
1071 $dao->setApiFilter($params);
1075 * Apply filters (e.g. high, low) to DAO object (prior to find).
1077 * @param string $filterField
1078 * Field name of filter.
1079 * @param string $filterValue
1080 * Field value of filter.
1081 * @param object $dao
1084 function _civicrm_api3_apply_filters_to_dao($filterField, $filterValue, &$dao) {
1085 if (strstr($filterField, 'high')) {
1086 $fieldName = substr($filterField, 0, -5);
1087 $dao->whereAdd("($fieldName <= $filterValue )");
1089 if (strstr($filterField, 'low')) {
1090 $fieldName = substr($filterField, 0, -4);
1091 $dao->whereAdd("($fieldName >= $filterValue )");
1093 if ($filterField == 'is_current' && $filterValue == 1) {
1094 $todayStart = date('Ymd000000', strtotime('now'));
1095 $todayEnd = date('Ymd235959', strtotime('now'));
1096 $dao->whereAdd("(start_date <= '$todayStart' OR start_date IS NULL) AND (end_date >= '$todayEnd' OR end_date IS NULL)");
1097 if (property_exists($dao, 'is_active')) {
1098 $dao->whereAdd('is_active = 1');
1104 * Get sort, limit etc options from the params - supporting old & new formats.
1106 * Get returnProperties for legacy
1108 * @param array $params
1109 * Params array as passed into civicrm_api.
1110 * @param bool $queryObject
1111 * Is this supporting a queryObject api (e.g contact) - if so we support more options.
1112 * for legacy report & return a unique fields array
1114 * @param string $entity
1115 * @param string $action
1117 * @throws API_Exception
1119 * options extracted from params
1121 function _civicrm_api3_get_options_from_params(&$params, $queryObject = FALSE, $entity = '', $action = '') {
1122 $lowercase_entity = _civicrm_api_get_entity_name_from_camel($entity);
1124 $sort = CRM_Utils_Array
::value('sort', $params, 0);
1125 $sort = CRM_Utils_Array
::value('option.sort', $params, $sort);
1126 $sort = CRM_Utils_Array
::value('option_sort', $params, $sort);
1128 $offset = CRM_Utils_Array
::value('offset', $params, 0);
1129 $offset = CRM_Utils_Array
::value('option.offset', $params, $offset);
1130 // dear PHP thought it would be a good idea to transform a.b into a_b in the get/post
1131 $offset = CRM_Utils_Array
::value('option_offset', $params, $offset);
1133 $limit = CRM_Utils_Array
::value('rowCount', $params, 25);
1134 $limit = CRM_Utils_Array
::value('option.limit', $params, $limit);
1135 $limit = CRM_Utils_Array
::value('option_limit', $params, $limit);
1137 if (is_array(CRM_Utils_Array
::value('options', $params))) {
1138 // is count is set by generic getcount not user
1139 $is_count = CRM_Utils_Array
::value('is_count', $params['options']);
1140 $offset = CRM_Utils_Array
::value('offset', $params['options'], $offset);
1141 $limit = CRM_Utils_Array
::value('limit', $params['options'], $limit);
1142 $sort = CRM_Utils_Array
::value('sort', $params['options'], $sort);
1145 $returnProperties = array();
1146 // handle the format return =sort_name,display_name...
1147 if (array_key_exists('return', $params)) {
1148 if (is_array($params['return'])) {
1149 $returnProperties = array_fill_keys($params['return'], 1);
1152 $returnProperties = explode(',', str_replace(' ', '', $params['return']));
1153 $returnProperties = array_fill_keys($returnProperties, 1);
1156 if ($entity && $action == 'get') {
1157 if (!empty($returnProperties['id'])) {
1158 $returnProperties[$lowercase_entity . '_id'] = 1;
1159 unset($returnProperties['id']);
1161 switch (trim(strtolower($sort))) {
1165 $sort = str_replace('id', $lowercase_entity . '_id', $sort);
1170 'offset' => CRM_Utils_Rule
::integer($offset) ?
$offset : NULL,
1171 'sort' => CRM_Utils_Rule
::string($sort) ?
$sort : NULL,
1172 'limit' => CRM_Utils_Rule
::integer($limit) ?
$limit : NULL,
1173 'is_count' => $is_count,
1174 'return' => !empty($returnProperties) ?
$returnProperties : array(),
1177 if ($options['sort'] && stristr($options['sort'], 'SELECT')) {
1178 throw new API_Exception('invalid string in sort options');
1181 if (!$queryObject) {
1184 //here comes the legacy support for $returnProperties, $inputParams e.g for contat_get
1185 // if the query object is being used this should be used
1186 $inputParams = array();
1187 $legacyreturnProperties = array();
1189 'sort', 'offset', 'rowCount', 'options', 'return',
1190 'version', 'prettyprint', 'check_permissions', 'sequential',
1192 foreach ($params as $n => $v) {
1193 if (substr($n, 0, 7) == 'return.') {
1194 $legacyreturnProperties[substr($n, 7)] = $v;
1196 elseif ($n == 'id') {
1197 $inputParams[$lowercase_entity . '_id'] = $v;
1199 elseif (in_array($n, $otherVars)) {
1202 $inputParams[$n] = $v;
1203 if ($v && !is_array($v) && stristr($v, 'SELECT')) {
1204 throw new API_Exception('invalid string');
1208 $options['return'] = array_merge($returnProperties, $legacyreturnProperties);
1209 $options['input_params'] = $inputParams;
1214 * Apply options (e.g. sort, limit, order by) to DAO object (prior to find).
1216 * @param array $params
1217 * Params array as passed into civicrm_api.
1218 * @param object $dao
1222 function _civicrm_api3_apply_options_to_dao(&$params, &$dao, $entity) {
1224 $options = _civicrm_api3_get_options_from_params($params, FALSE, $entity);
1225 if (!$options['is_count']) {
1226 if (!empty($options['limit'])) {
1227 $dao->limit((int) $options['offset'], (int) $options['limit']);
1229 if (!empty($options['sort'])) {
1230 $dao->orderBy($options['sort']);
1236 * Build fields array.
1238 * This is the array of fields as it relates to the given DAO
1239 * returns unique fields as keys by default but if set but can return by DB fields
1241 * @param CRM_Core_DAO $bao
1242 * @param bool $unique
1246 function _civicrm_api3_build_fields_array(&$bao, $unique = TRUE) {
1247 $fields = $bao->fields();
1249 if (empty($fields['id'])) {
1250 $lowercase_entity = _civicrm_api_get_entity_name_from_camel(_civicrm_api_get_entity_name_from_dao($bao));
1251 $fields['id'] = $fields[$lowercase_entity . '_id'];
1252 unset($fields[$lowercase_entity . '_id']);
1257 foreach ($fields as $field) {
1258 $dbFields[$field['name']] = $field;
1264 * Build fields array.
1266 * This is the array of fields as it relates to the given DAO
1267 * returns unique fields as keys by default but if set but can return by DB fields
1269 * @param CRM_Core_DAO $bao
1273 function _civicrm_api3_get_unique_name_array(&$bao) {
1274 $fields = $bao->fields();
1275 foreach ($fields as $field => $values) {
1276 $uniqueFields[$field] = CRM_Utils_Array
::value('name', $values, $field);
1278 return $uniqueFields;
1282 * Converts an DAO object to an array.
1284 * @deprecated - DAO based retrieval is being phased out.
1286 * @param CRM_Core_DAO $dao
1287 * Object to convert.
1288 * @param array $params
1289 * @param bool $uniqueFields
1290 * @param string $entity
1291 * @param bool $autoFind
1295 function _civicrm_api3_dao_to_array($dao, $params = NULL, $uniqueFields = TRUE, $entity = "", $autoFind = TRUE) {
1297 if (isset($params['options']) && !empty($params['options']['is_count'])) {
1298 return $dao->count();
1303 if ($autoFind && !$dao->find()) {
1307 if (isset($dao->count
)) {
1311 $fields = array_keys(_civicrm_api3_build_fields_array($dao, FALSE));
1312 while ($dao->fetch()) {
1314 foreach ($fields as $key) {
1315 if (array_key_exists($key, $dao)) {
1316 // not sure on that one
1317 if ($dao->$key !== NULL) {
1318 $tmp[$key] = $dao->$key;
1322 $result[$dao->id
] = $tmp;
1324 if (_civicrm_api3_custom_fields_are_required($entity, $params)) {
1325 _civicrm_api3_custom_data_get($result[$dao->id
], $entity, $dao->id
);
1333 * Determine if custom fields need to be retrieved.
1335 * We currently retrieve all custom fields or none at this level so if we know the entity
1336 * && 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
1337 * @todo filter so only required fields are queried
1339 * @param string $entity
1340 * Entity name in CamelCase.
1341 * @param array $params
1345 function _civicrm_api3_custom_fields_are_required($entity, $params) {
1346 if (!array_key_exists($entity, CRM_Core_BAO_CustomQuery
::$extendsMap)) {
1349 $options = _civicrm_api3_get_options_from_params($params);
1350 // We check for possibility of 'custom' => 1 as well as specific custom fields.
1351 $returnString = implode('', $options['return']) . implode('', array_keys($options['return']));
1352 if (stristr($returnString, 'custom')) {
1358 * Converts an object to an array.
1360 * @param object $dao
1361 * (reference) object to convert.
1362 * @param array $values
1363 * (reference) array.
1364 * @param array|bool $uniqueFields
1366 function _civicrm_api3_object_to_array(&$dao, &$values, $uniqueFields = FALSE) {
1368 $fields = _civicrm_api3_build_fields_array($dao, $uniqueFields);
1369 foreach ($fields as $key => $value) {
1370 if (array_key_exists($key, $dao)) {
1371 $values[$key] = $dao->$key;
1377 * Wrapper for _civicrm_object_to_array when api supports unique fields.
1384 function _civicrm_api3_object_to_array_unique_fields(&$dao, &$values) {
1385 return _civicrm_api3_object_to_array($dao, $values, TRUE);
1389 * Format custom parameters.
1391 * @param array $params
1392 * @param array $values
1393 * @param string $extends
1394 * Entity that this custom field extends (e.g. contribution, event, contact).
1395 * @param string $entityId
1396 * ID of entity per $extends.
1398 function _civicrm_api3_custom_format_params($params, &$values, $extends, $entityId = NULL) {
1399 $values['custom'] = array();
1400 $checkCheckBoxField = FALSE;
1402 if (in_array($extends, array('Household', 'Individual', 'Organization'))) {
1403 $entity = 'Contact';
1406 $fields = civicrm_api($entity, 'getfields', array('version' => 3, 'action' => 'create'));
1407 if (!$fields['is_error']) {
1408 // not sure if fields could be error - maybe change to using civicrm_api3 wrapper later - this is conservative
1409 $fields = $fields['values'];
1410 $checkCheckBoxField = TRUE;
1413 foreach ($params as $key => $value) {
1414 list($customFieldID, $customValueID) = CRM_Core_BAO_CustomField
::getKeyID($key, TRUE);
1415 if ($customFieldID && (!is_null($value))) {
1416 if ($checkCheckBoxField && !empty($fields['custom_' . $customFieldID]) && $fields['custom_' . $customFieldID]['html_type'] == 'CheckBox') {
1417 formatCheckBoxField($value, 'custom_' . $customFieldID, $entity);
1420 CRM_Core_BAO_CustomField
::formatCustomField($customFieldID, $values['custom'],
1421 $value, $extends, $customValueID, $entityId, FALSE, FALSE, TRUE
1428 * Format parameters for create action.
1430 * @param array $params
1433 function _civicrm_api3_format_params_for_create(&$params, $entity) {
1434 $nonGenericEntities = array('Contact', 'Individual', 'Household', 'Organization');
1436 $customFieldEntities = array_diff_key(CRM_Core_BAO_CustomQuery
::$extendsMap, array_fill_keys($nonGenericEntities, 1));
1437 if (!array_key_exists($entity, $customFieldEntities)) {
1441 _civicrm_api3_custom_format_params($params, $values, $entity);
1442 $params = array_merge($params, $values);
1446 * We can't rely on downstream to add separators to checkboxes so we'll check here.
1448 * We should look at pushing to BAO function
1449 * and / or validate function but this is a safe place for now as it has massive test coverage & we can keep the change very specific
1450 * note that this is specifically tested in the GRANT api test case so later refactoring should use that as a checking point
1452 * We will only alter the value if we are sure that changing it will make it correct - if it appears wrong but does not appear to have a clear fix we
1453 * don't touch - lots of very cautious code in here
1455 * The resulting array should look like
1461 * OR one or more keys wrapped in a CRM_Core_DAO::VALUE_SEPARATOR - either it accepted by the receiving function
1463 * @todo - we are probably skipping handling disabled options as presumably getoptions is not giving us them. This should be non-regressive but might
1464 * be fixed in future
1466 * @param mixed $checkboxFieldValue
1467 * @param string $customFieldLabel
1468 * @param string $entity
1470 function formatCheckBoxField(&$checkboxFieldValue, $customFieldLabel, $entity) {
1472 if (is_string($checkboxFieldValue) && stristr($checkboxFieldValue, CRM_Core_DAO
::VALUE_SEPARATOR
)) {
1473 // We can assume it's pre-formatted.
1476 $options = civicrm_api($entity, 'getoptions', array('field' => $customFieldLabel, 'version' => 3));
1477 if (!empty($options['is_error'])) {
1478 // The check is precautionary - can probably be removed later.
1482 $options = $options['values'];
1484 if (is_array($checkboxFieldValue)) {
1485 foreach ($checkboxFieldValue as $key => $value) {
1486 if (!array_key_exists($key, $options)) {
1487 $validValue = FALSE;
1491 // we have been passed an array that is already in the 'odd' custom field format
1496 // so we either have an array that is not keyed by the value or we have a string that doesn't hold separators
1497 // if the array only has one item we'll treat it like any other string
1498 if (is_array($checkboxFieldValue) && count($checkboxFieldValue) == 1) {
1499 $possibleValue = reset($checkboxFieldValue);
1501 if (is_string($checkboxFieldValue)) {
1502 $possibleValue = $checkboxFieldValue;
1504 if (isset($possibleValue) && array_key_exists($possibleValue, $options)) {
1505 $checkboxFieldValue = CRM_Core_DAO
::VALUE_SEPARATOR
. $possibleValue . CRM_Core_DAO
::VALUE_SEPARATOR
;
1508 elseif (is_array($checkboxFieldValue)) {
1509 // so this time around we are considering the values in the array
1510 $possibleValues = $checkboxFieldValue;
1511 $formatValue = TRUE;
1513 elseif (stristr($checkboxFieldValue, ',')) {
1514 $formatValue = TRUE;
1515 //lets see if we should separate it - we do this near the end so we
1516 // ensure we have already checked that the comma is not part of a legitimate match
1517 // and of course, we don't make any changes if we don't now have matches
1518 $possibleValues = explode(',', $checkboxFieldValue);
1521 // run out of ideas as to what the format might be - if it's a string it doesn't match with or without the ','
1525 foreach ($possibleValues as $index => $possibleValue) {
1526 if (array_key_exists($possibleValue, $options)) {
1527 // do nothing - we will leave formatValue set to true unless another value is not found (which would cause us to ignore the whole value set)
1529 elseif (array_key_exists(trim($possibleValue), $options)) {
1530 $possibleValues[$index] = trim($possibleValue);
1533 $formatValue = FALSE;
1537 $checkboxFieldValue = CRM_Core_DAO
::VALUE_SEPARATOR
. implode(CRM_Core_DAO
::VALUE_SEPARATOR
, $possibleValues) . CRM_Core_DAO
::VALUE_SEPARATOR
;
1542 * This function ensures that we have the right input parameters.
1546 * This function is only called when $dao is passed into verify_mandatory.
1547 * The practice of passing $dao into verify_mandatory turned out to be
1548 * unsatisfactory as the required fields @ the dao level is so different to the abstract
1549 * api level. Hence the intention is to remove this function
1550 * & the associated param from verify_mandatory
1552 * @param array $params
1553 * Associative array of property name/value.
1554 * pairs to insert in new history.
1555 * @param string $daoName
1556 * @param bool $return
1558 * @daoName string DAO to check params against
1561 * Should the missing fields be returned as an array (core error created as default)
1562 * true if all fields present, depending on $result a core error is created of an array of missing fields is returned
1564 function _civicrm_api3_check_required_fields($params, $daoName, $return = FALSE) {
1565 //@deprecated - see notes
1566 if (isset($params['extends'])) {
1567 if (($params['extends'] == 'Activity' ||
1568 $params['extends'] == 'Phonecall' ||
1569 $params['extends'] == 'Meeting' ||
1570 $params['extends'] == 'Group' ||
1571 $params['extends'] == 'Contribution'
1573 ($params['style'] == 'Tab')
1575 return civicrm_api3_create_error(ts("Can not create Custom Group in Tab for " . $params['extends']));
1579 $dao = new $daoName();
1580 $fields = $dao->fields();
1583 foreach ($fields as $k => $v) {
1584 if ($v['name'] == 'id') {
1588 if (!empty($v['required'])) {
1589 // 0 is a valid input for numbers, CRM-8122
1590 if (!isset($params[$k]) ||
(empty($params[$k]) && !($params[$k] === 0))) {
1596 if (!empty($missing)) {
1597 if (!empty($return)) {
1601 return civicrm_api3_create_error(ts("Required fields " . implode(',', $missing) . " for $daoName are not present"));
1609 * Function to do a 'standard' api get - when the api is only doing a $bao->find then use this.
1611 * @param string $bao_name
1613 * @param array $params
1615 * @param bool $returnAsSuccess
1616 * Return in api success format.
1617 * @param string $entity
1618 * @param CRM_Utils_SQL_Select|NULL $sql
1619 * Extra SQL bits to add to the query. For filtering current events, this might be:
1620 * CRM_Utils_SQL_Select::fragment()->where('(start_date >= CURDATE() || end_date >= CURDATE())');
1621 * @param bool $uniqueFields
1622 * Should unique field names be returned (for backward compatibility)
1626 function _civicrm_api3_basic_get($bao_name, &$params, $returnAsSuccess = TRUE, $entity = "", $sql = NULL, $uniqueFields = FALSE) {
1628 if ($returnAsSuccess) {
1629 return civicrm_api3_create_success(_civicrm_api3_get_using_utils_sql($bao_name, $params, $uniqueFields, $sql), $params, $entity, 'get');
1632 return _civicrm_api3_get_using_utils_sql($bao_name, $params, $uniqueFields, $sql);
1637 * Function to do a 'standard' api create - when the api is only doing a $bao::create then use this.
1639 * @param string $bao_name
1640 * Name of BAO Class.
1641 * @param array $params
1642 * Parameters passed into the api call.
1643 * @param string $entity
1644 * Entity - pass in if entity is non-standard & required $ids array.
1646 * @throws API_Exception
1649 function _civicrm_api3_basic_create($bao_name, &$params, $entity = NULL) {
1650 _civicrm_api3_format_params_for_create($params, $entity);
1651 $args = array(&$params);
1653 $ids = array($entity => CRM_Utils_Array
::value('id', $params));
1657 if (method_exists($bao_name, 'create')) {
1659 $fct_name = $bao_name . '::' . $fct;
1660 $bao = call_user_func_array(array($bao_name, $fct), $args);
1662 elseif (method_exists($bao_name, 'add')) {
1664 $fct_name = $bao_name . '::' . $fct;
1665 $bao = call_user_func_array(array($bao_name, $fct), $args);
1668 $fct_name = '_civicrm_api3_basic_create_fallback';
1669 $bao = _civicrm_api3_basic_create_fallback($bao_name, $params);
1672 if (is_null($bao)) {
1673 return civicrm_api3_create_error('Entity not created (' . $fct_name . ')');
1675 elseif (is_a($bao, 'CRM_Core_Error')) {
1676 //some weird circular thing means the error takes itself as an argument
1677 $msg = $bao->getMessages($bao);
1678 // the api deals with entities on a one-by-one basis. However, the contribution bao pushes entities
1679 // onto the error object - presumably because the contribution import is not handling multiple errors correctly
1680 // so we need to reset the error object here to avoid getting concatenated errors
1681 //@todo - the mulitple error handling should be moved out of the contribution object to the import / multiple entity processes
1682 CRM_Core_Error
::singleton()->reset();
1683 throw new API_Exception($msg);
1687 _civicrm_api3_object_to_array($bao, $values[$bao->id
]);
1688 return civicrm_api3_create_success($values, $params, $entity, 'create', $bao);
1693 * For BAO's which don't have a create() or add() functions, use this fallback implementation.
1695 * @fixme There's an intuitive sense that this behavior should be defined somehow in the BAO/DAO class
1696 * structure. In practice, that requires a fair amount of refactoring and/or kludgery.
1698 * @param string $bao_name
1699 * @param array $params
1701 * @throws API_Exception
1703 * @return CRM_Core_DAO|NULL
1704 * An instance of the BAO
1706 function _civicrm_api3_basic_create_fallback($bao_name, &$params) {
1707 $dao_name = get_parent_class($bao_name);
1708 if ($dao_name === 'CRM_Core_DAO' ||
!$dao_name) {
1709 $dao_name = $bao_name;
1711 $entityName = CRM_Core_DAO_AllCoreTables
::getBriefName($dao_name);
1712 if (empty($entityName)) {
1713 throw new API_Exception("Class \"$bao_name\" does not map to an entity name", "unmapped_class_to_entity", array(
1714 'class_name' => $bao_name,
1717 $hook = empty($params['id']) ?
'create' : 'edit';
1719 CRM_Utils_Hook
::pre($hook, $entityName, CRM_Utils_Array
::value('id', $params), $params);
1720 $instance = new $dao_name();
1721 $instance->copyValues($params);
1723 CRM_Utils_Hook
::post($hook, $entityName, $instance->id
, $instance);
1729 * Function to do a 'standard' api del.
1731 * When the api is only doing a $bao::del then use this if api::del doesn't exist it will try DAO delete method.
1733 * @param string $bao_name
1734 * @param array $params
1738 * @throws API_Exception
1740 function _civicrm_api3_basic_delete($bao_name, &$params) {
1742 civicrm_api3_verify_mandatory($params, NULL, array('id'));
1743 $args = array(&$params['id']);
1744 if (method_exists($bao_name, 'del')) {
1745 $bao = call_user_func_array(array($bao_name, 'del'), $args);
1746 if ($bao !== FALSE) {
1747 return civicrm_api3_create_success(TRUE);
1749 throw new API_Exception('Could not delete entity id ' . $params['id']);
1751 elseif (method_exists($bao_name, 'delete')) {
1752 $dao = new $bao_name();
1753 $dao->id
= $params['id'];
1755 while ($dao->fetch()) {
1757 return civicrm_api3_create_success();
1761 throw new API_Exception('Could not delete entity id ' . $params['id']);
1765 throw new API_Exception('no delete method found');
1769 * Get custom data for the given entity & Add it to the returnArray.
1771 * This looks like 'custom_123' = 'custom string' AND
1772 * 'custom_123_1' = 'custom string'
1773 * Where 123 is field value & 1 is the id within the custom group data table (value ID)
1775 * @param array $returnArray
1776 * Array to append custom data too - generally $result[4] where 4 is the entity id.
1777 * @param string $entity
1778 * E.g membership, event.
1779 * @param int $entity_id
1780 * @param int $groupID
1781 * Per CRM_Core_BAO_CustomGroup::getTree.
1782 * @param int $subType
1783 * E.g. membership_type_id where custom data doesn't apply to all membership types.
1784 * @param string $subName
1785 * Subtype of entity.
1787 function _civicrm_api3_custom_data_get(&$returnArray, $entity, $entity_id, $groupID = NULL, $subType = NULL, $subName = NULL) {
1788 $groupTree = CRM_Core_BAO_CustomGroup
::getTree($entity,
1789 CRM_Core_DAO
::$_nullObject,
1798 $groupTree = CRM_Core_BAO_CustomGroup
::formatGroupTree($groupTree, 1, CRM_Core_DAO
::$_nullObject);
1799 $customValues = array();
1800 CRM_Core_BAO_CustomGroup
::setDefaults($groupTree, $customValues);
1801 $fieldInfo = array();
1802 foreach ($groupTree as $set) {
1803 $fieldInfo +
= $set['fields'];
1805 if (!empty($customValues)) {
1806 foreach ($customValues as $key => $val) {
1807 // per standard - return custom_fieldID
1808 $id = CRM_Core_BAO_CustomField
::getKeyID($key);
1809 $returnArray['custom_' . $id] = $val;
1811 //not standard - but some api did this so guess we should keep - cheap as chips
1812 $returnArray[$key] = $val;
1814 // Shim to restore legacy behavior of ContactReference custom fields
1815 if (!empty($fieldInfo[$id]) && $fieldInfo[$id]['data_type'] == 'ContactReference') {
1816 $returnArray['custom_' . $id . '_id'] = $returnArray[$key . '_id'] = $val;
1817 $returnArray['custom_' . $id] = $returnArray[$key] = CRM_Core_DAO
::getFieldValue('CRM_Contact_DAO_Contact', $val, 'sort_name');
1824 * Validate fields being passed into API.
1826 * This function relies on the getFields function working accurately
1827 * for the given API. If error mode is set to TRUE then it will also check
1830 * As of writing only date was implemented.
1832 * @param string $entity
1833 * @param string $action
1834 * @param array $params
1836 * @param array $fields
1837 * Response from getfields all variables are the same as per civicrm_api.
1838 * @param bool $errorMode
1839 * ErrorMode do intensive post fail checks?.
1843 function _civicrm_api3_validate_fields($entity, $action, &$params, $fields, $errorMode = FALSE) {
1844 //CRM-15792 handle datetime for custom fields below code handles chain api call
1845 $chainApikeys = array_flip(preg_grep("/^api./", array_keys($params)));
1846 if (!empty($chainApikeys) && is_array($chainApikeys)) {
1847 foreach ($chainApikeys as $key => $value) {
1848 if (is_array($params[$key])) {
1849 $chainApiParams = array_intersect_key($fields, $params[$key]);
1850 $customFields = array_fill_keys(array_keys($params[$key]), $key);
1854 $fields = array_intersect_key($fields, $params);
1855 if (!empty($chainApiParams)) {
1856 $fields = array_merge($fields, $chainApiParams);
1858 foreach ($fields as $fieldName => $fieldInfo) {
1859 switch (CRM_Utils_Array
::value('type', $fieldInfo)) {
1860 case CRM_Utils_Type
::T_INT
:
1861 //field is of type integer
1862 _civicrm_api3_validate_integer($params, $fieldName, $fieldInfo, $entity);
1865 case CRM_Utils_Type
::T_DATE
:
1866 case CRM_Utils_Type
::T_DATE + CRM_Utils_Type
::T_TIME
:
1867 case CRM_Utils_Type
::T_TIMESTAMP
:
1868 //field is of type date or datetime
1869 if (!empty($customFields) && array_key_exists($fieldName, $customFields)) {
1870 $dateParams = &$params[$customFields[$fieldName]];
1873 $dateParams = &$params;
1875 _civicrm_api3_validate_date($dateParams, $fieldName, $fieldInfo);
1880 _civicrm_api3_validate_html($params, $fieldName, $fieldInfo);
1883 case CRM_Utils_Type
::T_STRING
:
1884 _civicrm_api3_validate_string($params, $fieldName, $fieldInfo, $entity);
1887 case CRM_Utils_Type
::T_MONEY
:
1888 list($fieldValue, $op) = _civicrm_api3_field_value_check($params, $fieldName);
1889 if (strpos($op, 'NULL') !== FALSE ||
strpos($op, 'EMPTY') !== FALSE) {
1892 foreach ((array) $fieldValue as $fieldvalue) {
1893 if (!CRM_Utils_Rule
::money($fieldvalue) && !empty($fieldvalue)) {
1894 throw new Exception($fieldName . " is not a valid amount: " . $params[$fieldName]);
1900 // intensive checks - usually only called after DB level fail
1901 if (!empty($errorMode) && strtolower($action) == 'create') {
1902 if (!empty($fieldInfo['FKClassName'])) {
1903 if (!empty($fieldValue)) {
1904 _civicrm_api3_validate_constraint($params, $fieldName, $fieldInfo);
1906 elseif (!empty($fieldInfo['required'])) {
1907 throw new Exception("DB Constraint Violation - possibly $fieldName should possibly be marked as mandatory for this API. If so, please raise a bug report");
1910 if (!empty($fieldInfo['api.unique'])) {
1911 $params['entity'] = $entity;
1912 _civicrm_api3_validate_unique_key($params, $fieldName);
1919 * Validate date fields being passed into API.
1921 * It currently converts both unique fields and DB field names to a mysql date.
1922 * @todo - probably the unique field handling & the if exists handling is now done before this
1923 * function is reached in the wrapper - can reduce this code down to assume we
1924 * are only checking the passed in field
1926 * It also checks against the RULE:date function. This is a centralisation of code that was scattered and
1927 * may not be the best thing to do. There is no code level documentation on the existing functions to work off
1929 * @param array $params
1930 * Params from civicrm_api.
1931 * @param string $fieldName
1932 * Uniquename of field being checked.
1933 * @param array $fieldInfo
1934 * Array of fields from getfields function.
1938 function _civicrm_api3_validate_date(&$params, &$fieldName, &$fieldInfo) {
1939 list($fieldValue, $op) = _civicrm_api3_field_value_check($params, $fieldName);
1940 if (strpos($op, 'NULL') !== FALSE ||
strpos($op, 'EMPTY') !== FALSE) {
1943 //should we check first to prevent it from being copied if they have passed in sql friendly format?
1944 if (!empty($params[$fieldInfo['name']])) {
1945 $fieldValue = _civicrm_api3_getValidDate($fieldValue, $fieldInfo['name'], $fieldInfo['type']);
1947 if ((CRM_Utils_Array
::value('name', $fieldInfo) != $fieldName) && !empty($fieldValue)) {
1948 $fieldValue = _civicrm_api3_getValidDate($fieldValue, $fieldName, $fieldInfo['type']);
1952 $params[$fieldName][$op] = $fieldValue;
1955 $params[$fieldName] = $fieldValue;
1960 * Convert date into BAO friendly date.
1962 * We accept 'whatever strtotime accepts'
1964 * @param string $dateValue
1965 * @param string $fieldName
1971 function _civicrm_api3_getValidDate($dateValue, $fieldName, $fieldType) {
1972 if (is_array($dateValue)) {
1973 foreach ($dateValue as $key => $value) {
1974 $dateValue[$key] = _civicrm_api3_getValidDate($value, $fieldName, $fieldType);
1978 if (strtotime($dateValue) === FALSE) {
1979 throw new Exception($fieldName . " is not a valid date: " . $dateValue);
1981 $format = ($fieldType == CRM_Utils_Type
::T_DATE
) ?
'Ymd000000' : 'YmdHis';
1982 return CRM_Utils_Date
::processDate($dateValue, NULL, FALSE, $format);
1986 * Validate foreign constraint fields being passed into API.
1988 * @param mixed $fieldValue
1989 * @param string $fieldName
1990 * Uniquename of field being checked.
1991 * @param array $fieldInfo
1992 * Array of fields from getfields function.
1994 * @throws \API_Exception
1996 function _civicrm_api3_validate_constraint(&$fieldValue, &$fieldName, &$fieldInfo) {
1997 $daoName = $fieldInfo['FKClassName'];
1998 $dao = new $daoName();
1999 $dao->id
= $fieldValue;
2001 $dao->selectAdd('id');
2002 if (!$dao->find()) {
2003 throw new API_Exception("$fieldName is not valid : " . $fieldValue);
2008 * Validate foreign constraint fields being passed into API.
2010 * @param array $params
2011 * Params from civicrm_api.
2012 * @param string $fieldName
2013 * Uniquename of field being checked.
2017 function _civicrm_api3_validate_unique_key(&$params, &$fieldName) {
2018 list($fieldValue, $op) = _civicrm_api3_field_value_check($params, $fieldName);
2019 if (strpos($op, 'NULL') !== FALSE ||
strpos($op, 'EMPTY') !== FALSE) {
2022 $existing = civicrm_api($params['entity'], 'get', array(
2023 'version' => $params['version'],
2024 $fieldName => $fieldValue,
2026 // an entry already exists for this unique field
2027 if ($existing['count'] == 1) {
2028 // question - could this ever be a security issue?
2029 throw new API_Exception("Field: `$fieldName` must be unique. An conflicting entity already exists - id: " . $existing['id']);
2034 * Generic implementation of the "replace" action.
2036 * Replace the old set of entities (matching some given keys) with a new set of
2037 * entities (matching the same keys).
2039 * @note This will verify that 'values' is present, but it does not directly verify
2040 * any other parameters.
2042 * @param string $entity
2044 * @param array $params
2045 * Params from civicrm_api, including:.
2046 * - 'values': an array of records to save
2047 * - all other items: keys which identify new/pre-existing records.
2051 function _civicrm_api3_generic_replace($entity, $params) {
2053 $transaction = new CRM_Core_Transaction();
2055 if (!is_array($params['values'])) {
2056 throw new Exception("Mandatory key(s) missing from params array: values");
2059 // Extract the keys -- somewhat scary, don't think too hard about it
2060 $baseParams = _civicrm_api3_generic_replace_base_params($params);
2062 // Lookup pre-existing records
2063 $preexisting = civicrm_api($entity, 'get', $baseParams, $params);
2064 if (civicrm_error($preexisting)) {
2065 $transaction->rollback();
2066 return $preexisting;
2069 // Save the new/updated records
2071 foreach ($params['values'] as $replacement) {
2072 // Sugar: Don't force clients to duplicate the 'key' data
2073 $replacement = array_merge($baseParams, $replacement);
2074 $action = (isset($replacement['id']) ||
isset($replacement[$entity . '_id'])) ?
'update' : 'create';
2075 $create = civicrm_api($entity, $action, $replacement);
2076 if (civicrm_error($create)) {
2077 $transaction->rollback();
2080 foreach ($create['values'] as $entity_id => $entity_value) {
2081 $creates[$entity_id] = $entity_value;
2085 // Remove stale records
2086 $staleIDs = array_diff(
2087 array_keys($preexisting['values']),
2088 array_keys($creates)
2090 foreach ($staleIDs as $staleID) {
2091 $delete = civicrm_api($entity, 'delete', array(
2092 'version' => $params['version'],
2095 if (civicrm_error($delete)) {
2096 $transaction->rollback();
2101 return civicrm_api3_create_success($creates, $params);
2103 catch(PEAR_Exception
$e) {
2104 $transaction->rollback();
2105 return civicrm_api3_create_error($e->getMessage());
2107 catch(Exception
$e) {
2108 $transaction->rollback();
2109 return civicrm_api3_create_error($e->getMessage());
2114 * Replace base parameters.
2116 * @param array $params
2120 function _civicrm_api3_generic_replace_base_params($params) {
2121 $baseParams = $params;
2122 unset($baseParams['values']);
2123 unset($baseParams['sequential']);
2124 unset($baseParams['options']);
2129 * Returns fields allowable by api.
2132 * String Entity to query.
2133 * @param bool $unique
2134 * Index by unique fields?.
2135 * @param array $params
2139 function _civicrm_api_get_fields($entity, $unique = FALSE, &$params = array()) {
2140 $unsetIfEmpty = array(
2147 $dao = _civicrm_api3_get_DAO($entity);
2152 $fields = $d->fields();
2154 // Set html attributes for text fields
2155 foreach ($fields as $name => &$field) {
2156 if (isset($field['html'])) {
2157 $field['html'] +
= (array) $d::makeAttribute($field);
2161 // replace uniqueNames by the normal names as the key
2162 if (empty($unique)) {
2163 foreach ($fields as $name => &$field) {
2164 //getting rid of unused attributes
2165 foreach ($unsetIfEmpty as $attr) {
2166 if (empty($field[$attr])) {
2167 unset($field[$attr]);
2170 if ($name == $field['name']) {
2173 if (array_key_exists($field['name'], $fields)) {
2174 $field['error'] = 'name conflict';
2175 // it should never happen, but better safe than sorry
2178 $fields[$field['name']] = $field;
2179 $fields[$field['name']]['uniqueName'] = $name;
2180 unset($fields[$name]);
2183 // Translate FKClassName to the corresponding api
2184 foreach ($fields as $name => &$field) {
2185 if (!empty($field['FKClassName'])) {
2186 $FKApi = CRM_Core_DAO_AllCoreTables
::getBriefName($field['FKClassName']);
2188 $field['FKApiName'] = $FKApi;
2192 $fields +
= _civicrm_api_get_custom_fields($entity, $params);
2197 * Return an array of fields for a given entity.
2199 * This is the same as the BAO function but fields are prefixed with 'custom_' to represent api params.
2202 * @param array $params
2206 function _civicrm_api_get_custom_fields($entity, &$params) {
2207 $entity = _civicrm_api_get_camel_name($entity);
2208 if ($entity == 'Contact') {
2209 // Use sub-type if available, otherwise "NULL" to fetch from all contact types
2210 $entity = CRM_Utils_Array
::value('contact_type', $params);
2212 $customfields = CRM_Core_BAO_CustomField
::getFields($entity,
2215 // we could / should probably test for other subtypes here - e.g. activity_type_id
2216 CRM_Utils_Array
::value('contact_sub_type', $params),
2225 foreach ($customfields as $key => $value) {
2226 // Regular fields have a 'name' property
2227 $value['name'] = 'custom_' . $key;
2228 $value['title'] = $value['label'];
2229 $value['type'] = _getStandardTypeFromCustomDataType($value);
2230 $ret['custom_' . $key] = $value;
2236 * Translate the custom field data_type attribute into a std 'type'.
2238 * @param array $value
2242 function _getStandardTypeFromCustomDataType($value) {
2243 $dataType = $value['data_type'];
2244 //CRM-15792 - If date custom field contains timeformat change type to DateTime
2245 if ($value['data_type'] == 'Date' && isset($value['time_format']) && $value['time_format'] > 0) {
2246 $dataType = 'DateTime';
2249 'String' => CRM_Utils_Type
::T_STRING
,
2250 'Int' => CRM_Utils_Type
::T_INT
,
2251 'Money' => CRM_Utils_Type
::T_MONEY
,
2252 'Memo' => CRM_Utils_Type
::T_LONGTEXT
,
2253 'Float' => CRM_Utils_Type
::T_FLOAT
,
2254 'Date' => CRM_Utils_Type
::T_DATE
,
2255 'DateTime' => CRM_Utils_Type
::T_DATE + CRM_Utils_Type
::T_TIME
,
2256 'Boolean' => CRM_Utils_Type
::T_BOOLEAN
,
2257 'StateProvince' => CRM_Utils_Type
::T_INT
,
2258 'File' => CRM_Utils_Type
::T_STRING
,
2259 'Link' => CRM_Utils_Type
::T_STRING
,
2260 'ContactReference' => CRM_Utils_Type
::T_INT
,
2261 'Country' => CRM_Utils_Type
::T_INT
,
2263 return $mapping[$dataType];
2268 * Fill params array with alternate (alias) values where a field has an alias and that is filled & the main field isn't.
2270 * If multiple aliases the last takes precedence
2272 * Function also swaps unique fields for non-unique fields & vice versa.
2274 * @param $apiRequest
2277 function _civicrm_api3_swap_out_aliases(&$apiRequest, $fields) {
2278 foreach ($fields as $field => $values) {
2279 $uniqueName = CRM_Utils_Array
::value('uniqueName', $values);
2280 if (!empty($values['api.aliases'])) {
2281 // if aliased field is not set we try to use field alias
2282 if (!isset($apiRequest['params'][$field])) {
2283 foreach ($values['api.aliases'] as $alias) {
2284 if (isset($apiRequest['params'][$alias])) {
2285 $apiRequest['params'][$field] = $apiRequest['params'][$alias];
2287 //unset original field nb - need to be careful with this as it may bring inconsistencies
2288 // out of the woodwork but will be implementing only as _spec function extended
2289 unset($apiRequest['params'][$alias]);
2293 if (!isset($apiRequest['params'][$field]) && !empty($values['name']) && $field != $values['name']
2294 && isset($apiRequest['params'][$values['name']])
2296 $apiRequest['params'][$field] = $apiRequest['params'][$values['name']];
2297 // note that it would make sense to unset the original field here but tests need to be in place first
2299 if (!isset($apiRequest['params'][$field])
2301 && $field != $uniqueName
2302 && array_key_exists($uniqueName, $apiRequest['params'])
2304 $apiRequest['params'][$field] = CRM_Utils_Array
::value($values['uniqueName'], $apiRequest['params']);
2305 // note that it would make sense to unset the original field here but tests need to be in place first
2312 * Validate integer fields being passed into API.
2314 * It currently converts the incoming value 'user_contact_id' into the id of the currently logged in user.
2316 * @param array $params
2317 * Params from civicrm_api.
2318 * @param string $fieldName
2319 * Uniquename of field being checked.
2320 * @param array $fieldInfo
2321 * Array of fields from getfields function.
2322 * @param string $entity
2324 * @throws API_Exception
2326 function _civicrm_api3_validate_integer(&$params, &$fieldName, &$fieldInfo, $entity) {
2327 list($fieldValue, $op) = _civicrm_api3_field_value_check($params, $fieldName);
2328 if (strpos($op, 'NULL') !== FALSE ||
strpos($op, 'EMPTY') !== FALSE) {
2332 if (!empty($fieldValue)) {
2333 // if value = 'user_contact_id' (or similar), replace value with contact id
2334 if (!is_numeric($fieldValue) && is_scalar($fieldValue)) {
2335 $realContactId = _civicrm_api3_resolve_contactID($fieldValue);
2336 if ('unknown-user' === $realContactId) {
2337 throw new API_Exception("\"$fieldName\" \"{$fieldValue}\" cannot be resolved to a contact ID", 2002, array('error_field' => $fieldName, "type" => "integer"));
2339 elseif (is_numeric($realContactId)) {
2340 $fieldValue = $realContactId;
2343 if (!empty($fieldInfo['pseudoconstant']) ||
!empty($fieldInfo['options'])) {
2344 _civicrm_api3_api_match_pseudoconstant($fieldValue, $entity, $fieldName, $fieldInfo);
2347 // After swapping options, ensure we have an integer(s)
2348 foreach ((array) ($fieldValue) as $value) {
2349 if ($value && !is_numeric($value) && $value !== 'null' && !is_array($value)) {
2350 throw new API_Exception("$fieldName is not a valid integer", 2001, array('error_field' => $fieldName, "type" => "integer"));
2354 // Check our field length
2355 if (is_string($fieldValue) && !empty($fieldInfo['maxlength']) && strlen($fieldValue) > $fieldInfo['maxlength']
2357 throw new API_Exception($fieldValue . " is " . strlen($fieldValue) . " characters - longer than $fieldName length" . $fieldInfo['maxlength'] . ' characters',
2358 2100, array('field' => $fieldName, "max_length" => $fieldInfo['maxlength'])
2364 $params[$fieldName][$op] = $fieldValue;
2367 $params[$fieldName] = $fieldValue;
2372 * Determine a contact ID using a string expression.
2374 * @param string $contactIdExpr
2375 * E.g. "user_contact_id" or "@user:username".
2377 * @return int|NULL|'unknown-user'
2379 function _civicrm_api3_resolve_contactID($contactIdExpr) {
2380 // If value = 'user_contact_id' replace value with logged in user id.
2381 if ($contactIdExpr == "user_contact_id") {
2382 return CRM_Core_Session
::getLoggedInContactID();
2384 elseif (preg_match('/^@user:(.*)$/', $contactIdExpr, $matches)) {
2385 $config = CRM_Core_Config
::singleton();
2387 $ufID = $config->userSystem
->getUfId($matches[1]);
2389 return 'unknown-user';
2392 $contactID = CRM_Core_BAO_UFMatch
::getContactId($ufID);
2394 return 'unknown-user';
2403 * Validate html (check for scripting attack).
2405 * @param array $params
2406 * @param string $fieldName
2407 * @param array $fieldInfo
2409 * @throws API_Exception
2411 function _civicrm_api3_validate_html(&$params, &$fieldName, $fieldInfo) {
2412 list($fieldValue, $op) = _civicrm_api3_field_value_check($params, $fieldName);
2413 if (strpos($op, 'NULL') ||
strpos($op, 'EMPTY')) {
2417 if (!CRM_Utils_Rule
::xssString($fieldValue)) {
2418 throw new API_Exception('Input contains illegal SCRIPT tag.', array("field" => $fieldName, "error_code" => "xss"));
2424 * Validate string fields being passed into API.
2426 * @param array $params
2427 * Params from civicrm_api.
2428 * @param string $fieldName
2429 * Uniquename of field being checked.
2430 * @param array $fieldInfo
2431 * Array of fields from getfields function.
2432 * @param string $entity
2434 * @throws API_Exception
2437 function _civicrm_api3_validate_string(&$params, &$fieldName, &$fieldInfo, $entity) {
2438 list($fieldValue, $op) = _civicrm_api3_field_value_check($params, $fieldName, 'String');
2439 if (strpos($op, 'NULL') !== FALSE ||
strpos($op, 'EMPTY') !== FALSE || CRM_Utils_System
::isNull($fieldValue)) {
2443 if (!is_array($fieldValue)) {
2444 $fieldValue = (string) $fieldValue;
2447 //@todo what do we do about passed in arrays. For many of these fields
2448 // the missing piece of functionality is separating them to a separated string
2449 // & many save incorrectly. But can we change them wholesale?
2452 foreach ((array) $fieldValue as $value) {
2453 if (!CRM_Utils_Rule
::xssString($fieldValue)) {
2454 throw new Exception('Input contains illegal SCRIPT tag.');
2456 if ($fieldName == 'currency') {
2457 //When using IN operator $fieldValue is a array of currency codes
2458 if (!CRM_Utils_Rule
::currencyCode($value)) {
2459 throw new Exception("Currency not a valid code: $currency");
2464 if (!empty($fieldInfo['pseudoconstant']) ||
!empty($fieldInfo['options'])) {
2465 _civicrm_api3_api_match_pseudoconstant($fieldValue, $entity, $fieldName, $fieldInfo);
2467 // Check our field length
2468 elseif (is_string($fieldValue) && !empty($fieldInfo['maxlength']) && strlen(utf8_decode($fieldValue)) > $fieldInfo['maxlength']) {
2469 throw new API_Exception("Value for $fieldName is " . strlen(utf8_decode($value)) . " characters - This field has a maxlength of {$fieldInfo['maxlength']} characters.",
2470 2100, array('field' => $fieldName)
2475 $params[$fieldName][$op] = $fieldValue;
2478 $params[$fieldName] = $fieldValue;
2483 * Validate & swap out any pseudoconstants / options.
2485 * @param mixed $fieldValue
2486 * @param string $entity : api entity name
2487 * @param string $fieldName : field name used in api call (not necessarily the canonical name)
2488 * @param array $fieldInfo : getfields meta-data
2490 * @throws \API_Exception
2492 function _civicrm_api3_api_match_pseudoconstant(&$fieldValue, $entity, $fieldName, $fieldInfo) {
2493 $options = CRM_Utils_Array
::value('options', $fieldInfo);
2496 if (strtolower($entity) == 'profile' && !empty($fieldInfo['entity'])) {
2497 // We need to get the options from the entity the field relates to.
2498 $entity = $fieldInfo['entity'];
2500 $options = civicrm_api($entity, 'getoptions', array(
2502 'field' => $fieldInfo['name'],
2503 'context' => 'validate',
2505 $options = CRM_Utils_Array
::value('values', $options, array());
2508 // If passed a value-separated string, explode to an array, then re-implode after matching values.
2510 if (is_string($fieldValue) && strpos($fieldValue, CRM_Core_DAO
::VALUE_SEPARATOR
) !== FALSE) {
2511 $fieldValue = CRM_Utils_Array
::explodePadded($fieldValue);
2514 // If passed multiple options, validate each.
2515 if (is_array($fieldValue)) {
2516 foreach ($fieldValue as &$value) {
2517 if (!is_array($value)) {
2518 _civicrm_api3_api_match_pseudoconstant_value($value, $options, $fieldName);
2521 // TODO: unwrap the call to implodePadded from the conditional and do it always
2522 // need to verify that this is safe and doesn't break anything though.
2523 // Better yet would be to leave it as an array and ensure that every dao/bao can handle array input
2525 CRM_Utils_Array
::implodePadded($fieldValue);
2529 _civicrm_api3_api_match_pseudoconstant_value($fieldValue, $options, $fieldName);
2534 * Validate & swap a single option value for a field.
2536 * @param string $value field value
2537 * @param array $options array of options for this field
2538 * @param string $fieldName field name used in api call (not necessarily the canonical name)
2540 * @throws API_Exception
2542 function _civicrm_api3_api_match_pseudoconstant_value(&$value, $options, $fieldName) {
2543 // If option is a key, no need to translate
2544 // or if no options are avaiable for pseudoconstant 'table' property
2545 if (array_key_exists($value, $options) ||
!$options) {
2549 // Translate value into key
2550 $newValue = array_search($value, $options);
2551 if ($newValue !== FALSE) {
2555 // Case-insensitive matching
2556 $newValue = strtolower($value);
2557 $options = array_map("strtolower", $options);
2558 $newValue = array_search($newValue, $options);
2559 if ($newValue === FALSE) {
2560 throw new API_Exception("'$value' is not a valid option for field $fieldName", 2001, array('error_field' => $fieldName));
2566 * Returns the canonical name of a field.
2569 * api entity name (string should already be standardized - no camelCase).
2571 * any variation of a field's name (name, unique_name, api.alias).
2573 * @param string $action
2575 * @return bool|string
2576 * FieldName or FALSE if the field does not exist
2578 function _civicrm_api3_api_resolve_alias($entity, $fieldName, $action = 'create') {
2582 if (strpos($fieldName, 'custom_') === 0 && is_numeric($fieldName[7])) {
2585 if ($fieldName == _civicrm_api_get_entity_name_from_camel($entity) . '_id') {
2588 $result = civicrm_api($entity, 'getfields', array(
2590 'action' => $action,
2592 $meta = $result['values'];
2593 if (!isset($meta[$fieldName]['name']) && isset($meta[$fieldName . '_id'])) {
2594 $fieldName = $fieldName . '_id';
2596 if (isset($meta[$fieldName])) {
2597 return $meta[$fieldName]['name'];
2599 foreach ($meta as $info) {
2600 if ($fieldName == CRM_Utils_Array
::value('uniqueName', $info)) {
2601 return $info['name'];
2603 if (array_search($fieldName, CRM_Utils_Array
::value('api.aliases', $info, array())) !== FALSE) {
2604 return $info['name'];
2607 // Create didn't work, try with get
2608 if ($action == 'create') {
2609 return _civicrm_api3_api_resolve_alias($entity, $fieldName, 'get');
2615 * Check if the function is deprecated.
2617 * @param string $entity
2618 * @param array $result
2620 * @return string|array|null
2622 function _civicrm_api3_deprecation_check($entity, $result = array()) {
2624 $apiFile = "api/v3/$entity.php";
2625 if (CRM_Utils_File
::isIncludable($apiFile)) {
2626 require_once $apiFile;
2628 $lowercase_entity = _civicrm_api_get_entity_name_from_camel($entity);
2629 $fnName = "_civicrm_api3_{$lowercase_entity}_deprecation";
2630 if (function_exists($fnName)) {
2631 return $fnName($result);
2637 * Get the actual field value.
2639 * In some case $params[$fieldName] holds Array value in this format Array([operator] => [value])
2640 * So this function returns the actual field value.
2642 * @param array $params
2643 * @param string $fieldName
2644 * @param string $type
2648 function _civicrm_api3_field_value_check(&$params, $fieldName, $type = NULL) {
2649 $fieldValue = CRM_Utils_Array
::value($fieldName, $params);
2652 if (!empty($fieldValue) && is_array($fieldValue) &&
2653 (array_search(key($fieldValue), CRM_Core_DAO
::acceptedSQLOperators()) ||
2654 $type == 'String' && strstr(key($fieldValue), 'EMPTY'))
2656 $op = key($fieldValue);
2657 $fieldValue = CRM_Utils_Array
::value($op, $fieldValue);
2659 return array($fieldValue, $op);
2663 * A generic "get" API based on simple array data. This is comparable to
2664 * _civicrm_api3_basic_get but does not use DAO/BAO. This is useful for
2665 * small/mid-size data loaded from external JSON or XML documents.
2668 * @param array $params
2670 * @param array $records
2671 * List of all records.
2672 * @param string $idCol
2673 * The property which defines the ID of a record
2674 * @param array $fields
2675 * List of filterable fields.
2678 * @throws \API_Exception
2680 function _civicrm_api3_basic_array_get($entity, $params, $records, $idCol, $fields) {
2681 $options = _civicrm_api3_get_options_from_params($params, TRUE, $entity, 'get');
2682 // TODO // $sort = CRM_Utils_Array::value('sort', $options, NULL);
2683 $offset = CRM_Utils_Array
::value('offset', $options);
2684 $limit = CRM_Utils_Array
::value('limit', $options);
2689 foreach ($records as $record) {
2690 if ($idCol != 'id') {
2691 $record['id'] = $record[$idCol];
2694 foreach ($params as $k => $v) {
2698 if (in_array($k, $fields) && $record[$k] != $v) {
2704 if ($currentOffset >= $offset) {
2705 $matches[$record[$idCol]] = $record;
2707 if ($limit && count($matches) >= $limit) {
2714 $return = CRM_Utils_Array
::value('return', $options, array());
2715 if (!empty($return)) {
2717 $matches = CRM_Utils_Array
::filterColumns($matches, array_keys($return));
2720 return civicrm_api3_create_success($matches, $params);