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