Merge pull request #20063 from christianwach/lab-wp-93
[civicrm-core.git] / CRM / Member / Form.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
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 |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 *
14 * @package CRM
15 * @copyright CiviCRM LLC https://civicrm.org/licensing
16 */
17
18 /**
19 * Base class for offline membership / membership type / membership renewal and membership status forms
20 *
21 */
22 class CRM_Member_Form extends CRM_Contribute_Form_AbstractEditPayment {
23
24 use CRM_Core_Form_EntityFormTrait;
25
26 /**
27 * Membership Type ID
28 * @var int
29 */
30 protected $_memType;
31
32 /**
33 * Array of from email ids
34 * @var array
35 */
36 protected $_fromEmails = [];
37
38 /**
39 * Details of all enabled membership types.
40 *
41 * @var array
42 */
43 protected $allMembershipTypeDetails = [];
44
45 /**
46 * Array of membership type IDs and whether they permit autorenewal.
47 *
48 * @var array
49 */
50 protected $membershipTypeRenewalStatus = [];
51
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
66 /**
67 * The order being processed.
68 *
69 * @var \CRM_Financial_BAO_Order
70 */
71 protected $order;
72
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
87 /**
88 * Explicitly declare the entity api name.
89 */
90 public function getDefaultEntity() {
91 return 'Membership';
92 }
93
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
117 /**
118 * Values submitted to the form, processed along the way.
119 *
120 * @var array
121 */
122 protected $_params = [];
123
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
142 public function preProcess() {
143 // Check for edit permission.
144 if (!CRM_Core_Permission::checkActionPermission('CiviMember', $this->_action)) {
145 CRM_Core_Error::statusBounce(ts('You do not have permission to access this page.'));
146 }
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
152 parent::preProcess();
153 $params = [];
154 $params['context'] = CRM_Utils_Request::retrieve('context', 'Alphanumeric', $this, FALSE, 'membership');
155 $params['id'] = CRM_Utils_Request::retrieve('id', 'Positive', $this);
156 $params['mode'] = CRM_Utils_Request::retrieve('mode', 'Alphanumeric', $this);
157
158 $this->setContextVariables($params);
159
160 $this->assign('context', $this->_context);
161 $this->assign('membershipMode', $this->_mode);
162 $this->allMembershipTypeDetails = CRM_Member_BAO_Membership::buildMembershipTypeValues($this, [], TRUE);
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 }
169 }
170
171 /**
172 * Set default values for the form. MobileProvider that in edit/view mode
173 * the default values are retrieved from the database
174 *
175 *
176 * @return array
177 * defaults
178 */
179 public function setDefaultValues() {
180 $defaults = [];
181 if (isset($this->_id)) {
182 $params = ['id' => $this->_id];
183 CRM_Member_BAO_Membership::retrieve($params, $defaults);
184 if (isset($defaults['minimum_fee'])) {
185 $defaults['minimum_fee'] = CRM_Utils_Money::formatLocaleNumericRoundedForDefaultCurrency($defaults['minimum_fee']);
186 }
187
188 if (isset($defaults['status'])) {
189 $this->assign('membershipStatus', $defaults['status']);
190 }
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 }
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 }
211 if (!empty($defaults['membership_type_id'])) {
212 $this->_memType = $defaults['membership_type_id'];
213 }
214 if (is_numeric($this->_memType)) {
215 $defaults['membership_type_id'] = [];
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 }
226 return $defaults;
227 }
228
229 /**
230 * Build the form object.
231 */
232 public function buildQuickForm() {
233 $this->assignSalesTaxMetadataToTemplate();
234
235 $this->addPaymentProcessorSelect(TRUE, FALSE, TRUE);
236 CRM_Core_Payment_Form::buildPaymentForm($this, $this->_paymentProcessor, FALSE, TRUE, $this->getDefaultPaymentInstrumentId());
237 $this->assign('recurProcessor', json_encode($this->_recurPaymentProcessors));
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.
240 if ($this->_mode || ($this->_action & CRM_Core_Action::UPDATE)) {
241 if (!empty($this->_recurPaymentProcessors)) {
242 $this->assign('allowAutoRenew', TRUE);
243 }
244
245 $autoRenewElement = $this->addElement('checkbox', 'auto_renew', ts('Membership renewed automatically'),
246 NULL, ['onclick' => "showHideByValue('auto_renew','','send-receipt','table-row','radio',true); showHideNotice( );"]
247 );
248 if ($this->_action & CRM_Core_Action::UPDATE) {
249 $autoRenewElement->freeze();
250 }
251
252 $this->addElement('checkbox',
253 'auto_renew',
254 ts('Membership renewed automatically')
255 );
256
257 }
258 $this->assign('autoRenewOptions', json_encode($this->membershipTypeRenewalStatus));
259
260 if ($this->_action & CRM_Core_Action::RENEW) {
261 $this->addButtons([
262 [
263 'type' => 'upload',
264 'name' => ts('Renew'),
265 'isDefault' => TRUE,
266 ],
267 [
268 'type' => 'cancel',
269 'name' => ts('Cancel'),
270 ],
271 ]);
272 }
273 elseif ($this->_action & CRM_Core_Action::DELETE) {
274 $this->addButtons([
275 [
276 'type' => 'next',
277 'name' => ts('Delete'),
278 'isDefault' => TRUE,
279 ],
280 [
281 'type' => 'cancel',
282 'name' => ts('Cancel'),
283 ],
284 ]);
285 }
286 else {
287 $this->addButtons([
288 [
289 'type' => 'upload',
290 'name' => ts('Save'),
291 'isDefault' => TRUE,
292 ],
293 [
294 'type' => 'upload',
295 'name' => ts('Save and New'),
296 'subName' => 'new',
297 ],
298 [
299 'type' => 'cancel',
300 'name' => ts('Cancel'),
301 ],
302 ]);
303 }
304 }
305
306 /**
307 * Extract values from the contact create boxes on the form and assign appropriately to
308 *
309 * - $this->_contributorEmail,
310 * - $this->_memberEmail &
311 * - $this->_contributionName
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 *
320 * @param array $formValues
321 * values from form. The important values we are looking for are.
322 * - contact_id
323 * - soft_credit_contact_id
324 */
325 public function storeContactFields($formValues) {
326 // in a 'standalone form' (contact id not in the url) the contact will be in the form values
327 if (!empty($formValues['contact_id'])) {
328 $this->_contactID = $formValues['contact_id'];
329 }
330
331 [$this->_memberDisplayName, $this->_memberEmail] = CRM_Contact_BAO_Contact_Location::getEmailDetails($this->_contactID);
332 $this->_contributorContactID = $this->getContributionContactID();
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
335 if (!empty($formValues['soft_credit_contact_id'])) {
336 $this->_receiptContactId = $formValues['soft_credit_contact_id'];
337 [$this->_contributorDisplayName, $this->_contributorEmail] = CRM_Contact_BAO_Contact_Location::getEmailDetails($this->_contributorContactID);
338 }
339 else {
340 $this->_receiptContactId = $this->_contactID;
341 $this->_contributorDisplayName = $this->_memberDisplayName;
342 $this->_contributorEmail = $this->_memberEmail;
343 }
344 }
345
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
355 /**
356 * Set variables in a way that can be accessed from different places.
357 *
358 * This is part of refactoring for unit testability on the submit function.
359 *
360 * @param array $params
361 */
362 protected function setContextVariables($params) {
363 $variables = [
364 'action' => '_action',
365 'context' => '_context',
366 'id' => '_id',
367 'cid' => '_contactID',
368 'mode' => '_mode',
369 ];
370 foreach ($variables as $paramKey => $classVar) {
371 if (isset($params[$paramKey]) && !isset($this->$classVar)) {
372 $this->$classVar = $params[$paramKey];
373 }
374 }
375
376 if ($this->_id) {
377 $this->_memType = CRM_Core_DAO::getFieldValue('CRM_Member_DAO_Membership', $this->_id, 'membership_type_id');
378 $this->_membershipIDs[] = $this->_id;
379 }
380 $this->_fromEmails = CRM_Core_BAO_Email::getFromEmail();
381 }
382
383 /**
384 * Create a recurring contribution record.
385 *
386 * @param array $contributionRecurParams
387 *
388 * @param int $membershipTypeID
389 *
390 * @return array
391 * @throws \CiviCRM_API3_Exception
392 */
393 protected function processRecurringContribution($contributionRecurParams, $membershipTypeID) {
394
395 $mapping = [
396 'frequency_interval' => 'duration_interval',
397 'frequency_unit' => 'duration_unit',
398 ];
399 $membershipType = civicrm_api3('MembershipType', 'getsingle', [
400 'id' => $membershipTypeID,
401 'return' => $mapping,
402 ]);
403
404 $returnParams = ['is_recur' => TRUE];
405 foreach ($mapping as $recurringFieldName => $membershipTypeFieldName) {
406 $contributionRecurParams[$recurringFieldName] = $membershipType[$membershipTypeFieldName];
407 $returnParams[$recurringFieldName] = $membershipType[$membershipTypeFieldName];
408 }
409
410 $contributionRecur = civicrm_api3('ContributionRecur', 'create', $contributionRecurParams);
411 $returnParams['contributionRecurID'] = $contributionRecur['id'];
412 return $returnParams;
413 }
414
415 /**
416 * Ensure price parameters are set.
417 *
418 * If they are not set it means a quick config option has been chosen so we
419 * fill them in here to make the two flows the same. They look like 'price_2' => 2 etc.
420 *
421 * @param array $formValues
422 */
423 protected function ensurePriceParamsAreSet(&$formValues) {
424 foreach ($formValues as $key => $value) {
425 if ((substr($key, 0, 6) == 'price_') && is_numeric(substr($key, 6))) {
426 return;
427 }
428 }
429 $priceFields = CRM_Member_BAO_Membership::setQuickConfigMembershipParameters(
430 $formValues['membership_type_id'][0],
431 $formValues['membership_type_id'][1],
432 CRM_Utils_Array::value('total_amount', $formValues),
433 $this->_priceSetId
434 );
435 $formValues = array_merge($formValues, $priceFields['price_fields']);
436 }
437
438 /**
439 * Get the details for the selected price set.
440 *
441 * @param array $params
442 * Parameters submitted to the form.
443 *
444 * @return array
445 */
446 protected function getPriceSetDetails(array $params): ?array {
447 $priceSetID = $params['price_set_id'] ?? NULL;
448 if ($priceSetID) {
449 return CRM_Price_BAO_PriceSet::getSetDetail($priceSetID);
450 }
451 else {
452 $priceSet = CRM_Price_BAO_PriceSet::getDefaultPriceSet('membership');
453 $priceSet = reset($priceSet);
454 return CRM_Price_BAO_PriceSet::getSetDetail($priceSet['setID']);
455 }
456 }
457
458 /**
459 * Get the selected price set id.
460 *
461 * @param array $params
462 * Parameters submitted to the form.
463 *
464 * @return int
465 */
466 protected function getPriceSetID(array $params): int {
467 $priceSetID = $params['price_set_id'] ?? NULL;
468 if (!$priceSetID) {
469 $priceSetDetails = $this->getPriceSetDetails($params);
470 return (int) key($priceSetDetails);
471 }
472 return (int) $priceSetID;
473 }
474
475 /**
476 * Store parameters relating to price sets.
477 *
478 * @param array $formValues
479 *
480 * @return array
481 */
482 protected function setPriceSetParameters(array $formValues): array {
483 // process price set and get total amount and line items.
484 $this->_priceSetId = $this->getPriceSetID($formValues);
485 $this->ensurePriceParamsAreSet($formValues);
486 $priceSetDetails = $this->getPriceSetDetails($formValues);
487 $this->_priceSet = $priceSetDetails[$this->_priceSetId];
488 $this->order = new CRM_Financial_BAO_Order();
489 $this->order->setPriceSelectionFromUnfilteredInput($formValues);
490 $this->order->setPriceSetID($this->getPriceSetID($formValues));
491 $this->order->setForm($this);
492 if ($priceSetDetails[$this->order->getPriceSetID()]['is_quick_config'] && isset($formValues['total_amount'])) {
493 // Amount overrides only permitted on quick config.
494 // Possibly Order object should enforce this...
495 $this->order->setOverrideTotalAmount((float) $formValues['total_amount']);
496 }
497 $this->order->setOverrideFinancialTypeID((int) $formValues['financial_type_id']);
498 return $formValues;
499 }
500
501 /**
502 * Wrapper function for unit tests.
503 *
504 * @param array $formValues
505 */
506 public function testSubmit(array $formValues = []): void {
507 if (empty($formValues)) {
508 // If getForm is used these will be set - this is now
509 // preferred.
510 $formValues = $this->controller->exportValues($this->_name);
511 }
512 $this->exportedValues = $formValues;
513 $this->setContextVariables($formValues);
514 $this->_memType = !empty($formValues['membership_type_id']) ? $formValues['membership_type_id'][1] : NULL;
515 $this->_params = $formValues;
516 $this->submit();
517 }
518
519 /**
520 * Get order related params.
521 *
522 * In practice these are contribution params but later they cann be used with the Order api.
523 *
524 * @return array
525 *
526 * @throws \CiviCRM_API3_Exception
527 */
528 protected function getOrderParams(): array {
529 return [
530 'lineItems' => [$this->_priceSetId => $this->order->getLineItems()],
531 // This is one of those weird & wonderful legacy params we aim to get rid of.
532 'processPriceSet' => TRUE,
533 'tax_amount' => $this->order->getTotalTaxAmount(),
534 ];
535 }
536
537 /**
538 * Get the currency in use.
539 *
540 * This just defaults to getting the default currency
541 * as other currencies are not supported on the membership
542 * forms at the moment.
543 *
544 * @param array $submittedValues
545 *
546 * @return string
547 */
548 public function getCurrency($submittedValues = []): string {
549 return CRM_Core_Config::singleton()->defaultCurrency;
550 }
551
552 /**
553 * Get the relevant payment instrument id.
554 *
555 * @return int
556 */
557 protected function getPaymentInstrumentID(): int {
558 return (int) $this->getSubmittedValue('payment_instrument_id') ?: $this->_paymentProcessor['object']->getPaymentInstrumentID();
559 }
560
561 }