This repository has been archived by the owner on Sep 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Campaign.php
266 lines (232 loc) · 5.21 KB
/
Campaign.php
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
256
257
258
259
260
261
262
263
264
265
266
<?php declare(strict_types=1);
namespace Squid\Patreon\Entities;
use Tightenco\Collect\Support\Collection;
class Campaign extends Entity
{
/**
* Resource type (from Patreon).
*
* @var string
*/
protected $type = 'campaign';
/**
* Timestamp of the campaign creation, ISO 8601 combined date and time in UTC.
* Example: "2017-12-01T16:33:48+00:00"
*
* @var string
*/
public $created_at;
/**
* Number of creations associated with the campaign.
*
* @var integer
*/
public $creation_count;
/**
* Name of the creation, "x is creating..."
* Example: "Music"
*
* @var string
*/
public $creation_name;
/**
* Campaign owner.
*
* @var \Squid\Patreon\Entities\User
*/
public $creator;
/**
* ID of the Discord server that roles are granted in.
* Example: "100000000000000000"
*
* @var string
*/
public $discord_server_id;
/**
* Unknown.
*
* @var bool
*/
public $display_patron_goals;
/**
* Whether or not the campaigns earnings are visible.
*
* @var bool
*/
public $earnings_visibility;
/**
* URL of CDN hosted small version of the Campaign header image.
* Example: https://c10.patreonusercontent.com/[...]
*
* @var string
*/
public $image_small_url;
/**
* URL of CDN hosted Campaign header image.
* Example: https://c10.patreonusercontent.com/[...]
*
* @var string
*/
public $image_url;
/**
* Does the campaign charge immediately when a new pledge is created
* instead of waiting until the next billing cycle?
*
* @var bool
*/
public $is_charge_upfront;
/**
* Unknown.
* Maybe: a legacy version of is_charge_upfront; or is_charge_upfront is
* the legacy field?
*
* @var bool
*/
public $is_charged_immediately;
/**
* Unknown.
* Maybe: a legacy version of is_charge_upfront; or is_charge_upfront is
* the legacy field?
*
* @var bool
*/
public $is_first_month_upfront;
/**
* Does the campaign bill every month, instead of per creation?
*
* @var bool
*/
public $is_monthly;
/**
* Does the campaign have adult content?
*
* @var bool
*/
public $is_nsfw;
/**
* Unknown.
*
* @var bool
*/
public $is_plural;
/**
* Embed HTML for the main video.
* Example: <iframe src="//www.youtube.com/embed/id"></iframe>
*
* @var string
*/
public $main_video_embed;
/**
* URL for the main video.
* Example: https://www.youtube.com/watch?v=aDiUGnJtjeA
*
* @var string
*/
public $main_video_url;
/**
* Unknown.
*
* @var string
*/
public $one_liner;
/**
* Legacy field to be removed in future.
* Source: https://www.patreondevelopers.com/t/h/131/3
*
* @var integer
*/
public $outstanding_payment_amount_cents;
/**
* Number of active patrons.
*
* @var integer
*/
public $patron_count;
/**
* Name of what the user is paying per.
* Examples: month, video
*
* @var
*/
public $pay_per_name;
/**
* Sum of active pledge values in cents.
*
* @var integer
*/
public $pledge_sum;
/**
* Path to the pledge page for this campaign.
* Example: /bePatron?c=1
*
* @var string
*/
public $pledge_url;
/**
* Timestamp of when campaign was first published, ISO 8601 combined date
* and time in UTC.
* Example: "2017-12-01T16:33:48+00:00"
*
* @var string
*/
public $published_at;
/**
* HTML of the campaign summary as displayed on the campaign page.
*
* @var string
*/
public $summary;
/**
* Embed HTML for the thanks video.
* Example: <iframe src="//www.youtube.com/embed/id"></iframe>
*
* @var string
*/
public $thanks_embed;
/**
* Thanks Message displayed to the patron after a pledge is created.
* Example: "Thank you for becoming my patron."
*
* @var string
*/
public $thanks_msg;
/**
* Video displayed along side the Thanks Message after a pledge is created.
* Example: https://www.youtube.com/watch?v=aDiUGnJtjeA
*
* @var string
*/
public $thanks_video_url;
/**
* Relations that should be initialized as empty Collections.
*
* @var array
*/
protected $relations = [
'goals',
'pledges',
'rewards',
];
/**
* Get an absolute URL to the pledge page for this Campaign.
*
* @return string
*/
public function getPledgeUrl(): string
{
return self::PATREON_URL . $this->pledge_url;
}
/**
* Get a collection of the Rewards that are available to choose.
*
* @return \Tightenco\Collect\Support\Collection
*/
public function getAvailableRewards(): Collection
{
return $this->rewards->filter(
function ($reward) {
return $reward->isAvailableToChoose();
}
);
}
}