Merge pull request #21049 from colemanw/searchDisplaysRef
[civicrm-core.git] / CRM / Member / Form.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 5 | |
bc77d7c0
TO
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
6a488035 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
6a488035
TO
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
16 */
17
18/**
19 * Base class for offline membership / membership type / membership renewal and membership status forms
20 *
21 */
cc984198 22class CRM_Member_Form extends CRM_Contribute_Form_AbstractEditPayment {
6a488035 23
59c798c9 24 use CRM_Core_Form_EntityFormTrait;
6a488035 25
a6513ad5
EM
26 /**
27 * Membership Type ID
971e129b 28 * @var int
a6513ad5
EM
29 */
30 protected $_memType;
31
32 /**
33 * Array of from email ids
34 * @var array
35 */
be2fb01f 36 protected $_fromEmails = [];
a6513ad5 37
ab30e033
EM
38 /**
39 * Details of all enabled membership types.
40 *
41 * @var array
42 */
be2fb01f 43 protected $allMembershipTypeDetails = [];
ab30e033
EM
44
45 /**
46 * Array of membership type IDs and whether they permit autorenewal.
47 *
48 * @var array
49 */
be2fb01f 50 protected $membershipTypeRenewalStatus = [];
ab30e033 51
e4a6290d 52 /**
53 * Price set ID configured for the form.
54 *
55 * @var int
56 */
57 public $_priceSetId;
58
59 /**
60 * Price set details as an array.
61 *
62 * @var array
63 */
64 public $_priceSet;
65
a817ccdd 66 /**
67 * The order being processed.
68 *
69 * @var \CRM_Financial_BAO_Order
70 */
71 protected $order;
72
20df462f 73 /**
74 * This string is the used for passing to the buildAmount hook.
75 *
76 * @var string
77 */
78 protected $formContext = 'membership';
79
80 /**
81 * @return string
82 */
83 public function getFormContext(): string {
84 return $this->formContext;
85 }
86
6452294d
MW
87 /**
88 * Explicitly declare the entity api name.
89 */
90 public function getDefaultEntity() {
91 return 'Membership';
92 }
93
6d5b9c63 94 /**
95 * @var array
96 */
97 protected $statusMessage = [];
98
99 /**
100 * Add to the status message.
101 *
102 * @param $message
103 */
104 protected function addStatusMessage($message) {
105 $this->statusMessage[] = $message;
106 }
107
108 /**
109 * Get the status message.
110 *
111 * @return string
112 */
113 protected function getStatusMessage() {
114 return implode(' ', $this->statusMessage);
115 }
116
09108d7d 117 /**
118 * Values submitted to the form, processed along the way.
119 *
120 * @var array
121 */
be2fb01f 122 protected $_params = [];
09108d7d 123
59c798c9 124 /**
125 * Fields for the entity to be assigned to the template.
126 *
127 * Fields may have keys
128 * - name (required to show in tpl from the array)
129 * - description (optional, will appear below the field)
130 * - not-auto-addable - this class will not attempt to add the field using addField.
131 * (this will be automatically set if the field does not have html in it's metadata
132 * or is not a core field on the form's entity).
133 * - help (option) add help to the field - e.g ['id' => 'id-source', 'file' => 'CRM/Contact/Form/Contact']]
134 * - template - use a field specific template to render this field
135 * - required
136 * - is_freeze (field should be frozen).
137 *
138 * @var array
139 */
140 protected $entityFields = [];
141
00be9182 142 public function preProcess() {
42e8b05c
EM
143 // Check for edit permission.
144 if (!CRM_Core_Permission::checkActionPermission('CiviMember', $this->_action)) {
beb414cc 145 CRM_Core_Error::statusBounce(ts('You do not have permission to access this page.'));
42e8b05c 146 }
6a38708b 147 if (!CRM_Member_BAO_Membership::statusAvailabilty()) {
148 // all possible statuses are disabled - redirect back to contact form
149 CRM_Core_Error::statusBounce(ts('There are no configured membership statuses. You cannot add this membership until your membership statuses are correctly configured'));
150 }
151
42e8b05c 152 parent::preProcess();
be2fb01f 153 $params = [];
edc80cda 154 $params['context'] = CRM_Utils_Request::retrieve('context', 'Alphanumeric', $this, FALSE, 'membership');
7865d848 155 $params['id'] = CRM_Utils_Request::retrieve('id', 'Positive', $this);
19046166 156 $params['mode'] = CRM_Utils_Request::retrieve('mode', 'Alphanumeric', $this);
7865d848
EM
157
158 $this->setContextVariables($params);
a6513ad5
EM
159
160 $this->assign('context', $this->_context);
161 $this->assign('membershipMode', $this->_mode);
be2fb01f 162 $this->allMembershipTypeDetails = CRM_Member_BAO_Membership::buildMembershipTypeValues($this, [], TRUE);
ab30e033
EM
163 foreach ($this->allMembershipTypeDetails as $index => $membershipType) {
164 if ($membershipType['auto_renew']) {
165 $this->_recurMembershipTypes[$index] = $membershipType;
166 $this->membershipTypeRenewalStatus[$index] = $membershipType['auto_renew'];
167 }
168 }
6a488035
TO
169 }
170
171 /**
c490a46a 172 * Set default values for the form. MobileProvider that in edit/view mode
6a488035
TO
173 * the default values are retrieved from the database
174 *
6a488035 175 *
a6c01b45
CW
176 * @return array
177 * defaults
6a488035 178 */
00be9182 179 public function setDefaultValues() {
be2fb01f 180 $defaults = [];
a6513ad5 181 if (isset($this->_id)) {
be2fb01f 182 $params = ['id' => $this->_id];
a6513ad5 183 CRM_Member_BAO_Membership::retrieve($params, $defaults);
42e8b05c 184 if (isset($defaults['minimum_fee'])) {
48845185 185 $defaults['minimum_fee'] = CRM_Utils_Money::formatLocaleNumericRoundedForDefaultCurrency($defaults['minimum_fee']);
42e8b05c 186 }
6a488035 187
42e8b05c
EM
188 if (isset($defaults['status'])) {
189 $this->assign('membershipStatus', $defaults['status']);
190 }
e136f704
O
191
192 if (!empty($defaults['is_override'])) {
193 $defaults['is_override'] = CRM_Member_StatusOverrideTypes::PERMANENT;
194 }
195 if (!empty($defaults['status_override_end_date'])) {
196 $defaults['is_override'] = CRM_Member_StatusOverrideTypes::UNTIL_DATE;
197 }
6a488035
TO
198 }
199
200 if ($this->_action & CRM_Core_Action::ADD) {
201 $defaults['is_active'] = 1;
202 }
203
204 if (isset($defaults['member_of_contact_id']) &&
205 $defaults['member_of_contact_id']
206 ) {
207 $defaults['member_org'] = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact',
208 $defaults['member_of_contact_id'], 'display_name'
209 );
210 }
f525ec1f 211 if (!empty($defaults['membership_type_id'])) {
212 $this->_memType = $defaults['membership_type_id'];
213 }
214 if (is_numeric($this->_memType)) {
be2fb01f 215 $defaults['membership_type_id'] = [];
f525ec1f 216 $defaults['membership_type_id'][0] = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_MembershipType',
217 $this->_memType,
218 'member_of_contact_id',
219 'id'
220 );
221 $defaults['membership_type_id'][1] = $this->_memType;
222 }
223 else {
224 $defaults['membership_type_id'] = $this->_memType;
225 }
6a488035
TO
226 return $defaults;
227 }
228
229 /**
fe482240 230 * Build the form object.
6a488035
TO
231 */
232 public function buildQuickForm() {
a6e29c95 233 $this->assignSalesTaxMetadataToTemplate();
4aa7d844 234
b15c60e1 235 $this->addPaymentProcessorSelect(TRUE, FALSE, TRUE);
0dc4ef42 236 CRM_Core_Payment_Form::buildPaymentForm($this, $this->_paymentProcessor, FALSE, TRUE, $this->getDefaultPaymentInstrumentId());
38f6574d 237 $this->assign('recurProcessor', json_encode($this->_recurPaymentProcessors));
4aa7d844
EM
238 // Build the form for auto renew. This is displayed when in credit card mode or update mode.
239 // The reason for showing it in update mode is not that clear.
4aa7d844 240 if ($this->_mode || ($this->_action & CRM_Core_Action::UPDATE)) {
ab30e033
EM
241 if (!empty($this->_recurPaymentProcessors)) {
242 $this->assign('allowAutoRenew', TRUE);
4aa7d844
EM
243 }
244
ab30e033 245 $autoRenewElement = $this->addElement('checkbox', 'auto_renew', ts('Membership renewed automatically'),
be2fb01f 246 NULL, ['onclick' => "showHideByValue('auto_renew','','send-receipt','table-row','radio',true); showHideNotice( );"]
ab30e033
EM
247 );
248 if ($this->_action & CRM_Core_Action::UPDATE) {
249 $autoRenewElement->freeze();
250 }
4aa7d844 251
4aa7d844
EM
252 $this->addElement('checkbox',
253 'auto_renew',
8c80f3f9 254 ts('Membership renewed automatically')
4aa7d844
EM
255 );
256
4aa7d844 257 }
ab30e033 258 $this->assign('autoRenewOptions', json_encode($this->membershipTypeRenewalStatus));
4aa7d844 259
6a488035 260 if ($this->_action & CRM_Core_Action::RENEW) {
be2fb01f
CW
261 $this->addButtons([
262 [
c5c263ca
AH
263 'type' => 'upload',
264 'name' => ts('Renew'),
265 'isDefault' => TRUE,
be2fb01f
CW
266 ],
267 [
c5c263ca
AH
268 'type' => 'cancel',
269 'name' => ts('Cancel'),
be2fb01f
CW
270 ],
271 ]);
6a488035
TO
272 }
273 elseif ($this->_action & CRM_Core_Action::DELETE) {
be2fb01f
CW
274 $this->addButtons([
275 [
c5c263ca
AH
276 'type' => 'next',
277 'name' => ts('Delete'),
278 'isDefault' => TRUE,
be2fb01f
CW
279 ],
280 [
c5c263ca
AH
281 'type' => 'cancel',
282 'name' => ts('Cancel'),
be2fb01f
CW
283 ],
284 ]);
6a488035
TO
285 }
286 else {
be2fb01f
CW
287 $this->addButtons([
288 [
c5c263ca
AH
289 'type' => 'upload',
290 'name' => ts('Save'),
291 'isDefault' => TRUE,
be2fb01f
CW
292 ],
293 [
c5c263ca
AH
294 'type' => 'upload',
295 'name' => ts('Save and New'),
296 'subName' => 'new',
be2fb01f
CW
297 ],
298 [
c5c263ca
AH
299 'type' => 'cancel',
300 'name' => ts('Cancel'),
be2fb01f
CW
301 ],
302 ]);
6a488035
TO
303 }
304 }
305
fb3082b2 306 /**
100fef9d 307 * Extract values from the contact create boxes on the form and assign appropriately to
6a488035
TO
308 *
309 * - $this->_contributorEmail,
310 * - $this->_memberEmail &
fb3082b2 311 * - $this->_contributionName
6a488035
TO
312 * - $this->_memberName
313 * - $this->_contactID (effectively memberContactId but changing might have spin-off effects)
314 * - $this->_contributorContactId - id of the contributor
315 * - $this->_receiptContactId
316 *
317 * If the member & contributor are the same then the values will be the same. But if different people paid
318 * then they weill differ
319 *
5a4f6742
CW
320 * @param array $formValues
321 * values from form. The important values we are looking for are.
4c7aa1f7
CW
322 * - contact_id
323 * - soft_credit_contact_id
6a488035 324 */
9b873358 325 public function storeContactFields($formValues) {
6a488035 326 // in a 'standalone form' (contact id not in the url) the contact will be in the form values
4c7aa1f7
CW
327 if (!empty($formValues['contact_id'])) {
328 $this->_contactID = $formValues['contact_id'];
6a488035
TO
329 }
330
a817ccdd 331 [$this->_memberDisplayName, $this->_memberEmail] = CRM_Contact_BAO_Contact_Location::getEmailDetails($this->_contactID);
23f0a3fd 332 $this->_contributorContactID = $this->getContributionContactID();
6a488035
TO
333 //CRM-10375 Where the payer differs to the member the payer should get the email.
334 // here we store details in order to do that
4c7aa1f7 335 if (!empty($formValues['soft_credit_contact_id'])) {
23f0a3fd 336 $this->_receiptContactId = $formValues['soft_credit_contact_id'];
a817ccdd 337 [$this->_contributorDisplayName, $this->_contributorEmail] = CRM_Contact_BAO_Contact_Location::getEmailDetails($this->_contributorContactID);
6a488035
TO
338 }
339 else {
23f0a3fd 340 $this->_receiptContactId = $this->_contactID;
6a488035
TO
341 $this->_contributorDisplayName = $this->_memberDisplayName;
342 $this->_contributorEmail = $this->_memberEmail;
343 }
344 }
96025800 345
23f0a3fd 346 /**
347 * Get the contact id for the contribution.
348 *
349 * @return int
350 */
351 protected function getContributionContactID(): int {
352 return (int) ($this->getSubmittedValue('soft_credit_contact_id') ?: $this->getSubmittedValue('contact_id'));
353 }
354
45a6ec43 355 /**
356 * Get the contact id for the contribution.
357 *
358 * @return int
359 */
360 protected function getMembershipContactID(): int {
361 // It's not clear that $this->_contactID *could* be set outside
362 // tests when contact_id is not submitted - so this fallback
363 // is precautionary in order to be similar to past behaviour.
364 return (int) ($this->getSubmittedValue('contact_id') ?: $this->_contactID);
365 }
366
0271af37 367 /**
368 * Set variables in a way that can be accessed from different places.
369 *
370 * This is part of refactoring for unit testability on the submit function.
371 *
372 * @param array $params
373 */
7865d848 374 protected function setContextVariables($params) {
be2fb01f 375 $variables = [
7865d848
EM
376 'action' => '_action',
377 'context' => '_context',
378 'id' => '_id',
379 'cid' => '_contactID',
380 'mode' => '_mode',
be2fb01f 381 ];
7865d848
EM
382 foreach ($variables as $paramKey => $classVar) {
383 if (isset($params[$paramKey]) && !isset($this->$classVar)) {
384 $this->$classVar = $params[$paramKey];
385 }
386 }
387
7865d848
EM
388 if ($this->_id) {
389 $this->_memType = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership', $this->_id, 'membership_type_id');
390 $this->_membershipIDs[] = $this->_id;
391 }
392 $this->_fromEmails = CRM_Core_BAO_Email::getFromEmail();
393 }
394
a70418a7
EM
395 /**
396 * Create a recurring contribution record.
397 *
c9696db9 398 * @param array $contributionRecurParams
a70418a7 399 *
97dda7c0 400 * @param int $membershipTypeID
a70418a7
EM
401 *
402 * @return array
403 * @throws \CiviCRM_API3_Exception
404 */
97dda7c0 405 protected function processRecurringContribution($contributionRecurParams, $membershipTypeID) {
a70418a7 406
be2fb01f 407 $mapping = [
a70418a7
EM
408 'frequency_interval' => 'duration_interval',
409 'frequency_unit' => 'duration_unit',
be2fb01f
CW
410 ];
411 $membershipType = civicrm_api3('MembershipType', 'getsingle', [
97dda7c0 412 'id' => $membershipTypeID,
a70418a7 413 'return' => $mapping,
be2fb01f 414 ]);
a70418a7 415
be2fb01f 416 $returnParams = ['is_recur' => TRUE];
a70418a7
EM
417 foreach ($mapping as $recurringFieldName => $membershipTypeFieldName) {
418 $contributionRecurParams[$recurringFieldName] = $membershipType[$membershipTypeFieldName];
14065266 419 $returnParams[$recurringFieldName] = $membershipType[$membershipTypeFieldName];
a70418a7
EM
420 }
421
422 $contributionRecur = civicrm_api3('ContributionRecur', 'create', $contributionRecurParams);
14065266 423 $returnParams['contributionRecurID'] = $contributionRecur['id'];
a70418a7
EM
424 return $returnParams;
425 }
426
ccb02c2d 427 /**
428 * Ensure price parameters are set.
429 *
430 * If they are not set it means a quick config option has been chosen so we
431 * fill them in here to make the two flows the same. They look like 'price_2' => 2 etc.
432 *
433 * @param array $formValues
434 */
435 protected function ensurePriceParamsAreSet(&$formValues) {
436 foreach ($formValues as $key => $value) {
ea09031a 437 if ((substr($key, 0, 6) == 'price_') && is_numeric(substr($key, 6))) {
ccb02c2d 438 return;
439 }
440 }
441 $priceFields = CRM_Member_BAO_Membership::setQuickConfigMembershipParameters(
442 $formValues['membership_type_id'][0],
443 $formValues['membership_type_id'][1],
430f2faf 444 CRM_Utils_Array::value('total_amount', $formValues),
ccb02c2d 445 $this->_priceSetId
446 );
447 $formValues = array_merge($formValues, $priceFields['price_fields']);
448 }
449
450 /**
451 * Get the details for the selected price set.
452 *
453 * @param array $params
454 * Parameters submitted to the form.
455 *
456 * @return array
457 */
cd595bef 458 protected function getPriceSetDetails(array $params): ?array {
9c1bc317 459 $priceSetID = $params['price_set_id'] ?? NULL;
ccb02c2d 460 if ($priceSetID) {
461 return CRM_Price_BAO_PriceSet::getSetDetail($priceSetID);
462 }
463 else {
464 $priceSet = CRM_Price_BAO_PriceSet::getDefaultPriceSet('membership');
465 $priceSet = reset($priceSet);
466 return CRM_Price_BAO_PriceSet::getSetDetail($priceSet['setID']);
467 }
468 }
469
470 /**
471 * Get the selected price set id.
472 *
473 * @param array $params
474 * Parameters submitted to the form.
475 *
476 * @return int
477 */
cd595bef 478 protected function getPriceSetID(array $params): int {
9c1bc317 479 $priceSetID = $params['price_set_id'] ?? NULL;
ccb02c2d 480 if (!$priceSetID) {
cd595bef 481 $priceSetDetails = $this->getPriceSetDetails($params);
7aa78908 482 return (int) key($priceSetDetails);
ccb02c2d 483 }
7aa78908 484 return (int) $priceSetID;
ccb02c2d 485 }
486
487 /**
488 * Store parameters relating to price sets.
489 *
490 * @param array $formValues
491 *
492 * @return array
812b2c0c 493 * @throws \API_Exception
ccb02c2d 494 */
cd595bef 495 protected function setPriceSetParameters(array $formValues): array {
a817ccdd 496 // process price set and get total amount and line items.
cd595bef 497 $this->_priceSetId = $this->getPriceSetID($formValues);
a817ccdd 498 $this->ensurePriceParamsAreSet($formValues);
cd595bef 499 $priceSetDetails = $this->getPriceSetDetails($formValues);
ccb02c2d 500 $this->_priceSet = $priceSetDetails[$this->_priceSetId];
a817ccdd 501 $this->order = new CRM_Financial_BAO_Order();
20df462f 502 $this->order->setForm($this);
812b2c0c
EM
503 $this->order->setPriceSelectionFromUnfilteredInput($formValues);
504 if (isset($formValues['total_amount'])) {
fc690477 505 $this->order->setOverrideTotalAmount((float) $formValues['total_amount']);
a817ccdd 506 }
507 $this->order->setOverrideFinancialTypeID((int) $formValues['financial_type_id']);
ccb02c2d 508 return $formValues;
509 }
510
09108d7d 511 /**
512 * Wrapper function for unit tests.
513 *
514 * @param array $formValues
515 */
23f0a3fd 516 public function testSubmit(array $formValues = []): void {
517 if (empty($formValues)) {
518 // If getForm is used these will be set - this is now
519 // preferred.
520 $formValues = $this->controller->exportValues($this->_name);
521 }
6aef1389 522 $this->exportedValues = $formValues;
18135422 523 $this->setContextVariables($formValues);
26e40b3e 524 $this->_memType = !empty($formValues['membership_type_id']) ? $formValues['membership_type_id'][1] : NULL;
09108d7d 525 $this->_params = $formValues;
526 $this->submit();
527 }
528
df04742c 529 /**
530 * Get order related params.
531 *
532 * In practice these are contribution params but later they cann be used with the Order api.
533 *
534 * @return array
535 *
536 * @throws \CiviCRM_API3_Exception
537 */
538 protected function getOrderParams(): array {
df04742c 539 return [
a817ccdd 540 'lineItems' => [$this->_priceSetId => $this->order->getLineItems()],
df04742c 541 // This is one of those weird & wonderful legacy params we aim to get rid of.
542 'processPriceSet' => TRUE,
a817ccdd 543 'tax_amount' => $this->order->getTotalTaxAmount(),
df04742c 544 ];
545 }
546
cd98958c 547 /**
548 * Get the currency in use.
549 *
550 * This just defaults to getting the default currency
551 * as other currencies are not supported on the membership
552 * forms at the moment.
553 *
554 * @param array $submittedValues
555 *
556 * @return string
557 */
558 public function getCurrency($submittedValues = []): string {
559 return CRM_Core_Config::singleton()->defaultCurrency;
560 }
561
c2b07971 562 /**
563 * Get the relevant payment instrument id.
564 *
565 * @return int
566 */
567 protected function getPaymentInstrumentID(): int {
568 return (int) $this->getSubmittedValue('payment_instrument_id') ?: $this->_paymentProcessor['object']->getPaymentInstrumentID();
569 }
570
6a488035 571}