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