Merge pull request #22957 from colemanw/afformClearCache
[civicrm-core.git] / CRM / Event / Import / Parser / Participant.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
bc77d7c0
TO
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
6a488035 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035
TO
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
16 */
17
18require_once 'CRM/Utils/DeprecatedUtils.php';
19
20/**
21 * class to parse membership csv files
22 */
23class CRM_Event_Import_Parser_Participant extends CRM_Event_Import_Parser {
24 protected $_mapperKeys;
25
26 private $_contactIdIndex;
6a488035
TO
27 private $_eventIndex;
28 private $_participantStatusIndex;
29 private $_participantRoleIndex;
30 private $_eventTitleIndex;
31
32 /**
ceb10dc7 33 * Array of successfully imported participants id's
6a488035 34 *
90b461f1 35 * @var array
6a488035
TO
36 */
37 protected $_newParticipants;
38
39 /**
fe482240 40 * Class constructor.
54957108 41 *
42 * @param array $mapperKeys
6a488035 43 */
5e21e0f3 44 public function __construct(&$mapperKeys) {
6a488035
TO
45 parent::__construct();
46 $this->_mapperKeys = &$mapperKeys;
47 }
48
49 /**
54957108 50 * The initializer code, called before the processing.
6a488035 51 */
00be9182 52 public function init() {
6a488035
TO
53 $fields = CRM_Event_BAO_Participant::importableFields($this->_contactType, FALSE);
54 $fields['event_id']['title'] = 'Event ID';
55 $eventfields = &CRM_Event_BAO_Event::fields();
56 $fields['event_title'] = $eventfields['event_title'];
57
58 foreach ($fields as $name => $field) {
59 $field['type'] = CRM_Utils_Array::value('type', $field, CRM_Utils_Type::T_INT);
60 $field['dataPattern'] = CRM_Utils_Array::value('dataPattern', $field, '//');
61 $field['headerPattern'] = CRM_Utils_Array::value('headerPattern', $field, '//');
62 $this->addField($name, $field['title'], $field['type'], $field['headerPattern'], $field['dataPattern']);
63 }
64
be2fb01f 65 $this->_newParticipants = [];
6a488035
TO
66 $this->setActiveFields($this->_mapperKeys);
67
68 // FIXME: we should do this in one place together with Form/MapField.php
69 $this->_contactIdIndex = -1;
70 $this->_eventIndex = -1;
71 $this->_participantStatusIndex = -1;
72 $this->_participantRoleIndex = -1;
73 $this->_eventTitleIndex = -1;
74
75 $index = 0;
76 foreach ($this->_mapperKeys as $key) {
77
78 switch ($key) {
79 case 'participant_contact_id':
80 $this->_contactIdIndex = $index;
81 break;
82
83 case 'event_id':
84 $this->_eventIndex = $index;
85 break;
86
87 case 'participant_status':
88 case 'participant_status_id':
89 $this->_participantStatusIndex = $index;
90 break;
91
92 case 'participant_role_id':
93 $this->_participantRoleIndex = $index;
94 break;
95
96 case 'event_title':
97 $this->_eventTitleIndex = $index;
98 break;
99 }
100 $index++;
101 }
102 }
103
104 /**
fe482240 105 * Handle the values in mapField mode.
6a488035 106 *
d4dd1e85
TO
107 * @param array $values
108 * The array of values belonging to this line.
6a488035 109 *
79d7553f 110 * @return bool
6a488035 111 */
00be9182 112 public function mapField(&$values) {
a05662ef 113 return CRM_Import_Parser::VALID;
6a488035
TO
114 }
115
116 /**
fe482240 117 * Handle the values in preview mode.
6a488035 118 *
d4dd1e85
TO
119 * @param array $values
120 * The array of values belonging to this line.
6a488035 121 *
79d7553f 122 * @return bool
a6c01b45 123 * the result of this processing
6a488035 124 */
00be9182 125 public function preview(&$values) {
6a488035
TO
126 return $this->summary($values);
127 }
128
129 /**
fe482240 130 * Handle the values in summary mode.
6a488035 131 *
d4dd1e85
TO
132 * @param array $values
133 * The array of values belonging to this line.
6a488035 134 *
79d7553f 135 * @return bool
a6c01b45 136 * the result of this processing
6a488035 137 */
00be9182 138 public function summary(&$values) {
6a488035
TO
139 $erroneousField = NULL;
140
353ffa53 141 $response = $this->setActiveFieldValues($values, $erroneousField);
6a488035 142 $errorRequired = FALSE;
353ffa53 143 $index = -1;
6a488035
TO
144
145 if ($this->_eventIndex > -1 && $this->_eventTitleIndex > -1) {
146 array_unshift($values, ts('Select either EventID OR Event Title'));
a05662ef 147 return CRM_Import_Parser::ERROR;
6a488035
TO
148 }
149 elseif ($this->_eventTitleIndex > -1) {
150 $index = $this->_eventTitleIndex;
151 }
152 elseif ($this->_eventIndex > -1) {
153 $index = $this->_eventIndex;
154 }
155 $params = &$this->getActiveFieldParams();
156
157 if (!(($index < 0) || ($this->_participantStatusIndex < 0))) {
158 $errorRequired = !CRM_Utils_Array::value($this->_participantStatusIndex, $values);
8cc574cf 159 if (empty($params['event_id']) && empty($params['event_title'])) {
719a6fec 160 CRM_Contact_Import_Parser_Contact::addToErrorMsg('Event', $missingField);
6a488035 161 }
a7488080 162 if (empty($params['participant_status_id'])) {
719a6fec 163 CRM_Contact_Import_Parser_Contact::addToErrorMsg('Participant Status', $missingField);
6a488035
TO
164 }
165 }
166 else {
167 $errorRequired = TRUE;
168 $missingField = NULL;
169 if ($index < 0) {
719a6fec 170 CRM_Contact_Import_Parser_Contact::addToErrorMsg('Event', $missingField);
6a488035
TO
171 }
172 if ($this->_participantStatusIndex < 0) {
719a6fec 173 CRM_Contact_Import_Parser_Contact::addToErrorMsg('Participant Status', $missingField);
6a488035
TO
174 }
175 }
176
177 if ($errorRequired) {
178 array_unshift($values, ts('Missing required field(s) :') . $missingField);
a05662ef 179 return CRM_Import_Parser::ERROR;
6a488035
TO
180 }
181
182 $errorMessage = NULL;
183
184 //for date-Formats
185 $session = CRM_Core_Session::singleton();
186 $dateType = $session->get('dateTypes');
187
188 foreach ($params as $key => $val) {
189 if ($val && ($key == 'participant_register_date')) {
190 if ($dateValue = CRM_Utils_Date::formatDate($params[$key], $dateType)) {
191 $params[$key] = $dateValue;
192 }
193 else {
719a6fec 194 CRM_Contact_Import_Parser_Contact::addToErrorMsg('Register Date', $errorMessage);
6a488035
TO
195 }
196 }
197 elseif ($val && ($key == 'participant_role_id' || $key == 'participant_role')) {
198 $roleIDs = CRM_Event_PseudoConstant::participantRole();
199 $val = explode(',', $val);
200 if ($key == 'participant_role_id') {
201 foreach ($val as $role) {
c3f7ab62 202 if (!array_key_exists(trim($role), $roleIDs)) {
719a6fec 203 CRM_Contact_Import_Parser_Contact::addToErrorMsg('Participant Role Id', $errorMessage);
6a488035
TO
204 break;
205 }
206 }
207 }
208 else {
209 foreach ($val as $role) {
719a6fec 210 if (!CRM_Contact_Import_Parser_Contact::in_value(trim($role), $roleIDs)) {
353ffa53 211 CRM_Contact_Import_Parser_Contact::addToErrorMsg('Participant Role', $errorMessage);
6a488035
TO
212 break;
213 }
214 }
215 }
216 }
217 elseif ($val && (($key == 'participant_status_id') || ($key == 'participant_status'))) {
218 $statusIDs = CRM_Event_PseudoConstant::participantStatus();
219 if ($key == 'participant_status_id') {
c3f7ab62 220 if (!array_key_exists(trim($val), $statusIDs)) {
719a6fec 221 CRM_Contact_Import_Parser_Contact::addToErrorMsg('Participant Status Id', $errorMessage);
6a488035
TO
222 break;
223 }
224 }
719a6fec
CW
225 elseif (!CRM_Contact_Import_Parser_Contact::in_value($val, $statusIDs)) {
226 CRM_Contact_Import_Parser_Contact::addToErrorMsg('Participant Status', $errorMessage);
6a488035
TO
227 break;
228 }
229 }
230 }
231 //date-Format part ends
232
233 $params['contact_type'] = 'Participant';
234 //checking error in custom data
719a6fec 235 CRM_Contact_Import_Parser_Contact::isErrorInCustomData($params, $errorMessage);
6a488035
TO
236
237 if ($errorMessage) {
238 $tempMsg = "Invalid value for field(s) : $errorMessage";
239 array_unshift($values, $tempMsg);
240 $errorMessage = NULL;
a05662ef 241 return CRM_Import_Parser::ERROR;
6a488035 242 }
a05662ef 243 return CRM_Import_Parser::VALID;
6a488035
TO
244 }
245
246 /**
fe482240 247 * Handle the values in import mode.
6a488035 248 *
d4dd1e85
TO
249 * @param int $onDuplicate
250 * The code for what action to take on duplicates.
251 * @param array $values
252 * The array of values belonging to this line.
6a488035 253 *
79d7553f 254 * @return bool
a6c01b45 255 * the result of this processing
6a488035 256 */
00be9182 257 public function import($onDuplicate, &$values) {
6a488035
TO
258
259 // first make sure this is a valid line
260 $response = $this->summary($values);
a05662ef 261 if ($response != CRM_Import_Parser::VALID) {
6a488035
TO
262 return $response;
263 }
353ffa53
TO
264 $params = &$this->getActiveFieldParams();
265 $session = CRM_Core_Session::singleton();
266 $dateType = $session->get('dateTypes');
be2fb01f 267 $formatted = ['version' => 3];
1828a237 268 $customFields = CRM_Core_BAO_CustomField::getFields('Participant');
6a488035
TO
269
270 // don't add to recent items, CRM-4399
271 $formatted['skipRecentView'] = TRUE;
272
273 foreach ($params as $key => $val) {
274 if ($val) {
275 if ($customFieldID = CRM_Core_BAO_CustomField::getKeyID($key)) {
276 if ($customFields[$customFieldID]['data_type'] == 'Date') {
719a6fec 277 CRM_Contact_Import_Parser_Contact::formatCustomDate($params, $formatted, $dateType, $key);
6a488035
TO
278 unset($params[$key]);
279 }
280 elseif ($customFields[$customFieldID]['data_type'] == 'Boolean') {
281 $params[$key] = CRM_Utils_String::strtoboolstr($val);
282 }
283 }
22e263ad 284 if ($key == 'participant_register_date') {
39d87d1e
JM
285 CRM_Utils_Date::convertToDefaultDate($params, $dateType, 'participant_register_date');
286 $formatted['participant_register_date'] = CRM_Utils_Date::processDate($params['participant_register_date']);
287 }
6a488035
TO
288 }
289 }
290
8cc574cf 291 if (!(!empty($params['participant_role_id']) || !empty($params['participant_role']))) {
a7488080 292 if (!empty($params['event_id'])) {
6a488035
TO
293 $params['participant_role_id'] = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $params['event_id'], 'default_role_id');
294 }
295 else {
296 $eventTitle = $params['event_title'];
d4d1df5b 297 $params['participant_role_id'] = CRM_Core_DAO::singleValueQuery('SELECT default_role_id FROM civicrm_event WHERE title = %1', [
64e1d541 298 1 => [$eventTitle, 'String'],
d4d1df5b 299 ]);
6a488035
TO
300 }
301 }
302
303 //date-Format part ends
304 static $indieFields = NULL;
305 if ($indieFields == NULL) {
306 $indieFields = CRM_Event_BAO_Participant::import();
307 }
308
be2fb01f 309 $formatValues = [];
6a488035
TO
310 foreach ($params as $key => $field) {
311 if ($field == NULL || $field === '') {
312 continue;
313 }
314
315 $formatValues[$key] = $field;
316 }
317
c3fc9a44 318 $formatError = $this->formatValues($formatted, $formatValues);
6a488035
TO
319
320 if ($formatError) {
321 array_unshift($values, $formatError['error_message']);
a05662ef 322 return CRM_Import_Parser::ERROR;
6a488035
TO
323 }
324
325 if (!CRM_Utils_Rule::integer($formatted['event_id'])) {
326 array_unshift($values, ts('Invalid value for Event ID'));
a05662ef 327 return CRM_Import_Parser::ERROR;
6a488035
TO
328 }
329
a05662ef 330 if ($onDuplicate != CRM_Import_Parser::DUPLICATE_UPDATE) {
6a488035 331 $formatted['custom'] = CRM_Core_BAO_CustomField::postProcess($formatted,
6a488035
TO
332 NULL,
333 'Participant'
334 );
335 }
336 else {
337 if ($formatValues['participant_id']) {
338 $dao = new CRM_Event_BAO_Participant();
339 $dao->id = $formatValues['participant_id'];
340
341 $formatted['custom'] = CRM_Core_BAO_CustomField::postProcess($formatted,
6a488035
TO
342 $formatValues['participant_id'],
343 'Participant'
344 );
345 if ($dao->find(TRUE)) {
be2fb01f 346 $ids = [
6a488035
TO
347 'participant' => $formatValues['participant_id'],
348 'userId' => $session->get('userID'),
be2fb01f
CW
349 ];
350 $participantValues = [];
6a488035 351 //@todo calling api functions directly is not supported
1a5d4d8a 352 $newParticipant = $this->deprecated_participant_check_params($formatted, $participantValues, FALSE);
6a488035
TO
353 if ($newParticipant['error_message']) {
354 array_unshift($values, $newParticipant['error_message']);
a05662ef 355 return CRM_Import_Parser::ERROR;
6a488035
TO
356 }
357 $newParticipant = CRM_Event_BAO_Participant::create($formatted, $ids);
a7488080 358 if (!empty($formatted['fee_level'])) {
be2fb01f 359 $otherParams = [
6a488035 360 'fee_label' => $formatted['fee_level'],
21dfd5f5 361 'event_id' => $newParticipant->event_id,
be2fb01f 362 ];
6a488035
TO
363 CRM_Price_BAO_LineItem::syncLineItems($newParticipant->id, 'civicrm_participant', $newParticipant->fee_amount, $otherParams);
364 }
365
366 $this->_newParticipant[] = $newParticipant->id;
a05662ef 367 return CRM_Import_Parser::VALID;
6a488035
TO
368 }
369 else {
370 array_unshift($values, 'Matching Participant record not found for Participant ID ' . $formatValues['participant_id'] . '. Row was skipped.');
a05662ef 371 return CRM_Import_Parser::ERROR;
6a488035
TO
372 }
373 }
374 }
375
376 if ($this->_contactIdIndex < 0) {
56316747 377 $error = $this->checkContactDuplicate($formatValues);
6a488035
TO
378
379 if (CRM_Core_Error::isAPIError($error, CRM_Core_ERROR::DUPLICATE_CONTACT)) {
380 $matchedIDs = explode(',', $error['error_message']['params'][0]);
381 if (count($matchedIDs) >= 1) {
382 foreach ($matchedIDs as $contactId) {
383 $formatted['contact_id'] = $contactId;
384 $formatted['version'] = 3;
880585a2 385 $newParticipant = $this->deprecated_create_participant_formatted($formatted, $onDuplicate);
6a488035
TO
386 }
387 }
388 }
389 else {
390 // Using new Dedupe rule.
be2fb01f 391 $ruleParams = [
6a488035 392 'contact_type' => $this->_contactType,
353ffa53 393 'used' => 'Unsupervised',
be2fb01f 394 ];
61194d45 395 $fieldsArray = CRM_Dedupe_BAO_DedupeRule::dedupeRuleFields($ruleParams);
6a488035
TO
396
397 $disp = '';
398 foreach ($fieldsArray as $value) {
399 if (array_key_exists(trim($value), $params)) {
400 $paramValue = $params[trim($value)];
401 if (is_array($paramValue)) {
402 $disp .= $params[trim($value)][0][trim($value)] . " ";
403 }
404 else {
405 $disp .= $params[trim($value)] . " ";
406 }
407 }
408 }
409
a7488080 410 if (!empty($params['external_identifier'])) {
6a488035
TO
411 if ($disp) {
412 $disp .= "AND {$params['external_identifier']}";
413 }
414 else {
415 $disp = $params['external_identifier'];
416 }
417 }
418
419 array_unshift($values, 'No matching Contact found for (' . $disp . ')');
a05662ef 420 return CRM_Import_Parser::ERROR;
6a488035
TO
421 }
422 }
423 else {
a7488080 424 if (!empty($formatValues['external_identifier'])) {
6a488035
TO
425 $checkCid = new CRM_Contact_DAO_Contact();
426 $checkCid->external_identifier = $formatValues['external_identifier'];
427 $checkCid->find(TRUE);
428 if ($checkCid->id != $formatted['contact_id']) {
d79be26c 429 array_unshift($values, 'Mismatch of External ID:' . $formatValues['external_identifier'] . ' and Contact Id:' . $formatted['contact_id']);
a05662ef 430 return CRM_Import_Parser::ERROR;
6a488035
TO
431 }
432 }
433
880585a2 434 $newParticipant = $this->deprecated_create_participant_formatted($formatted, $onDuplicate);
6a488035
TO
435 }
436
437 if (is_array($newParticipant) && civicrm_error($newParticipant)) {
a05662ef 438 if ($onDuplicate == CRM_Import_Parser::DUPLICATE_SKIP) {
6a488035 439
9c1bc317
CW
440 $contactID = $newParticipant['contactID'] ?? NULL;
441 $participantID = $newParticipant['participantID'] ?? NULL;
353ffa53 442 $url = CRM_Utils_System::url('civicrm/contact/view/participant',
6a488035
TO
443 "reset=1&id={$participantID}&cid={$contactID}&action=view", TRUE
444 );
445 if (is_array($newParticipant['error_message']) &&
446 ($participantID == $newParticipant['error_message']['params'][0])
447 ) {
448 array_unshift($values, $url);
a05662ef 449 return CRM_Import_Parser::DUPLICATE;
6a488035
TO
450 }
451 elseif ($newParticipant['error_message']) {
452 array_unshift($values, $newParticipant['error_message']);
a05662ef 453 return CRM_Import_Parser::ERROR;
6a488035 454 }
a05662ef 455 return CRM_Import_Parser::ERROR;
6a488035
TO
456 }
457 }
458
459 if (!(is_array($newParticipant) && civicrm_error($newParticipant))) {
9c1bc317 460 $this->_newParticipants[] = $newParticipant['id'] ?? NULL;
6a488035
TO
461 }
462
a05662ef 463 return CRM_Import_Parser::VALID;
6a488035
TO
464 }
465
466 /**
fe482240 467 * Get the array of successfully imported Participation ids.
6a488035
TO
468 *
469 * @return array
6a488035 470 */
00be9182 471 public function &getImportedParticipations() {
6a488035
TO
472 return $this->_newParticipants;
473 }
474
475 /**
100fef9d 476 * The initializer code, called before the processing
6a488035
TO
477 *
478 * @return void
6a488035 479 */
6ea503d4
TO
480 public function fini() {
481 }
96025800 482
c3fc9a44 483 /**
484 * Format values
485 *
486 * @todo lots of tidy up needed here - very old function relocated.
487 *
488 * @param array $values
489 * @param array $params
490 *
491 * @return array|null
492 */
493 protected function formatValues(&$values, $params) {
494 $fields = CRM_Event_DAO_Participant::fields();
495 _civicrm_api3_store_values($fields, $params, $values);
496
497 $customFields = CRM_Core_BAO_CustomField::getFields('Participant', FALSE, FALSE, NULL, NULL, FALSE, FALSE, FALSE);
498
499 foreach ($params as $key => $value) {
500 // ignore empty values or empty arrays etc
501 if (CRM_Utils_System::isNull($value)) {
502 continue;
503 }
504
505 // Handling Custom Data
506 if ($customFieldID = CRM_Core_BAO_CustomField::getKeyID($key)) {
507 $values[$key] = $value;
508 $type = $customFields[$customFieldID]['html_type'];
726e45e7 509 if (CRM_Core_BAO_CustomField::isSerialized($customFields[$customFieldID])) {
be40742b 510 $values[$key] = self::unserializeCustomValue($customFieldID, $value, $type);
c3fc9a44 511 }
512 elseif ($type == 'Select' || $type == 'Radio') {
513 $customOption = CRM_Core_BAO_CustomOption::getCustomOption($customFieldID, TRUE);
514 foreach ($customOption as $customFldID => $customValue) {
9c1bc317
CW
515 $val = $customValue['value'] ?? NULL;
516 $label = $customValue['label'] ?? NULL;
c3fc9a44 517 $label = strtolower($label);
518 $value = strtolower(trim($value));
519 if (($value == $label) || ($value == strtolower($val))) {
520 $values[$key] = $val;
521 }
522 }
523 }
524 }
525
526 switch ($key) {
527 case 'participant_contact_id':
528 if (!CRM_Utils_Rule::integer($value)) {
529 return civicrm_api3_create_error("contact_id not valid: $value");
530 }
08c6b770 531 if (!CRM_Core_DAO::singleValueQuery("SELECT id FROM civicrm_contact WHERE id = $value")) {
c3fc9a44 532 return civicrm_api3_create_error("Invalid Contact ID: There is no contact record with contact_id = $value.");
533 }
534 $values['contact_id'] = $values['participant_contact_id'];
535 unset($values['participant_contact_id']);
536 break;
537
538 case 'participant_register_date':
539 if (!CRM_Utils_Rule::dateTime($value)) {
540 return civicrm_api3_create_error("$key not a valid date: $value");
541 }
542 break;
543
544 case 'event_title':
545 $id = CRM_Core_DAO::getFieldValue("CRM_Event_DAO_Event", $value, 'id', 'title');
546 $values['event_id'] = $id;
547 break;
548
549 case 'event_id':
550 if (!CRM_Utils_Rule::integer($value)) {
551 return civicrm_api3_create_error("Event ID is not valid: $value");
552 }
d4d1df5b 553 $svq = CRM_Core_DAO::singleValueQuery('SELECT id FROM civicrm_event WHERE id = %1', [
64e1d541 554 1 => [$value, 'Integer'],
d4d1df5b 555 ]);
c3fc9a44 556 if (!$svq) {
557 return civicrm_api3_create_error("Invalid Event ID: There is no event record with event_id = $value.");
558 }
559 break;
560
561 case 'participant_status_id':
562 if (!CRM_Utils_Rule::integer($value)) {
563 return civicrm_api3_create_error("Event Status ID is not valid: $value");
564 }
565 break;
566
567 case 'participant_status':
568 $status = CRM_Event_PseudoConstant::participantStatus();
fe7f4414 569 $values['participant_status_id'] = CRM_Utils_Array::key($value, $status);
c3fc9a44 570 break;
571
572 case 'participant_role_id':
573 case 'participant_role':
574 $role = CRM_Event_PseudoConstant::participantRole();
575 $participantRoles = explode(",", $value);
576 foreach ($participantRoles as $k => $v) {
577 $v = trim($v);
578 if ($key == 'participant_role') {
579 $participantRoles[$k] = CRM_Utils_Array::key($v, $role);
580 }
581 else {
582 $participantRoles[$k] = $v;
583 }
584 }
585 $values['role_id'] = implode(CRM_Core_DAO::VALUE_SEPARATOR, $participantRoles);
586 unset($values[$key]);
587 break;
588
589 default:
590 break;
591 }
592 }
593
594 if (array_key_exists('participant_note', $params)) {
595 $values['participant_note'] = $params['participant_note'];
596 }
597
598 // CRM_Event_BAO_Participant::create() handles register_date,
599 // status_id and source. So, if $values contains
600 // participant_register_date, participant_status_id or participant_source,
601 // convert it to register_date, status_id or source
be2fb01f 602 $changes = [
c3fc9a44 603 'participant_register_date' => 'register_date',
604 'participant_source' => 'source',
605 'participant_status_id' => 'status_id',
606 'participant_role_id' => 'role_id',
607 'participant_fee_level' => 'fee_level',
608 'participant_fee_amount' => 'fee_amount',
609 'participant_id' => 'id',
be2fb01f 610 ];
c3fc9a44 611
612 foreach ($changes as $orgVal => $changeVal) {
613 if (isset($values[$orgVal])) {
614 $values[$changeVal] = $values[$orgVal];
615 unset($values[$orgVal]);
616 }
617 }
618
619 return NULL;
620 }
621
880585a2 622 /**
880585a2 623 * @param array $params
624 * @param $onDuplicate
625 *
626 * @return array|bool
627 * <type>
4d935ea5 628 * @throws \CiviCRM_API3_Exception
629 * @deprecated - this is part of the import parser not the API & needs to be
630 * moved on out
631 *
880585a2 632 */
633 protected function deprecated_create_participant_formatted($params, $onDuplicate) {
634 if ($onDuplicate != CRM_Import_Parser::DUPLICATE_NOCHECK) {
635 CRM_Core_Error::reset();
1a5d4d8a 636 $error = $this->deprecated_participant_check_params($params, TRUE);
880585a2 637 if (civicrm_error($error)) {
638 return $error;
639 }
640 }
4d935ea5 641 return civicrm_api3('Participant', 'create', $params);
880585a2 642 }
643
1a5d4d8a 644 /**
645 * Formatting that was written a long time ago and may not make sense now.
646 *
647 * @param array $params
648 *
649 * @param bool $checkDuplicate
650 *
651 * @return array|bool
652 */
653 protected function deprecated_participant_check_params($params, $checkDuplicate = FALSE) {
654
655 // check if participant id is valid or not
656 if (!empty($params['id'])) {
657 $participant = new CRM_Event_BAO_Participant();
658 $participant->id = $params['id'];
659 if (!$participant->find(TRUE)) {
660 return civicrm_api3_create_error(ts('Participant id is not valid'));
661 }
662 }
663
664 // check if contact id is valid or not
665 if (!empty($params['contact_id'])) {
666 $contact = new CRM_Contact_BAO_Contact();
667 $contact->id = $params['contact_id'];
668 if (!$contact->find(TRUE)) {
669 return civicrm_api3_create_error(ts('Contact id is not valid'));
670 }
671 }
672
673 // check that event id is not an template
674 if (!empty($params['event_id'])) {
675 $isTemplate = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $params['event_id'], 'is_template');
676 if (!empty($isTemplate)) {
677 return civicrm_api3_create_error(ts('Event templates are not meant to be registered.'));
678 }
679 }
680
681 $result = [];
682 if ($checkDuplicate) {
683 if (CRM_Event_BAO_Participant::checkDuplicate($params, $result)) {
684 $participantID = array_pop($result);
685
686 $error = CRM_Core_Error::createError("Found matching participant record.",
687 CRM_Core_Error::DUPLICATE_PARTICIPANT,
688 'Fatal', $participantID
689 );
690
691 return civicrm_api3_create_error($error->pop(),
692 [
693 'contactID' => $params['contact_id'],
694 'participantID' => $participantID,
695 ]
696 );
697 }
698 }
699 return TRUE;
700 }
701
6a488035 702}