-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCampaignStatistics.php
More file actions
219 lines (184 loc) · 7.4 KB
/
CampaignStatistics.php
File metadata and controls
219 lines (184 loc) · 7.4 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
<?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.
*
* @psalm-suppress UnusedProperty Properties are used in DQL & for manual DB queries
* @psalm-suppress PossiblyUnusedProperty
*/
#[ORM\Table]
#[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')]
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;
/** Set on construct only for now */
#[ORM\Embedded(columnPrefix: 'match_funds_total_')]
private Money $matchFundsTotal;
/** Set on construct and updated when donations change. */
#[ORM\Embedded(columnPrefix: 'match_funds_used_')]
private Money $matchFundsUsed;
/** Set on construct and updated when donations change. */
#[ORM\Embedded(columnPrefix: 'match_funds_remaining_')]
private Money $matchFundsRemaining;
/**
* Set on construct and when donations change. 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;
/**
* @param Campaign $campaign
* @param Money $amountRaised
* @param Money $matchFundsUsed
* @param Money $matchFundsTotal
*
* $amountRaised must be equal to $matchFundsUsed + $donationSum
*/
public function __construct(
\DateTimeImmutable $at,
Campaign $campaign,
Money $donationSum,
Money $amountRaised,
Money $matchFundsUsed,
Money $matchFundsTotal,
) {
$this->createdNow();
$this->campaign = $campaign;
$this->campaignSalesforceId = $campaign->getSalesforceId();
$this->setTotals(
at: $at,
donationSum: $donationSum,
amountRaised: $amountRaised,
matchFundsUsed: $matchFundsUsed,
matchFundsTotal: $matchFundsTotal,
alwaysConsiderChanged: true,
);
}
public static function zeroPlaceholder(Campaign $campaign, \DateTimeImmutable $at): self
{
$zero = Money::zero($campaign->getCurrency());
return new self($at, $campaign, $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 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,
): bool {
// we know the following is not always true at the moment - looks like there are some temporarily overmatched
// funds.
// 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);
}
$target = $this->campaign->getTotalFundraisingTarget();
$this->distanceToTarget = $target->lessThan($amountRaised)
? Money::zero($this->campaign->getCurrency())
: $target->minus($amountRaised);
$didRealUpdate = (
$alwaysConsiderChanged
|| $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;
}
}