-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCampaignStatistics.php
More file actions
255 lines (219 loc) · 8.95 KB
/
Copy pathCampaignStatistics.php
File metadata and controls
255 lines (219 loc) · 8.95 KB
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
<?php
namespace MatchBot\Domain;
use Doctrine\ORM\Mapping as ORM;
use MatchBot\Application\Assertion;
/**
* Holds automatically calculated summary information from donations associated with a {@see Campaign}.
* We keep copies so search ordering can stay performant, and to keep sync from Salesforce to charity
* Campaigns one-way.
*
* @see Campaign for notes on deferred explicit change tracking.
*
* @psalm-suppress UnusedProperty Properties are used in DQL & for manual DB queries
* @psalm-suppress PossiblyUnusedProperty
*/
#[ORM\Entity(
repositoryClass: null // we construct our own repository
)]
#[ORM\HasLifecycleCallbacks]
#[ORM\Index(columns: ['amount_raised_amountInPence'], name: 'amount_raised_amountInPence')]
#[ORM\Index(columns: ['match_funds_used_amountInPence'], name: 'match_funds_used_amountInPence')]
#[ORM\Index(columns: ['lastCheck'], name: 'lastCheck')]
#[ORM\Index(columns: ['approxStatus'], name: 'approxStatus')]
#[ORM\ChangeTrackingPolicy('DEFERRED_EXPLICIT')]
class CampaignStatistics
{
use TimestampsTrait;
#[ORM\Column(nullable: true, type: 'datetime_immutable')]
private ?\DateTimeImmutable $lastCheck = null;
#[ORM\Column(nullable: true, type: 'datetime_immutable')]
private ?\DateTimeImmutable $lastRealUpdate = null;
#[ORM\OneToOne(inversedBy: 'campaignStatistics', fetch: 'EAGER')]
#[ORM\Id]
private Campaign $campaign;
#[ORM\Column(length: 18, unique: true)]
protected string $campaignSalesforceId;
/**
* Total of core donation amounts and match funds, without Gift Aid.
* Set on construct and updated when donations change.
*/
#[ORM\Embedded(columnPrefix: 'amount_raised_')]
private Money $amountRaised;
/**
* Total of core donation amounts, without match funds or Gift Aid.
* Set on construct and updated when donations change.
*/
#[ORM\Embedded(columnPrefix: 'donation_sum_')]
private Money $donationSum;
/*
* Total of all match funds allocated to the campaign, shared or not, including funds
* that have already been matched to a donation as well as available funds.
**/
#[ORM\Embedded(columnPrefix: 'match_funds_total_')]
private Money $matchFundsTotal;
/** Total of match funds that have been withdrawn for donations to this campaign. */
#[ORM\Embedded(columnPrefix: 'match_funds_used_')]
private Money $matchFundsUsed;
/** Total of match funds still available to use for donations to this campaign. Should be equal to
* matchFundsTotal - matchFundsUsed.
*/
#[ORM\Embedded(columnPrefix: 'match_funds_remaining_')]
private Money $matchFundsRemaining;
/**
* Uses {@see Campaign::$totalFundraisingTarget} on each update.
* It's set to zero of the Campaign currency when the target is met, which also leads search to exclude the
* Campaign when sorting by distance ascending.
*/
#[ORM\Embedded(columnPrefix: 'distance_to_target_')]
private Money $distanceToTarget;
/**
* Roughly what the campaign status is, but as we can't update all campaigns instantaneously, at campaign start time
* this will be updated to Active shortly before the campaign opens, and not updated to Expired until some time
* after the campaign closes. Used to determine sort order. For precise status {@see Campaign::getStatus}
*/
#[ORM\Column]
protected CampaignStatus $approxStatus;
/**
* @param Money $target
* @param Money $matchFundsTotal
* @param Campaign $campaign
* @param Money $matchFundsUsed
* @param Money $amountRaised
*
* $amountRaised must be equal to $matchFundsUsed + $donationSum
*/
public function __construct(
\DateTimeImmutable $at,
Campaign $campaign,
Money $donationSum,
Money $amountRaised,
Money $matchFundsUsed,
Money $matchFundsTotal,
Money $target,
) {
$this->createdNow();
$this->campaign = $campaign;
$this->campaignSalesforceId = $campaign->getSalesforceId();
$this->approxStatus = $this->approximateStatus($campaign, $at);
$this->setTotals(
at: $at,
donationSum: $donationSum,
amountRaised: $amountRaised,
matchFundsUsed: $matchFundsUsed,
matchFundsTotal: $matchFundsTotal,
alwaysConsiderChanged: true,
target: $target,
);
}
public static function zeroPlaceholder(Campaign $campaign, \DateTimeImmutable $at): self
{
$zero = Money::zero($campaign->getCurrency());
return new self($at, $campaign, $zero, $zero, $zero, $zero, $zero);
}
public function getDonationSum(): Money
{
return $this->donationSum;
}
public function getAmountRaised(): Money
{
return $this->amountRaised;
}
public function getMatchFundsUsed(): Money
{
return $this->matchFundsUsed;
}
public function getMatchFundsRemaining(): Money
{
return $this->matchFundsRemaining;
}
public function getMatchFundsTotal(): Money
{
return $this->matchFundsTotal;
}
public function getDistanceToTarget(): Money
{
return $this->distanceToTarget;
}
/**
* We manually set $lastCheck and $lastRealUpdate, since we need the former to avoid wasting resources and
* changing that will cause lifecycle hooks to change $updatedAt.
*
* @param Money $target
* @param bool $alwaysConsiderChanged Hacky prop for now to avoid sa & runtime confusion about uninitialised
* props. Constructor sets true, other callers false.
* @return bool Whether anything changed vs. the previously persisted stats.
*/
final public function setTotals(
\DateTimeImmutable $at,
Money $donationSum,
Money $amountRaised,
Money $matchFundsUsed,
Money $matchFundsTotal,
bool $alwaysConsiderChanged,
Money $target,
): bool {
Assertion::greaterOrEqualThan(
$matchFundsTotal->toNumericString(),
$matchFundsUsed->toNumericString(),
'Match funds total must be greater than or equal to match funds used',
);
Assertion::eq(
$amountRaised->toNumericString(),
$donationSum->plus($matchFundsUsed)->toNumericString(),
'Amount raised must equal donation sum plus match funds used',
);
/** @var ?CampaignStatistics $previousStats */
$previousStats = null;
if (!$alwaysConsiderChanged) {
$previousStats = clone $this;
}
$this->amountRaised = $amountRaised;
$this->donationSum = $donationSum;
$this->matchFundsUsed = $matchFundsUsed;
$this->matchFundsTotal = $matchFundsTotal;
if ($matchFundsUsed->greaterThan($matchFundsTotal)) {
// possibly we should say the matchFundsRemaining is negative in this case due to an error
// but various systems may not support negative, setting to zero is better than
// not updating at all in this case. The Money Constructor does not currently allow constructing
// negative sums.
$this->matchFundsRemaining = Money::zero($matchFundsTotal->currency);
} else {
$this->matchFundsRemaining = $matchFundsTotal->minus($matchFundsUsed);
}
$this->distanceToTarget = $target->lessThan($amountRaised)
? Money::zero($this->campaign->getCurrency())
: $target->minus($amountRaised);
$didRealUpdate = true;
if ($previousStats instanceof self) {
$didRealUpdate = (
$previousStats->getAmountRaised() != $amountRaised
|| $previousStats->getDonationSum() != $donationSum
|| $previousStats->getMatchFundsUsed() != $matchFundsUsed
|| $previousStats->getMatchFundsTotal() != $matchFundsTotal
|| $previousStats->getMatchFundsRemaining() != $this->matchFundsRemaining
|| $previousStats->getDistanceToTarget() != $this->distanceToTarget
);
}
$this->lastCheck = $at;
if (!$didRealUpdate) {
return false;
}
$this->lastRealUpdate = $at;
return true;
}
/**
* Returns a status based on a very rough approximation of the time, with a bias towards making the campaign
* appear open for longer than it really is not shorter, to make sure it's easy to find before and after opening.
*/
private function approximateStatus(Campaign $campaign, \DateTimeImmutable $at): CampaignStatus
{
$oneDay = new \DateInterval('P1D');
if ($at < $campaign->getStartDate()->sub($oneDay)) {
return CampaignStatus::Preview;
} elseif ($at <= $campaign->getEndDate()) { // no need to approximate this part, it's not expected to change again
return CampaignStatus::Active;
} else {
return CampaignStatus::Expired;
}
}
}