Merge pull request #318 from davecivicrm/CRM-12268
[civicrm-core.git] / CRM / Event / Form / Registration / Register.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
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 *
30 *
31 * @package CRM
32 * @copyright CiviCRM LLC (c) 2004-2013
33 * $Id$
34 *
35 */
36
37/**
38 * This class generates form components for processing Event
39 *
40 */
41class CRM_Event_Form_Registration_Register extends CRM_Event_Form_Registration {
42
43 /**
44 * The fields involved in this page
45 *
46 */
47 public $_fields;
48
49 /**
50 * The defaults involved in this page
51 *
52 */
53 public $_defaults;
54
55 /**
56 * The status message that user view.
57 *
58 */
59 protected $_waitlistMsg = NULL;
60 protected $_requireApprovalMsg = NULL;
61
62 public $_quickConfig = NULL;
63
64 /**
65 * Allow deveopera to use hook_civicrm_buildForm()
66 * to override the registration dupe check
67 * CRM-7604
68 */
69 public $_skipDupeRegistrationCheck = FALSE;
70
7bf9cde2
CW
71 public $_ppType;
72 public $_snippet;
6a488035
TO
73
74 /**
75 * Function to set variables up before form is built
76 *
77 * @return void
78 * @access public
79 */
80 function preProcess() {
81 parent::preProcess();
7bf9cde2
CW
82
83 CRM_Contribute_Form_Contribution_Main::preProcessPaymentOptions($this);
84 if ($this->_snippet) {
85 return;
6a488035
TO
86 }
87
88 //CRM-4320.
89 //here we can't use parent $this->_allowWaitlist as user might
90 //walk back and we maight set this value in this postProcess.
91 //(we set when spaces < group count and want to allow become part of waiting )
92
93 $eventFull = CRM_Event_BAO_Participant::eventFull($this->_eventId, FALSE, CRM_Utils_Array::value('has_waitlist', $this->_values['event']));
94
95 $this->_allowWaitlist = FALSE;
96 if ($eventFull && !$this->_allowConfirmation &&
97 CRM_Utils_Array::value('has_waitlist', $this->_values['event'])
98 ) {
99 $this->_allowWaitlist = TRUE;
100 $this->_waitlistMsg = CRM_Utils_Array::value('waitlist_text', $this->_values['event']);
101 if (!$this->_waitlistMsg) {
102 $this->_waitlistMsg = ts('This event is currently full. However you can register now and get added to a waiting list. You will be notified if spaces become available.');
103 }
104 }
105 $this->set('allowWaitlist', $this->_allowWaitlist);
106
107 //To check if the user is already registered for the event(CRM-2426)
108 if (!$this->_skipDupeRegistrationCheck) {
109 self::checkRegistration(NULL, $this);
110 }
111
112 $this->assign('availableRegistrations', $this->_availableRegistrations);
113
114 // get the participant values from EventFees.php, CRM-4320
115 if ($this->_allowConfirmation) {
116 CRM_Event_Form_EventFees::preProcess($this);
117 }
118
119 if (CRM_Utils_Array::value('hidden_processor', $_POST)) {
120 $this->set('type', CRM_Utils_Array::value('payment_processor', $_POST));
121 $this->set('mode', $this->_mode);
122 $this->set('paymentProcessor', $this->_paymentProcessor);
123
124 CRM_Core_Payment_ProcessorForm::preProcess($this);
125 CRM_Core_Payment_ProcessorForm::buildQuickForm($this);
126 }
127
128 }
129
130 /**
131 * This function sets the default values for the form. For edit/view mode
132 * the default values are retrieved from the database
c4c5b5fe 133 * Adding discussion from CRM-11915 as code comments
134 * When multiple payment processors are configured for a event and user does any selection changes for them on online event registeration page :
135 * The 'Register' page gets loaded through ajax and following happens :
136 * the setDefaults function is called with the variable _ppType set with selected payment processor type,
137 * so in the 'if' condition checked whether the selected payment processor's billing mode is of 'billing form mode'. If its not, don't setDefaults for billing form and return instead.
138 *- For payment processors of billing mode 'Notify' - return from setDefaults before the code for billing profile population execution .
139 * (done this is because for payment processors with 'Notify' mode billing profile form doesn't get rendered on UI)
6a488035
TO
140 *
141 * @access public
142 *
143 * @return None
144 */
145 function setDefaultValues() {
7bf9cde2 146 if ($this->_ppType && $this->_snippet && !($this->_paymentProcessor['billing_mode'] & CRM_Core_Payment::BILLING_MODE_FORM)) {
c4c5b5fe 147 // see function comment block for explanation of this
6a488035
TO
148 return;
149 }
150
151 $contactID = parent::getContactID();
152 if ($contactID) {
c4c5b5fe 153 //@todo CRM-11915 I observed that even when the billing block is not present the routine to retrieve the billing defaults is still called - which seems a bit redundant.
6a488035
TO
154 $names = array(
155 'first_name', 'middle_name', 'last_name',
156 "street_address-{$this->_bltID}", "city-{$this->_bltID}", "postal_code-{$this->_bltID}",
157 "country_id-{$this->_bltID}", "state_province_id-{$this->_bltID}",
158 );
159
160 foreach ($names as $name) {
161 $fields[$name] = 1;
162 }
163 $fields["state_province-{$this->_bltID}"] = 1;
164 $fields["country-{$this->_bltID}"] = 1;
165 $fields["email-{$this->_bltID}"] = 1;
166 $fields['email-Primary'] = 1;
167
168 CRM_Core_BAO_UFGroup::setProfileDefaults($contactID, $fields, $this->_defaults);
169
170 // use primary email address if billing email address is empty
171 if (empty($this->_defaults["email-{$this->_bltID}"]) &&
172 !empty($this->_defaults['email-Primary'])
173 ) {
174 $this->_defaults["email-{$this->_bltID}"] = $this->_defaults['email-Primary'];
175 }
176
177 foreach ($names as $name) {
178 if (isset($this->_defaults[$name])) {
179 $this->_defaults['billing_' . $name] = $this->_defaults[$name];
180 }
181 }
182 }
183 $config = CRM_Core_Config::singleton();
184 // set default country from config if no country set
185 if (!CRM_Utils_Array::value("billing_country_id-{$this->_bltID}", $this->_defaults)) {
186 $this->_defaults["billing_country_id-{$this->_bltID}"] = $config->defaultContactCountry;
187 }
188
189 // now fix all state country selectors
190 CRM_Core_BAO_Address::fixAllStateSelects($this, $this->_defaults);
191
192 if ($this->_ppType) {
193 return $this->_defaults;
194 }
195
196 if ($contactID) {
197 $options = array();
198 $fields = array();
199
200 if (!empty($this->_fields)) {
201 $removeCustomFieldTypes = array('Participant');
202 foreach ($this->_fields as $name => $dontCare) {
203 if (substr($name, 0, 7) == 'custom_') {
204 $id = substr($name, 7);
205 if (!$this->_allowConfirmation &&
206 !CRM_Core_BAO_CustomGroup::checkCustomField($id, $removeCustomFieldTypes)
207 ) {
208 continue;
209 }
210 // ignore component fields
211 }
212 elseif ((substr($name, 0, 12) == 'participant_')) {
213 continue;
214 }
215 $fields[$name] = 1;
216 }
217 }
218 }
3feb567a
DL
219
220 if (!empty($fields)) {
221 CRM_Core_BAO_UFGroup::setProfileDefaults($contactID, $fields, $this->_defaults);
222 }
223
13ac605f
DG
224 // Set default payment processor as default payment_processor radio button value
225 if (!empty($this->_paymentProcessors)) {
226 foreach ($this->_paymentProcessors as $pid => $value) {
227 if (CRM_Utils_Array::value('is_default', $value)) {
228 $this->_defaults['payment_processor'] = $pid;
229 }
230 }
231 }
232
6a488035
TO
233 //if event is monetary and pay later is enabled and payment
234 //processor is not available then freeze the pay later checkbox with
235 //default check
236 if (CRM_Utils_Array::value('is_pay_later', $this->_values['event']) &&
237 !is_array($this->_paymentProcessor)
238 ) {
239 $this->_defaults['is_pay_later'] = 1;
240 }
241
242 //set custom field defaults
243 if (!empty($this->_fields)) {
244 //load default campaign from page.
245 if (array_key_exists('participant_campaign_id', $this->_fields)) {
246 $this->_defaults['participant_campaign_id'] = CRM_Utils_Array::value('campaign_id',
247 $this->_values['event']
248 );
249 }
250
251 foreach ($this->_fields as $name => $field) {
252 if ($customFieldID = CRM_Core_BAO_CustomField::getKeyID($name)) {
253 // fix for CRM-1743
254 if (!isset($this->_defaults[$name])) {
255 CRM_Core_BAO_CustomField::setProfileDefaults($customFieldID, $name, $this->_defaults,
256 NULL, CRM_Profile_Form::MODE_REGISTER
257 );
258 }
259 }
260 }
261 }
262
263 //fix for CRM-3088, default value for discount set.
264 $discountId = NULL;
265 if (!empty($this->_values['discount'])) {
266 $discountId = CRM_Core_BAO_Discount::findSet($this->_eventId, 'civicrm_event');
267 if ($discountId) {
268 if (isset($this->_values['event']['default_discount_fee_id'])) {
269 $discountKey = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionValue',
270 $this->_values['event']['default_discount_fee_id'],
271 'weight', 'id'
272 );
273
274 $this->_defaults['amount'] = key(array_slice($this->_values['discount'][$discountId],
275 $discountKey - 1, $discountKey, TRUE
276 ));
277 }
278 }
279 }
280
281 // add this event's default participant role to defaults array
282 // (for cases where participant_role field is included in form via profile)
283 if ($this->_values['event']['default_role_id']) {
284 $this->_defaults['participant_role'] =
285 $this->_defaults['participant_role_id'] = $this->_values['event']['default_role_id'];
286 }
287 if ($this->_priceSetId && !empty($this->_feeBlock)) {
288 foreach ($this->_feeBlock as $key => $val) {
289 foreach ($val['options'] as $keys => $values) {
290 if ($values['is_default'] &&
291 !CRM_Utils_Array::value('is_full', $values)
292 ) {
293
294 if ($val['html_type'] == 'CheckBox') {
295 $this->_defaults["price_{$key}"][$keys] = 1;
296 }
297 else {
298 $this->_defaults["price_{$key}"] = $keys;
299 }
300 }
301 }
302 }
303 }
304
305 //set default participant fields, CRM-4320.
306 $hasAdditionalParticipants = FALSE;
307 if ($this->_allowConfirmation) {
308 $this->_contactId = $contactID;
309 $this->_discountId = $discountId;
310 $forcePayLater = CRM_Utils_Array::value('is_pay_later', $this->_defaults, FALSE);
311 $this->_defaults = array_merge($this->_defaults, CRM_Event_Form_EventFees::setDefaultValues($this));
312 $this->_defaults['is_pay_later'] = $forcePayLater;
313
314 if ($this->_additionalParticipantIds) {
315 $hasAdditionalParticipants = TRUE;
316 $this->_defaults['additional_participants'] = count($this->_additionalParticipantIds);
317 }
318 }
319 $this->assign('hasAdditionalParticipants', $hasAdditionalParticipants);
320
321 // //hack to simplify credit card entry for testing
322 // $this->_defaults['credit_card_type'] = 'Visa';
323 // $this->_defaults['credit_card_number'] = '4807731747657838';
324 // $this->_defaults['cvv2'] = '000';
325 // $this->_defaults['credit_card_exp_date'] = array( 'Y' => '2010', 'M' => '05' );
326
327 // to process Custom data that are appended to URL
328 $getDefaults = CRM_Core_BAO_CustomGroup::extractGetParams($this, "'Contact', 'Individual', 'Contribution', 'Participant'");
329 if (!empty($getDefaults)) {
330 $this->_defaults = array_merge($this->_defaults, $getDefaults);
331 }
332
333 return $this->_defaults;
334 }
335
336 /**
337 * Function to build the form
338 *
339 * @return None
340 * @access public
341 */
342 public function buildQuickForm() {
7bf9cde2 343 // Build payment processor form
6a488035 344 if ($this->_ppType) {
7bf9cde2
CW
345 CRM_Core_Payment_ProcessorForm::buildQuickForm($this);
346 // Return if we are in an ajax callback
347 if ($this->_snippet) {
348 return;
349 }
6a488035
TO
350 }
351
352 $contactID = parent::getContactID();
353 $this->assign('contact_id', $contactID);
354 $display_name = '';
355 if ($contactID) {
356 $display_name = CRM_Contact_BAO_Contact::displayName($contactID);
357 }
358 $this->assign('display_name', $display_name);
359
360 $config = CRM_Core_Config::singleton();
361 $this->add('hidden', 'scriptFee', NULL);
362 $this->add('hidden', 'scriptArray', NULL);
363
364 $bypassPayment = $allowGroupOnWaitlist = $isAdditionalParticipants = FALSE;
365 if ($this->_values['event']['is_multiple_registrations']) {
366 // don't allow to add additional during confirmation if not preregistered.
367 if (!$this->_allowConfirmation || $this->_additionalParticipantIds) {
368 // Hardcode maximum number of additional participants here for now. May need to make this configurable per event.
369 // Label is value + 1, since the code sees this is ADDITIONAL participants (in addition to "self")
370 $additionalOptions = array('' => ts('1'), 1 => ts('2'), 2 => ts('3'), 3 => ts('4'), 4 => ts('5'),
371 5 => ts('6'), 6 => ts('7'), 7 => ts('8'), 8 => ts('9'), 9 => ts('10'),
372 );
373 $element = $this->add('select', 'additional_participants',
374 ts('How many people are you registering?'),
375 $additionalOptions,
376 NULL,
377 array('onChange' => "allowParticipant()")
378 );
379 $isAdditionalParticipants = TRUE;
380 }
381 }
382
383 //hack to allow group to register w/ waiting
384 if ((CRM_Utils_Array::value('is_multiple_registrations', $this->_values['event']) ||
385 $this->_priceSetId
386 ) &&
387 !$this->_allowConfirmation &&
388 is_numeric($this->_availableRegistrations)
389 && CRM_Utils_Array::value('has_waitlist', $this->_values['event'])
390 ) {
391 $bypassPayment = TRUE;
392 //case might be group become as a part of waitlist.
393 //If not waitlist then they require admin approve.
394 $allowGroupOnWaitlist = TRUE;
395 $this->_waitlistMsg = ts("This event has only %1 space(s) left. If you continue and register more than %1 people (including yourself ), the whole group will be wait listed. Or, you can reduce the number of people you are registering to %1 to avoid being put on the waiting list.", array(1 => $this->_availableRegistrations));
396
397 if ($this->_requireApproval) {
398 $this->_requireApprovalMsg = CRM_Utils_Array::value('approval_req_text', $this->_values['event'],
399 ts('Registration for this event requires approval. Once your registration(s) have been reviewed, you will receive an email with a link to a web page where you can complete the registration process.')
400 );
401 }
402 }
403
404 //case where only approval needed - no waitlist.
405 if ($this->_requireApproval &&
406 !$this->_allowWaitlist && !$bypassPayment
407 ) {
408 $this->_requireApprovalMsg = CRM_Utils_Array::value('approval_req_text', $this->_values['event'],
409 ts('Registration for this event requires approval. Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.')
410 );
411 }
412
413 //lets display status to primary page only.
414 $this->assign('waitlistMsg', $this->_waitlistMsg);
415 $this->assign('requireApprovalMsg', $this->_requireApprovalMsg);
416 $this->assign('allowGroupOnWaitlist', $allowGroupOnWaitlist);
417 $this->assign('isAdditionalParticipants', $isAdditionalParticipants);
418
419 $this->buildCustom($this->_values['custom_pre_id'], 'customPre');
420 $this->buildCustom($this->_values['custom_post_id'], 'customPost');
421
422 //lets get js on two different qf elements.
423 $showHidePayfieldName = NULL;
424 $showHidePaymentInformation = FALSE;
425 if ($this->_values['event']['is_monetary']) {
426 self::buildAmount($this);
427 }
428
429 $pps = NULL;
430 $this->_paymentProcessors = $this->get('paymentProcessors');
431 if (!empty($this->_paymentProcessors)) {
432 $pps = $this->_paymentProcessors;
433 foreach ($pps as $key => & $name) {
434 $pps[$key] = $name['name'];
435 }
436 }
437
438 if (CRM_Utils_Array::value('is_pay_later', $this->_values['event']) &&
439 ($this->_allowConfirmation || (!$this->_requireApproval && !$this->_allowWaitlist))
440 ) {
441 $pps[0] = $this->_values['event']['pay_later_text'];
442 }
443
444 if ($this->_values['event']['is_monetary']) {
445 if (count($pps) > 1) {
446 $this->addRadio('payment_processor', ts('Payment Method'), $pps,
447 NULL, "&nbsp;", TRUE
448 );
449 }
450 elseif (!empty($pps)) {
451 $ppKeys = array_keys($pps);
452 $currentPP = array_pop($ppKeys);
453 $this->addElement('hidden', 'payment_processor', $currentPP);
454 }
455 }
456
457 //lets add some qf element to bypass payment validations, CRM-4320
458 if ($bypassPayment) {
459 $this->addElement('hidden', 'bypass_payment', NULL, array('id' => 'bypass_payment'));
460 }
461 $this->assign('bypassPayment', $bypassPayment);
462 $this->assign('showHidePaymentInformation', $showHidePaymentInformation);
463
464 $userID = parent::getContactID();
465
466 if (!$userID) {
467 $createCMSUser = FALSE;
468
469 if ($this->_values['custom_pre_id']) {
470 $profileID = $this->_values['custom_pre_id'];
471 $createCMSUser = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFGroup', $profileID, 'is_cms_user');
472 }
473
474 if (!$createCMSUser &&
475 $this->_values['custom_post_id']
476 ) {
477 if (!is_array($this->_values['custom_post_id'])) {
478 $profileIDs = array($this->_values['custom_post_id']);
479 }
480 else {
481 $profileIDs = $this->_values['custom_post_id'];
482 }
483 foreach ($profileIDs as $pid) {
484 if (CRM_Core_DAO::getFieldValue('CRM_Core_DAO_UFGroup', $pid, 'is_cms_user')) {
485 $profileID = $pid;
486 $createCMSUser = TRUE;
487 break;
488 }
489 }
490 }
491
492 if ($createCMSUser) {
493 CRM_Core_BAO_CMSUser::buildForm($this, $profileID, TRUE);
494 }
495 }
496
497 //we have to load confirm contribution button in template
498 //when multiple payment processor as the user
499 //can toggle with payment processor selection
500 $billingModePaymentProcessors = 0;
501 if (!CRM_Utils_System::isNull($this->_paymentProcessors)) {
502 foreach ($this->_paymentProcessors as $key => $values) {
503 if ($values['billing_mode'] == CRM_Core_Payment::BILLING_MODE_BUTTON) {
504 $billingModePaymentProcessors++;
505 }
506 }
507 }
508
509 if ($billingModePaymentProcessors && count($this->_paymentProcessors) == $billingModePaymentProcessors) {
510 $allAreBillingModeProcessors = TRUE;
511 } else {
512 $allAreBillingModeProcessors = FALSE;
513 }
514
515 if (!$allAreBillingModeProcessors ||
516 CRM_Utils_Array::value('is_pay_later', $this->_values['event']) || $bypassPayment
517 ) {
518
519 //freeze button to avoid multiple calls.
520 $js = NULL;
521
522 if (!CRM_Utils_Array::value('is_monetary', $this->_values['event'])) {
523 $js = array('onclick' => "return submitOnce(this,'" . $this->_name . "','" . ts('Processing') . "');");
524 }
525 $this->addButtons(array(
526 array(
527 'type' => 'upload',
528 'name' => ts('Continue >>'),
529 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
530 'isDefault' => TRUE,
531 'js' => $js,
532 ),
533 )
534 );
535 }
536
537 $this->addFormRule(array('CRM_Event_Form_Registration_Register', 'formRule'), $this);
538
539 // add pcp fields
540 if ($this->_pcpId) {
541 CRM_PCP_BAO_PCP::buildPcp($this->_pcpId, $this);
542 }
543 }
544
545 /**
546 * build the radio/text form elements for the amount field
547 *
548 * @param object $form form object
549 * @param boolean $required true if you want to add formRule
550 * @param int $discountId discount id for the event
551 *
552 * @return void
553 * @access public
554 * @static
555 */
556 static public function buildAmount(&$form, $required = TRUE, $discountId = NULL) {
557 //if payment done, no need to build the fee block.
7bf9cde2 558 if (!empty($form->_paymentId)) {
6a488035
TO
559 //fix to diaplay line item in update mode.
560 $form->assign('priceSet', isset($form->_priceSet) ? $form->_priceSet : NULL);
561 return;
562 }
563
564 $feeFields = CRM_Utils_Array::value('fee', $form->_values);
565
566 if (is_array($feeFields)) {
567 $form->_feeBlock = &$form->_values['fee'];
568 }
569
570 //check for discount.
571 $discountedFee = CRM_Utils_Array::value('discount', $form->_values);
572 if (is_array($discountedFee) && !empty($discountedFee)) {
573 if (!$discountId) {
574 $form->_discountId = $discountId = CRM_Core_BAO_Discount::findSet($form->_eventId, 'civicrm_event');
575 }
576 if ($discountId) {
577 $form->_feeBlock = &$form->_values['discount'][$discountId];
578 }
579 }
580 if (!is_array($form->_feeBlock)) {
581 $form->_feeBlock = array();
582 }
583
584 //its time to call the hook.
585 CRM_Utils_Hook::buildAmount('event', $form, $form->_feeBlock);
586
587 //reset required if participant is skipped.
588 $button = substr($form->controller->getButtonName(), -4);
589 if ($required && $button == 'skip') {
590 $required = FALSE;
591 }
592
593 $className = CRM_Utils_System::getClassName($form);
594
595 //build the priceset fields.
596 if (isset($form->_priceSetId) && $form->_priceSetId) {
597
598 //format price set fields across option full.
599 self::formatFieldsForOptionFull($form);
600
601 if (CRM_Utils_Array::value('is_quick_config', $form->_priceSet)) {
602 $form->_quickConfig = $form->_priceSet['is_quick_config'];
603 }
604 $form->add('hidden', 'priceSetId', $form->_priceSetId);
605
606 foreach ($form->_feeBlock as $field) {
607 if (CRM_Utils_Array::value('visibility', $field) == 'public' ||
608 $className == 'CRM_Event_Form_Participant'
609 ) {
610 $fieldId = $field['id'];
611 $elementName = 'price_' . $fieldId;
612
613 $isRequire = CRM_Utils_Array::value('is_required', $field);
614 if ($button == 'skip') {
615 $isRequire = FALSE;
616 }
617
618 //user might modified w/ hook.
619 $options = CRM_Utils_Array::value('options', $field);
620 if (!is_array($options)) {
621 continue;
622 }
623
624 $optionFullIds = CRM_Utils_Array::value('option_full_ids', $field, array());
625
626 //soft suppress required rule when option is full.
627 if (!empty($optionFullIds) && (count($options) == count($optionFullIds))) {
628 $isRequire = FALSE;
629 }
630
631 //build the element.
632 CRM_Price_BAO_Field::addQuickFormElement($form,
633 $elementName,
634 $fieldId,
635 FALSE,
636 $isRequire,
637 NULL,
638 $options,
639 $optionFullIds
640 );
641 }
642 }
643 $form->assign('priceSet', $form->_priceSet);
644 }
645 else {
646 $eventFeeBlockValues = array();
647 foreach ($form->_feeBlock as $fee) {
648 if (is_array($fee)) {
649
650 //CRM-7632, CRM-6201
651 $totalAmountJs = NULL;
652 if ($className == 'CRM_Event_Form_Participant') {
653 $totalAmountJs = array('onClick' => "fillTotalAmount(" . $fee['value'] . ")");
654 }
655
656 $eventFeeBlockValues['amount_id_' . $fee['amount_id']] = $fee['value'];
657 $elements[] = &$form->createElement('radio', NULL, '',
658 CRM_Utils_Money::format($fee['value']) . ' ' .
659 $fee['label'],
660 $fee['amount_id'],
661 $totalAmountJs
662 );
663 }
664 }
665 $form->assign('eventFeeBlockValues', json_encode($eventFeeBlockValues));
666
667 $form->_defaults['amount'] = CRM_Utils_Array::value('default_fee_id', $form->_values['event']);
668 $element = &$form->addGroup($elements, 'amount', ts('Event Fee(s)'), '<br />');
669 if (isset($form->_online) && $form->_online) {
670 $element->freeze();
671 }
672 if ($required) {
673 $form->addRule('amount', ts('Fee Level is a required field.'), 'required');
674 }
675 }
676 }
677
678 public static function formatFieldsForOptionFull(&$form) {
679 $priceSet = $form->get('priceSet');
680 $priceSetId = $form->get('priceSetId');
681 if (!$priceSetId ||
682 !is_array($priceSet) ||
683 empty($priceSet) ||
684 !CRM_Utils_Array::value('optionsMaxValueTotal', $priceSet)
685 ) {
686 return;
687 }
688
689 $skipParticipants = $formattedPriceSetDefaults = array();
690 if ($form->_allowConfirmation && (isset($form->_pId) || isset($form->_additionalParticipantId))) {
691 $participantId = isset($form->_pId) ? $form->_pId : $form->_additionalParticipantId;
692 $pricesetDefaults = CRM_Event_Form_EventFees::setDefaultPriceSet($participantId,
693 $form->_eventId
694 );
695 // modify options full to respect the selected fields
696 // options on confirmation.
697 $formattedPriceSetDefaults = self::formatPriceSetParams($form, $pricesetDefaultOptions);
698
699 // to skip current registered participants fields option count on confirmation.
700 $skipParticipants[] = $form->_participantId;
701 if (!empty($form->_additionalParticipantIds)) {
702 $skipParticipants = array_merge($skipParticipants, $form->_additionalParticipantIds);
703 }
704 }
705
706 $className = CRM_Utils_System::getClassName($form);
707
708 //get the current price event price set options count.
709 $currentOptionsCount = self::getPriceSetOptionCount($form);
710 $recordedOptionsCount = CRM_Event_BAO_Participant::priceSetOptionsCount($form->_eventId, $skipParticipants);
711
712 foreach ($form->_feeBlock as & $field) {
713 $optionFullIds = array();
714 $fieldId = $field['id'];
715 if (!is_array($field['options'])) {
716 continue;
717 }
718 foreach ($field['options'] as & $option) {
719 $optId = $option['id'];
720 $count = CRM_Utils_Array::value('count', $option, 0);
721 $maxValue = CRM_Utils_Array::value('max_value', $option, 0);
722 $dbTotalCount = CRM_Utils_Array::value($optId, $recordedOptionsCount, 0);
723 $currentTotalCount = CRM_Utils_Array::value($optId, $currentOptionsCount, 0);
724
725 // Do not consider current count for select field,
726 // since we are not going to freeze the options.
727 if ($field['html_type'] == 'Select') {
728 $totalCount = $dbTotalCount;
729 }
730 else {
731 $totalCount = $currentTotalCount + $dbTotalCount;
732 }
733
734 $isFull = FALSE;
735 if ($maxValue &&
736 (($totalCount >= $maxValue) || ($totalCount + $count > $maxValue))
737 ) {
738 $isFull = TRUE;
739 $optionFullIds[$optId] = $optId;
740 }
741
742 //here option is not full,
743 //but we don't want to allow participant to increase
744 //seats at the time of re-walking registration.
745 if ($count &&
746 $form->_allowConfirmation &&
747 !empty($formattedPriceSetDefaults)
748 ) {
749 if (!CRM_Utils_Array::value("price_{$field}", $formattedPriceSetDefaults) ||
750 !CRM_Utils_Array::value($opId, $formattedPriceSetDefaults["price_{$fieldId}"])
751 ) {
752 $optionFullIds[$optId] = $optId;
753 $isFull = TRUE;
754 }
755 }
756 $option['is_full'] = $isFull;
757 $option['db_total_count'] = $dbTotalCount;
758 $option['total_option_count'] = $dbTotalCount + $currentTotalCount;
759 }
760
761 //ignore option full for offline registration.
762 if ($className == 'CRM_Event_Form_Participant') {
763 $optionFullIds = array();
764 }
765
766 //finally get option ids in.
767 $field['option_full_ids'] = $optionFullIds;
768 }
769 }
770
771 /**
772 * global form rule
773 *
774 * @param array $fields the input form values
775 * @param array $files the uploaded files if any
776 * @param array $options additional user data
777 *
778 * @return true if no errors, else array of errors
779 * @access public
780 * @static
781 */
782 static function formRule($fields, $files, $self) {
783 $errors = array();
784 //check that either an email or firstname+lastname is included in the form(CRM-9587)
785 self::checkProfileComplete($fields, $errors, $self->_eventId);
786 //To check if the user is already registered for the event(CRM-2426)
787 if (!$self->_skipDupeRegistrationCheck) {
168e792f 788 self::checkRegistration($fields, $self);
6a488035
TO
789 }
790 //check for availability of registrations.
791 if (!$self->_allowConfirmation &&
792 !CRM_Utils_Array::value('bypass_payment', $fields) &&
793 is_numeric($self->_availableRegistrations) &&
794 CRM_Utils_Array::value('additional_participants', $fields) >= $self->_availableRegistrations
795 ) {
796 $errors['additional_participants'] = ts("There is only enough space left on this event for %1 participant(s).", array(1 => $self->_availableRegistrations));
797 }
798
799 // during confirmation don't allow to increase additional participants, CRM-4320
800 if ($self->_allowConfirmation &&
801 CRM_Utils_Array::value('additional_participants', $fields) &&
802 is_array($self->_additionalParticipantIds) &&
803 $fields['additional_participants'] > count($self->_additionalParticipantIds)
804 ) {
805 $errors['additional_participants'] = ts("Oops. It looks like you are trying to increase the number of additional people you are registering for. You can confirm registration for a maximum of %1 additional people.", array(1 => count($self->_additionalParticipantIds)));
806 }
807
808 //don't allow to register w/ waiting if enough spaces available.
809 if (CRM_Utils_Array::value('bypass_payment', $fields)) {
810 if (!is_numeric($self->_availableRegistrations) ||
811 (!CRM_Utils_Array::value('priceSetId', $fields) && CRM_Utils_Array::value('additional_participants', $fields) < $self->_availableRegistrations)
812 ) {
813 $errors['bypass_payment'] = ts("Oops. There are enough available spaces in this event. You can not add yourself to the waiting list.");
814 }
815 }
816
817 if (CRM_Utils_Array::value('additional_participants', $fields) &&
818 !CRM_Utils_Rule::positiveInteger($fields['additional_participants'])
819 ) {
820 $errors['additional_participants'] = ts('Please enter a whole number for Number of additional people.');
821 }
822
823 // priceset validations
824 if (CRM_Utils_Array::value('priceSetId', $fields)) {
825 //format params.
826 $formatted = self::formatPriceSetParams($self, $fields);
827 $ppParams = array($formatted);
828 $priceSetErrors = self::validatePriceSet($self, $ppParams);
829 $primaryParticipantCount = self::getParticipantCount($self, $ppParams);
830
831 //get price set fields errors in.
832 $errors = array_merge($errors, CRM_Utils_Array::value(0, $priceSetErrors, array()));
833
834 $totalParticipants = $primaryParticipantCount;
835 if (CRM_Utils_Array::value('additional_participants', $fields)) {
836 $totalParticipants += $fields['additional_participants'];
837 }
838
839 if (!CRM_Utils_Array::value('bypass_payment', $fields) &&
840 !$self->_allowConfirmation &&
841 is_numeric($self->_availableRegistrations) &&
842 $self->_availableRegistrations < $totalParticipants
843 ) {
844 $errors['_qf_default'] = ts("Only %1 Registrations available.", array(1 => $self->_availableRegistrations));
845 }
846
847 $lineItem = array();
848 CRM_Price_BAO_Set::processAmount($self->_values['fee'], $fields, $lineItem);
849 if ($fields['amount'] < 0) {
850 $errors['_qf_default'] = ts('Event Fee(s) can not be less than zero. Please select the options accordingly');
851 }
852 }
853
854 if ($self->_values['event']['is_monetary']) {
855 if (is_array($self->_paymentProcessor)) {
856 $payment = CRM_Core_Payment::singleton($self->_mode, $self->_paymentProcessor, $this);
857 $error = $payment->checkConfig($self->_mode);
858 if ($error) {
859 $errors['_qf_default'] = $error;
860 }
861 }
862 // return if this is express mode
863 $config = CRM_Core_Config::singleton();
864 if ($self->_paymentProcessor['billing_mode'] & CRM_Core_Payment::BILLING_MODE_BUTTON) {
865 if (CRM_Utils_Array::value($self->_expressButtonName . '_x', $fields) ||
866 CRM_Utils_Array::value($self->_expressButtonName . '_y', $fields) ||
867 CRM_Utils_Array::value($self->_expressButtonName, $fields)
868 ) {
869 return empty($errors) ? TRUE : $errors;
870 }
871 }
872
873 $isZeroAmount = $skipPayementValidation = FALSE;
874 if (CRM_Utils_Array::value('priceSetId', $fields)) {
875 if (CRM_Utils_Array::value('amount', $fields) == 0) {
876 $isZeroAmount = TRUE;
877 }
878 }
879 elseif (CRM_Utils_Array::value('amount', $fields) &&
880 (isset($self->_values['discount'][$fields['amount']])
881 && CRM_Utils_Array::value('value', $self->_values['discount'][$fields['amount']]) == 0
882 )
883 ) {
884 $isZeroAmount = TRUE;
885 }
886 elseif (CRM_Utils_Array::value('amount', $fields) &&
887 (isset($self->_values['fee'][$fields['amount']])
888 && CRM_Utils_Array::value('value', $self->_values['fee'][$fields['amount']]) == 0
889 )
890 ) {
891 $isZeroAmount = TRUE;
892 }
893
894 if ($isZeroAmount && !($self->_forcePayement && CRM_Utils_Array::value('additional_participants', $fields))) {
895 $skipPayementValidation = TRUE;
896 }
897
898 // also return if paylater mode or zero fees for valid members
899 if (CRM_Utils_Array::value('is_pay_later', $fields) ||
900 CRM_Utils_Array::value('bypass_payment', $fields) ||
901 $skipPayementValidation ||
902 (!$self->_allowConfirmation && ($self->_requireApproval || $self->_allowWaitlist))
903 ) {
904 return empty($errors) ? TRUE : $errors;
905 }
906 if (property_exists($self, '_paymentFields') && !empty($self->_paymentFields )) {
907 foreach ($self->_paymentFields as $name => $fld) {
908 if ($fld['is_required'] &&
909 CRM_Utils_System::isNull(CRM_Utils_Array::value($name, $fields))
910 ) {
911 $errors[$name] = ts('%1 is a required field.', array(1 => $fld['title']));
912 }
913 }
914 }
915 }
916 // make sure that credit card number and cvv are valid
917 if (CRM_Utils_Array::value('credit_card_type', $fields)) {
918 if (CRM_Utils_Array::value('credit_card_number', $fields) &&
919 !CRM_Utils_Rule::creditCardNumber($fields['credit_card_number'], $fields['credit_card_type'])
920 ) {
921 $errors['credit_card_number'] = ts('Please enter a valid Credit Card Number');
922 }
923
924 if (CRM_Utils_Array::value('cvv2', $fields) &&
925 !CRM_Utils_Rule::cvv($fields['cvv2'], $fields['credit_card_type'])
926 ) {
927 $errors['cvv2'] = ts('Please enter a valid Credit Card Verification Number');
928 }
929 }
930 foreach (CRM_Contact_BAO_Contact::$_greetingTypes as $greeting) {
931 if ($greetingType = CRM_Utils_Array::value($greeting, $fields)) {
932 $customizedValue = CRM_Core_OptionGroup::getValue($greeting, 'Customized', 'name');
933 if ($customizedValue == $greetingType && empty($fields[$greeting . '_custom'])) {
934 $errors[$customizedGreeting] = ts('Custom %1 is a required field if %1 is of type Customized.',
935 array(1 => ucwords(str_replace('_', ' ', $greeting)))
936 );
937 }
938 }
939 }
940 return empty($errors) ? TRUE : $errors;
941 }
942
943 /**
944 * Check if profiles are complete when event registration occurs(CRM-9587)
945 *
946 */
947 static function checkProfileComplete($fields, &$errors, $eventId) {
948 $email = '';
949 foreach ($fields as $fieldname => $fieldvalue) {
950 if (substr($fieldname, 0, 6) == 'email-' && $fieldvalue) {
951 $email = $fieldvalue;
952 }
953 }
954
955 if (!$email && !(CRM_Utils_Array::value('first_name', $fields) &&
956 CRM_Utils_Array::value('last_name', $fields)
957 )) {
958 $defaults = $params = array('id' => $eventId);
959 CRM_Event_BAO_Event::retrieve($params, $defaults);
960 $message = ts("Mandatory fields (first name and last name, OR email address) are missing from this form.");
961 $errors['_qf_default'] = $message;
962 }
963 }
964
965 /**
966 * Function to process the form
967 *
968 * @access public
969 *
970 * @return None
971 */
972 public function postProcess() {
973 // get the submitted form values.
974 $params = $this->controller->exportValues($this->_name);
975
976 //set as Primary participant
977 $params['is_primary'] = 1;
978
979 if ($this->_values['event']['is_pay_later'] && !array_key_exists('hidden_processor', $params)) {
980 $params['is_pay_later'] = 1;
981 }
982 else {
983 $params['is_pay_later'] = 0;
984 }
985
986 $this->set('is_pay_later', $params['is_pay_later']);
987
988 // assign pay later stuff
989 $this->_params['is_pay_later'] = CRM_Utils_Array::value('is_pay_later', $params, FALSE);
990 $this->assign('is_pay_later', $params['is_pay_later']);
991 if ($params['is_pay_later']) {
992 $this->assign('pay_later_text', $this->_values['event']['pay_later_text']);
993 $this->assign('pay_later_receipt', $this->_values['event']['pay_later_receipt']);
994 }
6a488035 995
168e792f
DL
996 if (!$this->_allowConfirmation) {
997 // check if the participant is already registered
998 if (!$this->_skipDupeRegistrationCheck) {
999 $params['contact_id'] = self::checkRegistration($params, $this, FALSE, TRUE, TRUE);
1000 }
1001 }
1002
6a488035
TO
1003 if (CRM_Utils_Array::value('image_URL', $params)) {
1004 CRM_Contact_BAO_Contact::processImageParams($params);
1005 }
1006
1007 //carry campaign to partcipants.
1008 if (array_key_exists('participant_campaign_id', $params)) {
1009 $params['campaign_id'] = $params['participant_campaign_id'];
1010 }
1011 else {
1012 $params['campaign_id'] = CRM_Utils_Array::value('campaign_id', $this->_values['event']);
1013 }
1014
1015 //hack to allow group to register w/ waiting
1016 $primaryParticipantCount = self::getParticipantCount($this, $params);
1017
1018 $totalParticipants = $primaryParticipantCount;
1019 if (CRM_Utils_Array::value('additional_participants', $params)) {
1020 $totalParticipants += $params['additional_participants'];
1021 }
1022 if (!$this->_allowConfirmation &&
1023 CRM_Utils_Array::value('bypass_payment', $params) &&
1024 is_numeric($this->_availableRegistrations) &&
1025 $totalParticipants > $this->_availableRegistrations
1026 ) {
1027 $this->_allowWaitlist = TRUE;
1028 $this->set('allowWaitlist', TRUE);
1029 }
1030
1031 //carry participant id if pre-registered.
1032 if ($this->_allowConfirmation && $this->_participantId) {
1033 $params['participant_id'] = $this->_participantId;
1034 }
1035
1036 $params['defaultRole'] = 1;
1037 if (array_key_exists('participant_role', $params)) {
1038 $params['participant_role_id'] = $params['participant_role'];
1039 }
1040
1041 if (array_key_exists('participant_role_id', $params)) {
1042 $params['defaultRole'] = 0;
1043 }
1044 if (!CRM_Utils_Array::value('participant_role_id', $params) &&
1045 $this->_values['event']['default_role_id']
1046 ) {
1047 $params['participant_role_id'] = $this->_values['event']['default_role_id'];
1048 }
1049
1050 $config = CRM_Core_Config::singleton();
1051 $params['currencyID'] = $config->defaultCurrency;
1052
1053 if ($this->_values['event']['is_monetary']) {
1054 // we first reset the confirm page so it accepts new values
1055 $this->controller->resetPage('Confirm');
1056
1057 //added for discount
1058 $discountId = CRM_Core_BAO_Discount::findSet($this->_eventId, 'civicrm_event');
1059
1060 if (!empty($this->_values['discount'][$discountId])) {
1061 $params['discount_id'] = $discountId;
1062 $params['amount_level'] = $this->_values['discount'][$discountId][$params['amount']]['label'];
1063
1064 $params['amount'] = $this->_values['discount'][$discountId][$params['amount']]['value'];
1065 }
1066 elseif (empty($params['priceSetId'])) {
1067 $params['amount_level'] = $this->_values['fee'][$params['amount']]['label'];
1068 $params['amount'] = $this->_values['fee'][$params['amount']]['value'];
1069 }
1070 else {
1071 $lineItem = array();
1072 CRM_Price_BAO_Set::processAmount($this->_values['fee'], $params, $lineItem);
1073 $this->set('lineItem', array($lineItem));
1074 $this->set('lineItemParticipantsCount', array($primaryParticipantCount));
1075 }
1076
1077 $this->set('amount', $params['amount']);
1078 $this->set('amount_level', $params['amount_level']);
1079
1080 // generate and set an invoiceID for this transaction
1081 $invoiceID = md5(uniqid(rand(), TRUE));
1082 $this->set('invoiceID', $invoiceID);
1083
1084 if (is_array($this->_paymentProcessor)) {
1085 $payment = CRM_Core_Payment::singleton($this->_mode, $this->_paymentProcessor, $this);
1086 }
1087 // default mode is direct
1088 $this->set('contributeMode', 'direct');
1089
1090 if (isset($params["state_province_id-{$this->_bltID}"]) &&
1091 $params["state_province_id-{$this->_bltID}"]
1092 ) {
1093 $params["state_province-{$this->_bltID}"] = CRM_Core_PseudoConstant::stateProvinceAbbreviation($params["state_province_id-{$this->_bltID}"]);
1094 }
1095
1096 if (isset($params["country_id-{$this->_bltID}"]) &&
1097 $params["country_id-{$this->_bltID}"]
1098 ) {
1099 $params["country-{$this->_bltID}"] = CRM_Core_PseudoConstant::countryIsoCode($params["country_id-{$this->_bltID}"]);
1100 }
1101 if (isset($params['credit_card_exp_date'])) {
1102 $params['year'] = CRM_Core_Payment_Form::getCreditCardExpirationYear($params);
1103 $params['month'] = CRM_Core_Payment_Form::getCreditCardExpirationMonth($params);
1104 }
1105 if ($this->_values['event']['is_monetary']) {
1106 $params['ip_address'] = CRM_Utils_System::ipAddress();
1107 $params['currencyID'] = $config->defaultCurrency;
1108 $params['payment_action'] = 'Sale';
1109 $params['invoiceID'] = $invoiceID;
1110 }
1111
1112 $this->_params = array();
1113 $this->_params[] = $params;
1114 $this->set('params', $this->_params);
1115
1116 if ($this->_paymentProcessor['billing_mode'] & CRM_Core_Payment::BILLING_MODE_BUTTON) {
1117 //get the button name
1118 $buttonName = $this->controller->getButtonName();
1119 if (in_array($buttonName,
1120 array(
1121 $this->_expressButtonName,
1122 $this->_expressButtonName . '_x',
1123 $this->_expressButtonName . '_y',
1124 )
1125 ) &&
1126 !CRM_Utils_Array::value('is_pay_later', $params) &&
1127 !$this->_allowWaitlist &&
1128 !$this->_requireApproval
1129 ) {
1130 $this->set('contributeMode', 'express');
1131
1132 // Send Event Name & Id in Params
1133 $params['eventName'] = $this->_values['event']['title'];
1134 $params['eventId'] = $this->_values['event']['id'];
1135
1136 $params['cancelURL'] = CRM_Utils_System::url('civicrm/event/register',
1137 "_qf_Register_display=1&qfKey={$this->controller->_key}",
1138 TRUE, NULL, FALSE
1139 );
1140 if (CRM_Utils_Array::value('additional_participants', $params, FALSE)) {
1141 $urlArgs = "_qf_Participant_1_display=1&rfp=1&qfKey={$this->controller->_key}";
1142 }
1143 else {
1144 $urlArgs = "_qf_Confirm_display=1&rfp=1&qfKey={$this->controller->_key}";
1145 }
1146 $params['returnURL'] = CRM_Utils_System::url('civicrm/event/register',
1147 $urlArgs,
1148 TRUE, NULL, FALSE
1149 );
1150 $params['invoiceID'] = $invoiceID;
1151
1152 //default action is Sale
1153 $params['payment_action'] = 'Sale';
1154
1155 $token = $payment->setExpressCheckout($params);
1156 if (is_a($token, 'CRM_Core_Error')) {
1157 CRM_Core_Error::displaySessionError($token);
1158 CRM_Utils_System::redirect($params['cancelURL']);
1159 }
1160
1161 $this->set('token', $token);
1162
1163 $paymentURL = $this->_paymentProcessor['url_site'] . "/cgi-bin/webscr?cmd=_express-checkout&token=$token";
1164
1165 CRM_Utils_System::redirect($paymentURL);
1166 }
1167 }
1168 elseif ($this->_paymentProcessor['billing_mode'] & CRM_Core_Payment::BILLING_MODE_NOTIFY) {
1169 $this->set('contributeMode', 'notify');
1170 }
1171 }
1172 else {
1173 $session = CRM_Core_Session::singleton();
1174 $params['description'] = ts('Online Event Registration') . ' ' . $this->_values['event']['title'];
1175
1176 $this->_params = array();
1177 $this->_params[] = $params;
1178 $this->set('params', $this->_params);
1179
1180 if (!CRM_Utils_Array::value('additional_participants', $params)) {
1181 self::processRegistration($this->_params);
1182 }
1183 }
1184
1185 // If registering > 1 participant, give status message
1186 if (CRM_Utils_Array::value('additional_participants', $params, FALSE)) {
1187 $statusMsg = ts('Registration information for participant 1 has been saved.');
1188 CRM_Core_Session::setStatus($statusMsg, ts('Saved'), 'success');
1189 }
1190 }
1191 //end of function
1192
1193 /*
168e792f 1194 * Function to process Registration of free event
6a488035 1195 *
168e792f
DL
1196 * @param array $param Form valuess
1197 * @param int contactID
6a488035 1198 *
168e792f
DL
1199 * @return None
1200 * access public
6a488035
TO
1201 *
1202 */
1203 public function processRegistration($params, $contactID = NULL) {
1204 $session = CRM_Core_Session::singleton();
1205 $this->_participantInfo = array();
1206
1207 // CRM-4320, lets build array of cancelled additional participant ids
1208 // those are drop or skip by primary at the time of confirmation.
1209 // get all in and then unset those are confirmed.
1210 $cancelledIds = $this->_additionalParticipantIds;
1211
1212 $participantCount = array();
1213 foreach ($params as $participantNum => $record) {
1214 if ($record == 'skip') {
1215 $participantCount[$participantNum] = 'skip';
1216 }
1217 elseif ($participantNum) {
1218 $participantCount[$participantNum] = 'participant';
1219 }
1220 }
1221
1222 $registerByID = NULL;
1223 foreach ($params as $key => $value) {
1224 if ($value != 'skip') {
1225 $fields = NULL;
1226
1227 // setting register by Id and unset contactId.
1228 if (!CRM_Utils_Array::value('is_primary', $value)) {
1229 $contactID = NULL;
1230 $registerByID = $this->get('registerByID');
1231 if ($registerByID) {
1232 $value['registered_by_id'] = $registerByID;
1233 }
1234 // get an email if one exists for the participant
1235 $participantEmail = '';
1236 foreach (array_keys($value) as $valueName) {
1237 if (substr($valueName, 0, 6) == 'email-') {
1238 $participantEmail = $value[$valueName];
1239 }
1240 }
1241 if ($participantEmail) {
1242 $this->_participantInfo[] = $participantEmail;
1243 }
1244 else {
1245 $this->_participantInfo[] = $value['first_name'] . ' ' . $value['last_name'];
1246 }
1247 }
1248 elseif (CRM_Utils_Array::value('contact_id', $value)) {
1249 $contactID = $value['contact_id'];
1250 }
1251 else {
1252 $contactID = parent::getContactID();
1253 }
1254
1255 CRM_Event_Form_Registration_Confirm::fixLocationFields($value, $fields);
1256 //for free event or additional participant, dont create billing email address.
1257 if (!CRM_Utils_Array::value('is_primary', $value) || !$this->_values['event']['is_monetary']) {
1258 unset($value["email-{$this->_bltID}"]);
1259 }
1260
1261 $contactID = CRM_Event_Form_Registration_Confirm::updateContactFields($contactID, $value, $fields);
1262
1263 // lets store the contactID in the session
1264 // we dont store in userID in case the user is doing multiple
1265 // transactions etc
1266 // for things like tell a friend
1267 if (!parent::getContactID() && CRM_Utils_Array::value('is_primary', $value)) {
1268 $session->set('transaction.userID', $contactID);
1269 }
1270
1271 //lets get the status if require approval or waiting.
1272
1273 $waitingStatuses = CRM_Event_PseudoConstant::participantStatus(NULL, "class = 'Waiting'");
1274 if ($this->_allowWaitlist && !$this->_allowConfirmation) {
1275 $value['participant_status_id'] = $value['participant_status'] = array_search('On waitlist', $waitingStatuses);
1276 }
1277 elseif ($this->_requireApproval && !$this->_allowConfirmation) {
1278 $value['participant_status_id'] = $value['participant_status'] = array_search('Awaiting approval', $waitingStatuses);
1279 }
1280
1281 $this->set('value', $value);
1282 $this->confirmPostProcess($contactID, NULL, NULL);
1283
1284 //lets get additional participant id to cancel.
1285 if ($this->_allowConfirmation && is_array($cancelledIds)) {
1286 $additonalId = CRM_Utils_Array::value('participant_id', $value);
1287 if ($additonalId && $key = array_search($additonalId, $cancelledIds)) {
1288 unset($cancelledIds[$key]);
1289 }
1290 }
1291 }
1292 }
1293
1294 // update status and send mail to cancelled additonal participants, CRM-4320
1295 if ($this->_allowConfirmation && is_array($cancelledIds) && !empty($cancelledIds)) {
1296 $cancelledId = array_search('Cancelled',
1297 CRM_Event_PseudoConstant::participantStatus(NULL, "class = 'Negative'")
1298 );
1299 CRM_Event_BAO_Participant::transitionParticipants($cancelledIds, $cancelledId);
1300 }
1301
1302 //set information about additional participants if exists
1303 if (count($this->_participantInfo)) {
1304 $this->set('participantInfo', $this->_participantInfo);
1305 }
1306
1307 //send mail Confirmation/Receipt
1308 if ($this->_contributeMode != 'checkout' ||
1309 $this->_contributeMode != 'notify'
1310 ) {
1311 $isTest = FALSE;
1312 if ($this->_action & CRM_Core_Action::PREVIEW) {
1313 $isTest = TRUE;
1314 }
1315
1316 //handle if no additional participant.
1317 if (!$registerByID) {
1318 $registerByID = $this->get('registerByID');
1319 }
1320 $primaryContactId = $this->get('primaryContactId');
1321
1322 //build an array of custom profile and assigning it to template.
1323 $additionalIDs = CRM_Event_BAO_Event::buildCustomProfile($registerByID, NULL,
1324 $primaryContactId, $isTest, TRUE
1325 );
1326
1327 //lets carry all paticipant params w/ values.
1328 foreach ($additionalIDs as $participantID => $contactId) {
1329 $participantNum = NULL;
1330 if ($participantID == $registerByID) {
1331 $participantNum = 0;
1332 }
1333 else {
1334 if ($participantNum = array_search('participant', $participantCount)) {
1335 unset($participantCount[$participantNum]);
1336 }
1337 }
1338
1339 if ($participantNum === NULL) {
1340 break;
1341 }
1342
1343 //carry the participant submitted values.
1344 $this->_values['params'][$participantID] = $params[$participantNum];
1345 }
1346
1347 //lets send mails to all with meanigful text, CRM-4320.
1348 $this->assign('isOnWaitlist', $this->_allowWaitlist);
1349 $this->assign('isRequireApproval', $this->_requireApproval);
1350
1351 foreach ($additionalIDs as $participantID => $contactId) {
1352 if ($participantID == $registerByID) {
1353 //set as Primary Participant
1354 $this->assign('isPrimary', 1);
1355
1356 $customProfile = CRM_Event_BAO_Event::buildCustomProfile($participantID, $this->_values, NULL, $isTest);
1357
1358 if (count($customProfile)) {
1359 $this->assign('customProfile', $customProfile);
1360 $this->set('customProfile', $customProfile);
1361 }
1362 }
1363 else {
1364 $this->assign('isPrimary', 0);
1365 $this->assign('customProfile', NULL);
1366 }
1367
1368 //send Confirmation mail to Primary & additional Participants if exists
1369 CRM_Event_BAO_Event::sendMail($contactId, $this->_values, $participantID, $isTest);
1370 }
1371 }
1372 }
1373
1374 /**
1375 * Method to check if the user is already registered for the event
1376 * and if result found redirect to the event info page
1377 *
1378 * @param array $fields the input form values(anonymous user)
1379 * @param array $self event data
168e792f
DL
1380 * @param boolean $isAdditional treat isAdditional participants a bit differently
1381 * @param boolean $returnContactId just find and return the contactID match to use
1382 * @param boolean $useDedupeRules force usage of dedupe rules
6a488035
TO
1383 *
1384 * @return void
1385 * @access public
1386 */
168e792f 1387 function checkRegistration($fields, &$self, $isAdditional = FALSE, $returnContactId = FALSE, $useDedupeRules = FALSE) {
6a488035
TO
1388 // CRM-3907, skip check for preview registrations
1389 // CRM-4320 participant need to walk wizard
1390 if (!$returnContactId &&
1391 ($self->_mode == 'test' || $self->_allowConfirmation)
1392 ) {
1393 return FALSE;
1394 }
1395
1396 $contactID = NULL;
1397 $session = CRM_Core_Session::singleton();
1398 if (!$isAdditional) {
1399 $contactID = parent::getContactID();
1400 }
1401
1402 if (!$contactID &&
1403 is_array($fields) &&
1404 !empty($fields)
1405 ) {
1406
1407 //CRM-6996
1408 //as we are allowing w/ same email address,
1409 //lets check w/ other contact params.
1410 if ($self->_values['event']['allow_same_participant_emails']) {
1411 $params = $fields;
1412 $level = ($isAdditional) ? 'Supervised' : 'Unsupervised';
1413
1414 $dedupeParams = CRM_Dedupe_Finder::formatParams($params, 'Individual');
1415
1416 // disable permission based on cache since event registration is public page/feature.
1417 $dedupeParams['check_permission'] = FALSE;
1418 $ids = CRM_Dedupe_Finder::dupesByParams($dedupeParams, 'Individual', $level);
1419 $contactID = CRM_Utils_Array::value(0, $ids);
1420 }
1421 else {
1422 foreach ($fields as $fieldname => $fieldvalue) {
1423 if (substr($fieldname, 0, 6) == 'email-') {
1424 $emailString = trim($fieldvalue);
1425 if (!empty($emailString)) {
1426 $match = CRM_Contact_BAO_Contact::matchContactOnEmail($emailString, 'Individual');
1427 if (!empty($match)) {
1428 $contactID = $match->contact_id;
1429 }
1430 }
1431 }
1432 }
1433 }
1434 }
1435
1436 if ($returnContactId) {
1437 // CRM-7377
1438 // return contactID if contact already exists
1439 return $contactID;
1440 }
1441
1442 if ($contactID) {
1443 $participant = new CRM_Event_BAO_Participant();
1444 $participant->contact_id = $contactID;
1445 $participant->event_id = $self->_values['event']['id'];
1446 if (!empty($fields['participant_role']) && is_numeric($fields['participant_role'])) {
1447 $participant->role_id = $fields['participant_role'];
1448 }
1449 else {
1450 $participant->role_id = $self->_values['event']['default_role_id'];
1451 }
1452 $participant->is_test = 0;
1453 $participant->find();
1454 $statusTypes = CRM_Event_PseudoConstant::participantStatus(NULL, 'is_counted = 1');
1455 while ($participant->fetch()) {
1456 if (array_key_exists($participant->status_id, $statusTypes)) {
1457 if (!$isAdditional && !$self->_values['event']['allow_same_participant_emails']) {
1458 $registerUrl = CRM_Utils_System::url('civicrm/event/register',
1459 "reset=1&id={$self->_values['event']['id']}&cid=0"
1460 );
1461 if ($self->_pcpId) {
1462 $registerUrl .= '&pcpId=' . $self->_pcpId;
1463 }
1464
1465 $status = ts("It looks like you are already registered for this event. If you want to change your registration, or you feel that you've gotten this message in error, please contact the site administrator.") . ' ' . ts('You can also <a href="%1">register another participant</a>.', array(1 => $registerUrl));
1466 $session->setStatus($status, ts('Oops.'), 'alert');
1467 $url = CRM_Utils_System::url('civicrm/event/info',
1468 "reset=1&id={$self->_values['event']['id']}&noFullMsg=true"
1469 );
1470 if ($self->_action & CRM_Core_Action::PREVIEW) {
1471 $url .= '&action=preview';
1472 }
1473
1474 if ($self->_pcpId) {
1475 $url .= '&pcpId=' . $self->_pcpId;
1476 }
1477
1478 CRM_Utils_System::redirect($url);
1479 }
1480
1481 if ($isAdditional) {
1482 $status = ts("It looks like this participant is already registered for this event. If you want to change your registration, or you feel that you've gotten this message in error, please contact the site administrator.");
1483 $session->setStatus($status, ts('Oops.'), 'alert');
1484 return $participant->id;
1485 }
1486 }
1487 }
1488 }
1489 }
1490}
1491