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