INFRA-132 - Batch 14 (g)
[civicrm-core.git] / api / v3 / Profile.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
731a0992 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
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 the CiviCRM APIv3 activity profile functions
30 *
31 * @package CiviCRM_APIv3
32 * @subpackage API_ActivityProfile
731a0992 33 * @copyright CiviCRM LLC (c) 2004-2014
a130e045 34 * @version $Id: Profile.php 30486 2011-05-20 16:12:09Z rajan $
6a488035
TO
35 *
36 */
37
6a488035
TO
38/**
39 * Retrieve Profile field values.
40 *
f01ce56b 41 * NOTE this api is not standard & since it is tested we need to honour that
42 * but the correct behaviour is for it to return an id indexed array as this supports
6a386447 43 * multiple instances - if a single profile is passed in we will not return a normal api result array
44 * in order to avoid breaking code. (This could still be confusing :-( but we have to keep the tested behaviour working
40a60af6 45 *
46 * Note that if contact_id is empty an array of defaults is returned
a130e045
DG
47 *
48 * @param array $params
49 * Associative array of property name/value.
50 * pairs to get profile field values
51 *
52 * @throws API_Exception
53 * @return array
6a488035
TO
54 */
55function civicrm_api3_profile_get($params) {
35671d00 56 $nonStandardLegacyBehaviour = is_numeric($params['profile_id']) ? TRUE : FALSE;
22e263ad 57 if (!empty($params['check_permissions']) && !empty($params['contact_id']) && !1 === civicrm_api3('contact', 'getcount', array('contact_id' => $params['contact_id'], 'check_permissions' => 1))) {
c85e32fc 58 throw new API_Exception('permission denied');
59 }
f01ce56b 60 $profiles = (array) $params['profile_id'];
61 $values = array();
0d5cc439 62 $ufGroupBAO = new CRM_Core_BAO_UFGroup();
f01ce56b 63 foreach ($profiles as $profileID) {
6a386447 64 $profileID = _civicrm_api3_profile_getProfileID($profileID);
f01ce56b 65 $values[$profileID] = array();
66 if (strtolower($profileID) == 'billing') {
67 $values[$profileID] = _civicrm_api3_profile_getbillingpseudoprofile($params);
68 continue;
69 }
22e263ad 70 if (!CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFGroup', $profileID, 'is_active')) {
f01ce56b 71 throw new API_Exception('Invalid value for profile_id : ' . $profileID);
72 }
6a488035 73
f01ce56b 74 $isContactActivityProfile = CRM_Core_BAO_UFField::checkContactActivityProfileType($profileID);
6a488035 75
f01ce56b 76 $profileFields = CRM_Core_BAO_UFGroup::getFields($profileID,
77 FALSE,
78 NULL,
79 NULL,
80 NULL,
81 FALSE,
82 NULL,
c85e32fc 83 empty($params['check_permissions']) ? FALSE : TRUE,
f01ce56b 84 NULL,
85 CRM_Core_Permission::EDIT
86 );
6a488035 87
35671d00
TO
88 if ($isContactActivityProfile) {
89 civicrm_api3_verify_mandatory($params, NULL, array('activity_id'));
6a488035 90
35671d00 91 $errors = CRM_Profile_Form::validateContactActivityProfile($params['activity_id'],
6a488035
TO
92 $params['contact_id'],
93 $params['profile_id']
35671d00
TO
94 );
95 if (!empty($errors)) {
96 throw new API_Exception(array_pop($errors));
6a488035 97 }
35671d00
TO
98
99 $contactFields = $activityFields = array();
100 foreach ($profileFields as $fieldName => $field) {
101 if (CRM_Utils_Array::value('field_type', $field) == 'Activity') {
102 $activityFields[$fieldName] = $field;
103 }
104 else {
105 $contactFields[$fieldName] = $field;
c3d3e837
E
106 // we should return 'Primary' with & without capitalisation. it is more consistent with api to not
107 // capitalise, but for form support we need it for now. Hopefully we can move away from it
108 $contactFields[strtolower($fieldName)] = $field;
109 }
6a488035 110 }
6a488035 111
35671d00 112 $ufGroupBAO->setProfileDefaults($params['contact_id'], $contactFields, $values[$profileID], TRUE);
6a488035 113
35671d00
TO
114 if ($params['activity_id']) {
115 $ufGroupBAO->setComponentDefaults($activityFields, $params['activity_id'], 'Activity', $values[$profileID], TRUE);
116 }
6a488035 117 }
35671d00
TO
118 elseif(!empty($params['contact_id'])) {
119 $ufGroupBAO->setProfileDefaults($params['contact_id'], $profileFields, $values[$profileID], TRUE);
9b873358 120 foreach ($values[$profileID] as $fieldName => $field) {
c3d3e837
E
121 // we should return 'Primary' with & without capitalisation. it is more consistent with api to not
122 // capitalise, but for form support we need it for now. Hopefully we can move away from it
123 $values[$profileID][strtolower($fieldName)] = $field;
124 }
125 }
92e4c2a5 126 else {
c3d3e837
E
127 $values[$profileID] = array_fill_keys(array_keys($profileFields), '');
128 }
f01ce56b 129 }
22e263ad 130 if ($nonStandardLegacyBehaviour) {
f01ce56b 131 $result = civicrm_api3_create_success();
132 $result['values'] = $values[$profileID];
133 return $result;
134 }
135 else {
136 return civicrm_api3_create_success($values, $params, 'Profile', 'Get');
6a488035 137 }
6a488035
TO
138}
139
aa1b1481 140/**
c490a46a 141 * @param array $params
aa1b1481 142 */
f01ce56b 143function _civicrm_api3_profile_get_spec(&$params) {
144 $params['profile_id']['api.required'] = TRUE;
4c41ecb2 145 $params['profile_id']['title'] = 'Profile ID';
40a60af6 146 $params['contact_id']['description'] = 'If no contact is specified an array of defaults will be returned';
4c41ecb2 147 $params['contact_id']['title'] = 'Contact ID';
f01ce56b 148}
6a386447 149
6a488035 150/**
6a386447 151 * Submit a set of fields against a profile.
152 * Note choice of submit versus create is discussed CRM-13234 & related to the fact
153 * 'profile' is being treated as a data-entry entity
0d5cc439 154 *
6a386447 155 * @param array $params
0d5cc439
E
156 *
157 * @throws API_Exception
a6c01b45 158 * @return array
72b3a70c 159 * API result array
6a488035 160 */
6a386447 161function civicrm_api3_profile_submit($params) {
c1b19e8a 162 $profileID = _civicrm_api3_profile_getProfileID($params['profile_id']);
4bcfd71f 163 if (!CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFGroup', $profileID, 'is_active')) {
164 //@todo declare pseudoconstant & let api do this
f01ce56b 165 throw new API_Exception('Invalid value for profile_id');
6a488035
TO
166 }
167
4bcfd71f 168 $isContactActivityProfile = CRM_Core_BAO_UFField::checkContactActivityProfileType($profileID);
6a488035 169
4bcfd71f 170 if (!empty($params['id']) && CRM_Core_BAO_UFField::checkProfileType($profileID) && !$isContactActivityProfile) {
171 throw new API_Exception('Update profiles including more than one entity not currently supported');
6a488035
TO
172 }
173
174 $contactParams = $activityParams = $missingParams = array();
175
c3d3e837
E
176 $profileFields = civicrm_api3('profile', 'getfields', array('action' => 'submit', 'profile_id' => $profileID));
177 $profileFields = $profileFields['values'];
6a488035
TO
178 if ($isContactActivityProfile) {
179 civicrm_api3_verify_mandatory($params, NULL, array('activity_id'));
180
6a488035
TO
181 $errors = CRM_Profile_Form::validateContactActivityProfile($params['activity_id'],
182 $params['contact_id'],
4bcfd71f 183 $profileID
6a488035
TO
184 );
185 if (!empty($errors)) {
6a386447 186 throw new API_Exception(array_pop($errors));
6a488035
TO
187 }
188 }
189
190 foreach ($profileFields as $fieldName => $field) {
6a488035
TO
191 if (!isset($params[$fieldName])) {
192 continue;
193 }
194
195 $value = $params[$fieldName];
196 if ($params[$fieldName] && isset($params[$fieldName . '_id'])) {
197 $value = $params[$fieldName . '_id'];
198 }
c3d3e837
E
199 $contactEntities = array('contact', 'individual', 'organization', 'household');
200 $locationEntities = array('email', 'address', 'phone', 'website', 'im');
201
202 $entity = strtolower(CRM_Utils_Array::value('entity', $field));
22e263ad 203 if ($entity && !in_array($entity, array_merge($contactEntities, $locationEntities))) {
c3d3e837 204 $contactParams['api.' . $entity . '.create'][$fieldName] = $value;
599c61ac 205 //@todo we are not currently declaring this option
22e263ad 206 if (isset($params['batch_id']) && strtolower($entity) == 'contribution') {
599c61ac
E
207 $contactParams['api.' . $entity . '.create']['batch_id'] = $params['batch_id'];
208 }
22e263ad 209 if (isset($params[$entity . '_id'])) {
c3d3e837
E
210 //todo possibly declare $entity_id in getfields ?
211 $contactParams['api.' . $entity . '.create']['id'] = $params[$entity . '_id'];
212 }
6a488035
TO
213 }
214 else {
c3d3e837 215 $contactParams[_civicrm_api3_profile_translate_fieldnames_for_bao($fieldName)] = $value;
6a488035
TO
216 }
217 }
22e263ad 218 if (isset($contactParams['api.contribution.create']) && isset($contactParams['api.membership.create'])) {
599c61ac
E
219 $contactParams['api.membership_payment.create'] = array(
220 'contribution_id' => '$value.api.contribution.create.id',
21dfd5f5 221 'membership_id' => '$value.api.membership.create.id',
599c61ac
E
222 );
223 }
224
22e263ad 225 if (isset($contactParams['api.contribution.create']) && isset($contactParams['api.participant.create'])) {
599c61ac
E
226 $contactParams['api.participant_payment.create'] = array(
227 'contribution_id' => '$value.api.contribution.create.id',
21dfd5f5 228 'participant_id' => '$value.api.participant.create.id',
599c61ac
E
229 );
230 }
6a488035 231
6a488035 232 $contactParams['contact_id'] = CRM_Utils_Array::value('contact_id', $params);
4bcfd71f 233 $contactParams['profile_id'] = $profileID;
6a488035
TO
234 $contactParams['skip_custom'] = 1;
235
236 $contactProfileParams = civicrm_api3_profile_apply($contactParams);
6a488035
TO
237
238 // Contact profile fields
239 $profileParams = $contactProfileParams['values'];
240
241 // If profile having activity fields
242 if ($isContactActivityProfile && !empty($activityParams)) {
243 $activityParams['id'] = $params['activity_id'];
244 $profileParams['api.activity.create'] = $activityParams;
245 }
246
247 $groups = $tags = array();
248 if (isset($profileParams['group'])) {
249 $groups = $profileParams['group'];
250 unset($profileParams['group']);
251 }
252
253 if (isset($profileParams['tag'])) {
254 $tags = $profileParams['tag'];
255 unset($profileParams['tag']);
256 }
f1a0080c 257
f01ce56b 258 return civicrm_api3('contact', 'create', $profileParams);
6a488035
TO
259
260 $ufGroupDetails = array();
4bcfd71f 261 $ufGroupParams = array('id' => $profileID);
6a488035
TO
262 CRM_Core_BAO_UFGroup::retrieve($ufGroupParams, $ufGroupDetails);
263
264 if (isset($profileFields['group'])) {
265 CRM_Contact_BAO_GroupContact::create($groups,
266 $params['contact_id'],
267 FALSE,
268 'Admin'
269 );
270 }
271
272 if (isset($profileFields['tag'])) {
6a488035
TO
273 CRM_Core_BAO_EntityTag::create($tags,
274 'civicrm_contact',
275 $params['contact_id']
276 );
277 }
278
a7488080 279 if (!empty($ufGroupDetails['add_to_group_id'])) {
6a488035
TO
280 $contactIds = array($params['contact_id']);
281 CRM_Contact_BAO_GroupContact::addContactsToGroup($contactIds,
282 $ufGroupDetails['add_to_group_id']
283 );
284 }
285
286 return $result;
6a386447 287
288}
c3d3e837
E
289
290/**
291 * The api standards expect field names to be lower case but the BAO uses mixed case
292 * so we accept 'email-primary' but pass 'email-Primary' to the BAO
293 * we could make the BAO handle email-primary but this would alter the fieldname seen by hooks
294 * & we would need to consider that change
cf470720
TO
295 * @param string $fieldName
296 * API field name.
c3d3e837 297 *
a6c01b45 298 * @return string
72b3a70c 299 * BAO Field Name
c3d3e837 300 */
9b873358 301function _civicrm_api3_profile_translate_fieldnames_for_bao($fieldName) {
c3d3e837
E
302 $fieldName = str_replace('url', 'URL', $fieldName);
303 return str_replace('primary', 'Primary', $fieldName);
304}
6a386447 305/**
306 * metadata for submit action
307 * @param array $params
308 * @param array $apirequest
309 */
310function _civicrm_api3_profile_submit_spec(&$params, $apirequest) {
22e263ad 311 if (isset($apirequest['params']['profile_id'])) {
6a386447 312 // we will return what is required for this profile
313 // note the problem with simply over-riding getfields & then calling generic if needbe is we don't have the
314 // api request array to pass to it.
315 //@todo - it may make more sense just to pass the apiRequest to getfields
316 //@todo get_options should take an array - @ the moment it is only takes 'all' - which is supported
317 // by other getfields fn
318 // we don't resolve state, country & county for performance reasons
35671d00 319 $resolveOptions = CRM_Utils_Array::value('get_options', $apirequest['params']) == 'all' ? TRUE : FALSE;
6a386447 320 $profileID = _civicrm_api3_profile_getProfileID($apirequest['params']['profile_id']);
174dbdd5
E
321 $params = _civicrm_api3_buildprofile_submitfields($profileID, $resolveOptions, CRM_Utils_Array::value('cache_clear', $params));
322 }
323 elseif (isset($apirequest['params']['cache_clear'])) {
35671d00 324 _civicrm_api3_buildprofile_submitfields(FALSE, FALSE, TRUE);
6a386447 325 }
326 $params['profile_id']['api.required'] = TRUE;
4c41ecb2 327 $params['profile_id']['title'] = 'Profile ID';
6a386447 328}
329
330/**
331 * @deprecated - calling this function directly is deprecated as 'set' is not a clear action
332 * use submit
333 * Update Profile field values.
334 *
cf470720
TO
335 * @param array $params
336 * Associative array of property name/value.
6a386447 337 * pairs to update profile field values
338 *
a6c01b45 339 * @return array
72b3a70c 340 * Updated Contact/ Activity object|CRM_Error
6a386447 341 *
342 *
343 */
344function civicrm_api3_profile_set($params) {
345 return civicrm_api3('profile', 'submit', $params);
6a488035
TO
346}
347
348/**
6a386447 349 * @deprecated - appears to be an internal function - should not be accessible via api
6a488035
TO
350 * Provide formatted values for profile fields.
351 *
cf470720
TO
352 * @param array $params
353 * Associative array of property name/value.
6a488035
TO
354 * pairs to profile field values
355 *
c3d3e837 356 * @throws API_Exception
488e7aba 357 * @return array
6a488035
TO
358 *
359 * @todo add example
360 * @todo add test cases
6a488035
TO
361 */
362function civicrm_api3_profile_apply($params) {
363
6a488035
TO
364 $profileFields = CRM_Core_BAO_UFGroup::getFields($params['profile_id'],
365 FALSE,
366 NULL,
367 NULL,
368 NULL,
369 FALSE,
370 NULL,
371 TRUE,
372 NULL,
373 CRM_Core_Permission::EDIT
374 );
375
376 list($data, $contactDetails) = CRM_Contact_BAO_Contact::formatProfileContactParams($params,
377 $profileFields,
378 CRM_Utils_Array::value('contact_id', $params),
379 $params['profile_id'],
380 CRM_Utils_Array::value('contact_type', $params),
381 CRM_Utils_Array::value('skip_custom', $params, FALSE)
382 );
383
384 if (empty($data)) {
f2225b2c 385 throw new API_Exception('Enable to format profile parameters.');
6a488035
TO
386 }
387
388 return civicrm_api3_create_success($data);
389}
390
6a488035 391
f01ce56b 392/**
393 * This is a function to help us 'pretend' billing is a profile & treat it like it is one.
394 * It gets standard credit card address fields etc
395 * Note this is 'better' that the inbuilt version as it will pull in fallback values
396 * billing location -> is_billing -> primary
40a60af6 397 *
398 * Note that that since the existing code for deriving a blank profile is not easily accessible our
399 * interim solution is just to return an empty array
f1a0080c 400 *
c490a46a 401 * @param array $params
f1a0080c
E
402 *
403 * @return array
f01ce56b 404 */
405function _civicrm_api3_profile_getbillingpseudoprofile(&$params) {
5a9e1452 406
6ebea6ac 407 $locations = civicrm_api3('address', 'getoptions', array('field' => 'location_type_id', 'context' => 'validate'));
40a60af6 408 $locationTypeID = array_search('Billing', $locations['values']);
409
22e263ad 410 if (empty($params['contact_id'])) {
5a9e1452 411 $config = CRM_Core_Config::singleton();
35671d00 412 $blanks = array(
40a60af6 413 'billing_first_name' => '',
414 'billing_middle_name' => '',
415 'billing_last_name' => '',
5a9e1452 416 'email-' . $locationTypeID => '',
417 'billing_email-' . $locationTypeID => '',
418 'billing_city-' . $locationTypeID => '',
419 'billing_postal_code-' . $locationTypeID => '',
420 'billing_street_address-' . $locationTypeID => '',
421 'billing_country_id-' . $locationTypeID => $config->defaultContactCountry,
422 'billing_state_province_id-' . $locationTypeID => $config->defaultContactStateProvince,
40a60af6 423 );
40a60af6 424 return $blanks;
425 }
5a9e1452 426
427 $addressFields = array('street_address', 'city', 'state_province_id', 'country_id', 'postal_code');
f01ce56b 428 $result = civicrm_api3('contact', 'getsingle', array(
429 'id' => $params['contact_id'],
35671d00 430 'api.address.get.1' => array('location_type_id' => 'Billing', 'return' => $addressFields),
f01ce56b 431 // getting the is_billing required or not is an extra db call but probably cheap enough as this isn't an import api
35671d00
TO
432 'api.address.get.2' => array('is_billing' => TRUE, 'return' => $addressFields),
433 'api.email.get.1' => array('location_type_id' => 'Billing'),
434 'api.email.get.2' => array('is_billing' => TRUE),
45c30250 435 'return' => 'api.email.get, api.address.get, api.address.getoptions, country, state_province, email, first_name, last_name, middle_name, ' . implode($addressFields, ','),
f01ce56b 436 )
437 );
f01ce56b 438
439 $values = array(
440 'billing_first_name' => $result['first_name'],
441 'billing_middle_name' => $result['middle_name'],
442 'billing_last_name' => $result['last_name'],
443 );
444
22e263ad 445 if (!empty($result['api.address.get.1']['count'])) {
f01ce56b 446 foreach ($addressFields as $fieldname) {
35671d00 447 $values['billing_' . $fieldname . '-' . $locationTypeID] = isset($result['api.address.get.1']['values'][0][$fieldname]) ? $result['api.address.get.1']['values'][0][$fieldname] : '';
f01ce56b 448 }
449 }
450 elseif(!empty($result['api.address.get.2']['count'])) {
451 foreach ($addressFields as $fieldname) {
35671d00 452 $values['billing_' . $fieldname . '-' . $locationTypeID] = isset($result['api.address.get.2']['values'][0][$fieldname]) ? $result['api.address.get.2']['values'][0][$fieldname] : '';
f01ce56b 453 }
454 }
92e4c2a5 455 else {
f01ce56b 456 foreach ($addressFields as $fieldname) {
457 $values['billing_' . $fieldname . '-' . $locationTypeID] = isset($result[$fieldname]) ? $result[$fieldname] : '';
458 }
459 }
460
22e263ad 461 if (!empty($result['api.email.get.1']['count'])) {
86bfa4f6 462 $values['billing-email' . '-' . $locationTypeID] = $result['api.email.get.1']['values'][0]['email'];
f01ce56b 463 }
464 elseif(!empty($result['api.email.get.2']['count'])) {
86bfa4f6 465 $values['billing-email' . '-' . $locationTypeID] = $result['api.email.get.2']['values'][0]['email'];
f01ce56b 466 }
92e4c2a5 467 else {
86bfa4f6 468 $values['billing-email' . '-' . $locationTypeID] = $result['email'];
f01ce56b 469 }
40a60af6 470 // return both variants of email to reflect inconsistencies in form layer
86bfa4f6 471 $values['email' . '-' . $locationTypeID] = $values['billing-email' . '-' . $locationTypeID];
f01ce56b 472 return $values;
473}
6a386447 474
475/**
476 * Here we will build up getfields type data for all the fields in the profile. Because the integration with the
477 * form layer in core is so hard-coded we are not going to attempt to re-use it
478 * However, as this function is unit-tested & hence 'locked in' we can aspire to extract sharable
479 * code out of the form-layer over time.
480 *
481 * The function deciphers which fields belongs to which entites & retrieves metadata about the entities
482 * Unfortunately we have inconsistencies such as 'contribution' uses contribution_status_id
483 * & participant has 'participant_status' so we have to standardise from the outside in here -
484 * find the oddities, 'mask them' at this layer, add tests & work to standardise over time so we can remove this handling
485 *
cf470720
TO
486 * @param int $profileID
487 * @param int $optionsBehaviour
488 * 0 = don't resolve, 1 = resolve non-aggressively, 2 = resolve aggressively - ie include country & state.
7c3f2c03
E
489 * @param $is_flush
490 *
2241036a 491 * @return array
6a386447 492 */
174dbdd5 493function _civicrm_api3_buildprofile_submitfields($profileID, $optionsBehaviour = 1, $is_flush) {
6a386447 494 static $profileFields = array();
22e263ad 495 if ($is_flush) {
174dbdd5 496 $profileFields = array();
22e263ad 497 if (empty($profileID)) {
174dbdd5
E
498 return;
499 }
500 }
22e263ad 501 if (isset($profileFields[$profileID])) {
6a386447 502 return $profileFields[$profileID];
503 }
504 $fields = civicrm_api3('uf_field', 'get', array('uf_group_id' => $profileID));
505 $entities = array();
c1fec147 506 foreach ($fields['values'] as $field) {
22e263ad 507 if (!$field['is_active']) {
6a386447 508 continue;
509 }
510 list($entity, $fieldName) = _civicrm_api3_map_profile_fields_to_entity($field);
c3d3e837 511 $aliasArray = array();
22e263ad 512 if (strtolower($fieldName) != $fieldName) {
c3d3e837
E
513 $aliasArray['api.aliases'] = array($fieldName);
514 $fieldName = strtolower($fieldName);
515 }
516 $profileFields[$profileID][$fieldName] = array_merge(array(
6a386447 517 'api.required' => $field['is_required'],
518 'title' => $field['label'],
519 'help_pre' => CRM_Utils_Array::value('help_pre', $field),
520 'help_post' => CRM_Utils_Array::value('help_post', $field),
c3d3e837 521 'entity' => $entity,
f5c68f3c 522 'weight' => CRM_Utils_Array::value('weight', $field),
c3d3e837 523 ), $aliasArray);
6a386447 524
f5c68f3c 525 $ufFieldTaleFieldName = $field['field_name'];
22e263ad 526 if (isset($entity[$ufFieldTaleFieldName]['name'])) {
f5c68f3c
E
527 // in the case where we are dealing with an alias we map back to a name
528 // this will be tested by 'membership_type_id' field
529 $ufFieldTaleFieldName = $entity[$ufFieldTaleFieldName]['name'];
530 }
6a386447 531 //see function notes
b0b44427 532 // as we build up a list of these we should be able to determine a generic approach
533 //
6a386447 534 $hardCodedEntityFields = array(
535 'state_province' => 'state_province_id',
536 'country' => 'country_id',
537 'participant_status' => 'status_id',
538 'gender' => 'gender_id',
b0b44427 539 'financial_type' => 'financial_type_id',
540 'soft_credit' => 'soft_credit_to',
541 'group' => 'group_id',
542 'tag' => 'tag_id',
3ebd4b5c 543 'soft_credit_type' => 'soft_credit_type_id',
6a386447 544 );
b0b44427 545
22e263ad 546 if (array_key_exists($ufFieldTaleFieldName, $hardCodedEntityFields)) {
f5c68f3c 547 $ufFieldTaleFieldName = $hardCodedEntityFields[$ufFieldTaleFieldName];
6a386447 548 }
b0b44427 549
f5c68f3c 550 $entities[$entity][$fieldName] = $ufFieldTaleFieldName;
6a386447 551 }
552
553 foreach ($entities as $entity => $entityFields) {
554 $result = civicrm_api3($entity, 'getfields', array('action' => 'create'));
b0b44427 555 $entityGetFieldsResult = _civicrm_api3_profile_appendaliases($result['values'], $entity);
6a386447 556 foreach ($entityFields as $entityfield => $realName) {
7c3f2c03 557 $fieldName = strtolower($entityfield);
22e263ad
TO
558 if (!strstr($fieldName, '-')) {
559 if (strtolower($realName) != $fieldName) {
35671d00
TO
560 // we want to keep the '-' pattern for locations but otherwise
561 // we are going to make the api-standard field the main / preferred name but support the db name
562 // in future naming the fields in the DB to reflect the way the rest of the api / BAO / metadata works would
563 // reduce code
564 $fieldName = strtolower($realName);
29fbb90a 565 }
22e263ad 566 if (isset($entityGetFieldsResult[$realName]['uniqueName'])) {
f5c68f3c
E
567 // we won't alias the field name on here are we are using uniqueNames for the possibility of needing to differentiate
568 // which entity 'status_id' belongs to
29fbb90a
E
569 $fieldName = $entityGetFieldsResult[$realName]['uniqueName'];
570 }
92e4c2a5 571 else {
22e263ad 572 if (isset($entityGetFieldsResult[$realName]['name'])) {
f5c68f3c
E
573 // this will sort out membership_type_id vs membership_type
574 $fieldName = $entityGetFieldsResult[$realName]['name'];
575 }
576 }
7c3f2c03 577 }
f5c68f3c 578 $profileFields[$profileID][$fieldName] = array_merge($entityGetFieldsResult[$realName], $profileFields[$profileID][$entityfield]);
22e263ad 579 if (!isset($profileFields[$profileID][$fieldName]['api.aliases'])) {
35671d00 580 $profileFields[$profileID][$fieldName]['api.aliases'] = array();
29fbb90a 581 }
22e263ad
TO
582 if ($optionsBehaviour && !empty($entityGetFieldsResult[$realName]['pseudoconstant'])) {
583 if ($optionsBehaviour > 1 || !in_array($realName, array('state_province_id', 'county_id', 'country_id'))) {
6a386447 584 $options = civicrm_api3($entity, 'getoptions', array('field' => $realName));
7c3f2c03 585 $profileFields[$profileID][$fieldName]['options'] = $options['values'];
6a386447 586 }
587 }
c3d3e837 588
22e263ad
TO
589 if ($entityfield != $fieldName) {
590 if (isset($profileFields[$profileID][$entityfield])) {
7c3f2c03
E
591 unset($profileFields[$profileID][$entityfield]);
592 }
22e263ad 593 if (!in_array($entityfield, $profileFields[$profileID][$fieldName]['api.aliases'])) {
dd9d7b83
EM
594 // we will make the mixed case version (e.g. of 'Primary') an alias
595 $profileFields[$profileID][$fieldName]['api.aliases'][] = $entityfield;
596 }
c3d3e837 597 }
6a386447 598 /**
599 * putting this on hold -this would cause the api to set the default - but could have unexpected behaviour
22e263ad 600 if (isset($result['values'][$realName]['default_value'])) {
c3d3e837
E
601 //this would be the case for a custom field with a configured default
602 $profileFields[$profileID][$entityfield]['api.default'] = $result['values'][$realName]['default_value'];
6a386447 603 }
c3d3e837 604 */
6a386447 605 }
606 }
f5c68f3c 607 uasort($profileFields[$profileID], "_civicrm_api3_order_by_weight");
6a386447 608 return $profileFields[$profileID];
609}
610
aa1b1481
EM
611/**
612 * @param $a
613 * @param $b
614 *
615 * @return bool
616 */
f5c68f3c
E
617function _civicrm_api3_order_by_weight($a, $b) {
618 return CRM_Utils_Array::value('weight', $b) < CRM_Utils_Array::value('weight', $a) ? TRUE : FALSE;
619}
f1a0080c 620
6a386447 621/**
622 * Here we map the profile fields as stored in the uf_field table to their 'real entity'
623 * we also return the profile fieldname
624 *
f1a0080c
E
625 * @param $field
626 *
627 * @return array
6a386447 628 */
629function _civicrm_api3_map_profile_fields_to_entity(&$field) {
7c3f2c03 630 $entity = $field['field_type'];
6a386447 631 $contactTypes = civicrm_api3('contact', 'getoptions', array('field' => 'contact_type'));
22e263ad 632 if (in_array($entity, $contactTypes['values'])) {
174dbdd5 633 $entity = 'contact';
6a386447 634 }
7c3f2c03
E
635 $entity = _civicrm_api_get_entity_name_from_camel($entity);
636 $locationFields = array('email' => 'email');
6a386447 637 $fieldName = $field['field_name'];
22e263ad
TO
638 if (!empty($field['location_type_id'])) {
639 if ($fieldName == 'email') {
174dbdd5 640 $entity = 'email';
6a386447 641 }
92e4c2a5 642 else {
174dbdd5 643 $entity = 'address';
6a386447 644 }
645 $fieldName .= '-' . $field['location_type_id'];
646 }
c3d3e837
E
647 elseif(array_key_exists($fieldName, $locationFields)) {
648 $fieldName .= '-Primary';
174dbdd5 649 $entity = 'email';
c3d3e837 650 }
22e263ad 651 if (!empty($field['phone_type_id'])) {
6a386447 652 $fieldName .= '-' . $field['location_type_id'];
174dbdd5 653 $entity = 'phone';
6a386447 654 }
c3d3e837 655
b0b44427 656 // @todo - sort this out!
6a386447 657 //here we do a hard-code list of known fields that don't map to where they are mapped to
b0b44427 658 // not a great solution but probably if we looked in the BAO we'd find a scary switch statement
659 // in a perfect world the uf_field table would hold the correct entity for each item
660 // & only the relationships between entities would need to be coded
6a386447 661 $hardCodedEntityMappings = array(
174dbdd5
E
662 'street_address' => 'address',
663 'street_number' => 'address',
664 'supplemental_address_1' => 'address',
665 'supplemental_address_2' => 'address',
666 'supplemental_address_3' => 'address',
667 'postal_code' => 'address',
668 'city' => 'address',
669 'email' => 'email',
670 'state_province' => 'address',
671 'country' => 'address',
672 'county' => 'address',
b0b44427 673 //note that in discussions about how to restructure the api we discussed making these membership
674 // fields into 'membership_payment' fields - which would entail declaring them in getfields
675 // & renaming them in existing profiles
174dbdd5
E
676 'financial_type' => 'contribution',
677 'total_amount' => 'contribution',
678 'receive_date' => 'contribution',
679 'payment_instrument' => 'contribution',
680 'check_number' => 'contribution',
681 'contribution_status_id' => 'contribution',
682 'soft_credit' => 'contribution',
3ebd4b5c 683 'soft_credit_type' => 'contribution_soft',
174dbdd5
E
684 'group' => 'group_contact',
685 'tag' => 'entity_tag',
6a386447 686 );
22e263ad 687 if (array_key_exists($fieldName, $hardCodedEntityMappings)) {
6a386447 688 $entity = $hardCodedEntityMappings[$fieldName];
689 }
690 return array($entity, $fieldName);
691}
692
693/**
694 * @todo this should be handled by the api wrapper using getfields info - need to check
23fb5e08
EM
695 * how we add a a pseudoconstant to this pseudo api to make that work
696 *
100fef9d 697 * @param int $profileID
23fb5e08 698 *
df8d3074 699 * @return int|string
23fb5e08 700 * @throws CiviCRM_API3_Exception
6a386447 701 */
702function _civicrm_api3_profile_getProfileID($profileID) {
22e263ad 703 if (!empty($profileID) && strtolower($profileID) != 'billing' && !is_numeric($profileID)) {
6a386447 704 $profileID = civicrm_api3('uf_group', 'getvalue', array('return' => 'id', 'name' => $profileID));
705 }
706 return $profileID;
b0b44427 707}
708
709/**
710 * helper function to add all aliases as keys to getfields response so we can look for keys within it
711 * since the relationship between profile fields & api / metadata based fields is a bit inconsistent
0d5cc439 712 *
b0b44427 713 * @param array $values
714 *
715 * e.g getfields response incl 'membership_type_id' - with api.aliases = 'membership_type'
716 * returned array will include both as keys (with the same values)
0d5cc439
E
717 * @param $entity
718 *
719 * @return array
b0b44427 720 */
721function _civicrm_api3_profile_appendaliases($values, $entity) {
722 foreach ($values as $field => $spec) {
22e263ad 723 if (!empty($spec['api.aliases'])) {
b0b44427 724 foreach ($spec['api.aliases'] as $alias) {
725 $values[$alias] = $spec;
726 }
727 }
22e263ad 728 if (!empty($spec['uniqueName'])) {
b0b44427 729 $values[$spec['uniqueName']] = $spec;
730 }
731 }
732 //special case on membership & contribution - can't see how to handle in a generic way
22e263ad 733 if (in_array($entity, array('membership', 'contribution'))) {
4bcfd71f 734 $values['send_receipt'] = array('title' => 'Send Receipt', 'type' => (int) 16);
b0b44427 735 }
736 return $values;
0d5cc439 737}
a14e9d08
CW
738
739/**
740 * @deprecated api notice
a6c01b45 741 * @return array
16b10e64 742 * Array of deprecated actions
a14e9d08
CW
743 */
744function _civicrm_api3_profile_deprecation() {
745 return array(
746 'set' => 'Profile api "set" action is deprecated in favor of "submit".',
747 'apply' => 'Profile api "apply" action is deprecated in favor of "submit".',
748 );
749}