Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
<?php
namespace Civi\MJW\Payment;
use Civi\Api4\Contribution;
use Civi\Api4\ContributionRecur;
use Civi\Api4\LineItem;
use Civi\Core\Service\AutoService;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
/**
* @internal
* @service
*/
class Membership extends AutoService implements EventSubscriberInterface {
/**
* @return array
*/
public static function getSubscribedEvents() {
return [
'hook_civicrm_pre' => ['on_hook_civicrm_pre', 150],
];
}
/**
* Force setting entity_table / entity_id in LineItem.create (for update)
*
* @param \Civi\Core\Event\PreEvent $event
*
* @return void
*/
public function on_hook_civicrm_pre(\Civi\Core\Event\PreEvent $event) {
if ($event->entity !== 'LineItem' || $event->action !== 'edit') {
return;
}
// API3 LineItem.create removes entity_table/entity_id before saving.
// We add them after LineItem.create removed them but before save!
if (isset($event->params['entity_table_force'])) {
$event->params['entity_table'] = $event->params['entity_table_force'];
unset($event->params['entity_table_force']);
}
if (isset($event->params['entity_id_force'])) {
$event->params['entity_id'] = $event->params['entity_id_force'];
unset($event->params['entity_id_force']);
}
}
/**
* Update and Link Membership to Contribution LineItem and Recur
*
* @param int $membershipID
* @param int|null $contributionID
* @param int|null $contributionRecurID
*
* @return array The various entity IDs
* @throws \CRM_Core_Exception
* @throws \Civi\API\Exception\UnauthorizedException
*/
public function linkMembershipToRecur(int $membershipID, $contributionID = NULL, $contributionRecurID = NULL): array {
// Get contribution ID from the recur if possible
if (empty($contributionID) && !empty($contributionRecurID)) {
$contributionID = \CRM_Contribute_BAO_ContributionRecur::ensureTemplateContributionExists($contributionRecurID);
}
// First the simple bit! Link the membership to the contributionRecur record if we have one
if ($contributionRecurID) {
\Civi\Api4\Membership::update(FALSE)
->addWhere('id', '=', $membershipID)
->addValue('contribution_recur_id', $contributionRecurID)
->execute()
->first();
}
// Now we need to update the LineItems on the contribution so that renewals etc. work properly.
$priceFieldValues = \Civi\Api4\PriceFieldValue::getDefaultPriceFieldValueForMembershipMJW(FALSE)
->setMembershipID($membershipID)
->execute();
// Now get the LineItems for the contribution
$lineItems = LineItem::get(FALSE)
->addWhere('contribution_id', '=', $contributionID)
->execute();
if ($lineItems->count() > 1) {
throw new \CRM_Core_Exception('ContributionID: ' . $contributionID . ' has more than one lineitem. Not linking membership as I don\'t know what to do');
// @todo: Maybe search them for a LineItem matching this membership type?
}
// Get the membership FinancialType so we can update the Contribution,Recur and LineItem.
$membership = \Civi\Api4\Membership::get(FALSE)
->addSelect('membership_type_id.financial_type_id')
->addWhere('id', '=', $membershipID)
->execute()
->first();
// Update the contributionRecur with the new FinancialType
if (!empty($contributionRecurID)) {
ContributionRecur::update(FALSE)
->addWhere('id', '=', $contributionRecurID)
->addValue('financial_type_id', $membership['membership_type_id.financial_type_id'])
->execute();
}
// Update the contribution with the new FinancialType
if (!empty($contributionID)) {
Contribution::update(FALSE)
->addWhere('id', '=', $contributionID)
->addValue('financial_type_id', $membership['membership_type_id.financial_type_id'])
->execute();
}
// Finally, Update the LineItem to map to a membership
civicrm_api3('LineItem', 'create', [
'entity_id' => $membershipID,
'id' => $lineItems->first()['id'],
'entity_table' => 'civicrm_membership',
'price_field_id' => $priceFieldValues['price_field_id'],
'price_field_value_id' => $priceFieldValues['price_field_value_id'],
'label' => $priceFieldValues['label'],
'financial_type_id' => $membership['membership_type_id.financial_type_id'],
// API3 LineItem.create removes entity_table/entity_id before saving.
// We add them here so we can add them back in using hook_civicrm_pre (implemented in on_hook_civicrm_pre).
'entity_table_force' => 'civicrm_membership',
'entity_id_force' => $membershipID,
]);
return [
'lineItemID' => $lineItems->first()['id'],
'contributionRecurID' => $contributionRecurID ?? NULL,
'contributionID' => $contributionID,
'membershipID' => $membershipID,
'action' => 'link',
];
}
/**
* Update and Link Membership to Contribution LineItem and Recur
*
* @param int $membershipID
* @param int|null $contributionID
* @param int|null $contributionRecurID
*
* @return array The various entity IDs
* @throws \CRM_Core_Exception
* @throws \Civi\API\Exception\UnauthorizedException
*/
public function unlinkMembershipFromRecur(int $membershipID, $contributionID = NULL, $contributionRecurID = NULL): array {
if (empty($contributionID) && empty($contributionRecurID)) {
$contributionRecurID = \Civi\Api4\Membership::get(FALSE)
->addSelect('contribution_recur_id')
->addWhere('id', '=', $membershipID)
->execute()
->first()['contribution_recur_id'];
if (empty($contributionRecurID)) {
throw new \CRM_Core_Exception('Membership ' . $membershipID . ' does not have a contribution_recur_id. Cannot unlink!');
}
}
// Get contribution ID from the recur if possible
if (empty($contributionID) && !empty($contributionRecurID)) {
$contributionID = \CRM_Contribute_BAO_ContributionRecur::ensureTemplateContributionExists($contributionRecurID);
}
// First the simple bit! Remove the contribution_recur_id from the membership
if ($contributionRecurID) {
\Civi\Api4\Membership::update(FALSE)
->addWhere('id', '=', $membershipID)
->addValue('contribution_recur_id', NULL)
->execute()
->first();
}
// Now we need to update the LineItems on the contribution so that renewals etc. work properly.
$priceFieldValues = \Civi\Api4\PriceFieldValue::getDefaultPriceFieldValueForContributionMJW(FALSE)->execute();
// Now get the LineItems for the contribution
$lineItems = LineItem::get(FALSE)
->addWhere('contribution_id', '=', $contributionID)
->execute();
if ($lineItems->count() > 1) {
throw new \CRM_Core_Exception('ContributionID: ' . $contributionID . ' has more than one lineitem. Not unlinking membership as I don\'t know what to do');
// @todo: Maybe search them for a LineItem matching this membership type?
}
// @todo Maybe change the financial type on contribution/recur to default / "Donation".
// But not sure what would be best as we don't have an obvious default (when linking we use Membership financialType).
// Finally, Update the LineItem to map to a contribution
$newLineItem = civicrm_api3('LineItem', 'create', [
'entity_id' => $contributionID,
'id' => $lineItems->first()['id'],
'entity_table' => 'civicrm_contribution',
'price_field_id' => $priceFieldValues['price_field_id'],
'price_field_value_id' => $priceFieldValues['price_field_value_id'],
'label' => $priceFieldValues['label'],
// 'financial_type_id' => $membership['membership_type_id.financial_type_id'],
// API3 LineItem.create removes entity_table/entity_id before saving.
// We add them here so we can add them back in using hook_civicrm_pre (implemented in on_hook_civicrm_pre).
'entity_table_force' => 'civicrm_contribution',
'entity_id_force' => $contributionID,
]);
return [
'lineItemID' => $lineItems->first()['id'],
'contributionRecurID' => $contributionRecurID ?? NULL,
'contributionID' => $contributionID,
'membershipID' => $membershipID,
'action' => 'unlink',
];
}
}