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