-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLaravelPayments.php
503 lines (413 loc) · 13.5 KB
/
LaravelPayments.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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
<?php
namespace Mosaiqo\LaravelPayments;
use Dflydev\DotAccessData\Data;
use Illuminate\Http\Request;
use Illuminate\Support\Str;
use Money\Currencies\ISOCurrencies;
use Money\Currency;
use Money\Formatter\IntlMoneyFormatter;
use Money\Money;
use Mosaiqo\LaravelPayments\ApiClients\ApiClient;
use Mosaiqo\LaravelPayments\Exceptions\MissingProvider;
use Mosaiqo\LaravelPayments\Exceptions\WebhookDuplicated;
use Mosaiqo\LaravelPayments\Http\Middleware\LemonSqueezyVerifyWebhookSignature;
use Mosaiqo\LaravelPayments\Http\Middleware\StripeVerifyWebhookSignature;
use Mosaiqo\LaravelPayments\Models\Customer;
use Mosaiqo\LaravelPayments\Models\Order;
use Mosaiqo\LaravelPayments\Models\Subscription;
use Mosaiqo\LaravelPayments\Models\Webhooks;
use Mosaiqo\LaravelPayments\WebhookHandlers\LemonSqueezyWebhookHandler;
use Mosaiqo\LaravelPayments\WebhookHandlers\StripeWebhookHandler;
use NumberFormatter;
class LaravelPayments
{
const VERSION = '0.0.1';
const API_URL = 'https://api.lemonsqueezy.com/v1';
const PROVIDER_LEMON_SQUEEZY = 'lemon-squeezy';
const PROVIDER_STRIPE = 'stripe';
protected array $allowedProviders = [
self::PROVIDER_LEMON_SQUEEZY,
self::PROVIDER_STRIPE,
];
/**
* The custom currency formatter.
*
* @var callable
*/
protected static $formatCurrencyUsing;
/**
* Indicates if missing providers should be allowed.
*/
public static bool $allowMissingProviders = false;
/**
* Indicates if non-authenticated billables should be allowed.
*/
public static bool $nonAuthenticatedBillablesAllowed = false;
/**
* Indicates if migrations will be run.
*/
public static bool $runsMigrations = true;
/**
* Indicates if routes will be registered.
*/
public static bool $registersRoutes = true;
/**
* Indicates if the package uses the default Laravel User model.
*/
public static string $billableModel = 'App\\Models\\User';
public static $resolveBillableForUserFunction = null;
/**
* @var string The customer model that will be used to store the customer information.
*/
public static string $customerModel = Customer::class;
/**
* Indicates if the package uses the default Laravel User model.
*/
public static string $orderModel = Order::class;
/**
* Indicates if the package uses the default Laravel User model.
*/
public static string $subscriptionModel = Subscription::class;
/**
* The webhook handler that will be used to handle provider webhooks.
* @var string
*/
public static string $webhooksModel = Webhooks::class;
/**
* The webhook handler that will be used to handle provider webhooks.
*/
public static string $lemonSqueezyWebhookHandler = LemonSqueezyWebhookHandler::class;
/**
* The signature middleware that will be used to verify the webhook signature.
*
* @var string The signature middleware that will be used to verify the webhook signature.
*/
public static string $lemonSqueezyVerifyWebhookSignature = LemonSqueezyVerifyWebhookSignature::class;
/**
* The webhook handler that will be used to handle provider webhooks.
* @var string
*/
public static string $stripeWebhookHandler = StripeWebhookHandler::class;
/**
* The signature middleware that will be used to verify the webhook signature.
* @var string
*/
public static string $stripeVerifyWebhookSignature = StripeVerifyWebhookSignature::class;
public static bool $asyncWebhooks = false;
public static bool $storeWebhooks = true;
public static function storeWebhooks(bool $store = true): void
{
static::$storeWebhooks = $store;
}
public static function asyncWebhooks(bool $async = true): void
{
static::storeWebhooks();
static::$asyncWebhooks = $async;
}
public static function syncWebhooks(): void
{
static::asyncWebhooks(false);
}
public static function useWebhooksModel(string $webhooksModel): void
{
static::$webhooksModel = $webhooksModel;
}
/**
* Indicates what customer model should be used.
*/
public static function useBillableModel(string $billableModel, $resolveBillableForUserFunction = null): void
{
static::$billableModel = $billableModel;
static::$resolveBillableForUserFunction = $resolveBillableForUserFunction;
}
/**
* Indicates what customer model should be used.
*/
public static function useCustomerModel(string $customerModel): void
{
static::$customerModel = $customerModel;
}
/**
* Indicates what order model should be used.
*/
public static function useOrderModel(string $orderModel): void
{
static::$orderModel = $orderModel;
}
/**
* Indicates what subscription model should be used.
*/
public static function useSubscriptionModel(string $subscriptionModel): void
{
static::$subscriptionModel = $subscriptionModel;
}
/**
* Indicates what webhook handler should be used for Lemon Squeezy.
*/
public static function useLemonSqueezyWebhookHandler(string $lemonSqueezyWebhookHandler): void
{
static::$lemonSqueezyWebhookHandler = $lemonSqueezyWebhookHandler;
}
/**
* @param string $lemonSqueezyVerifyWebhookSignature
*
* @return void
*/
public static function useLemonSqueezyVerifyWebhookSignature(string $lemonSqueezyVerifyWebhookSignature): void
{
static::$lemonSqueezyVerifyWebhookSignature = $lemonSqueezyVerifyWebhookSignature;
}
/**
* Indicates what webhook handler should be used for Stripe.
*/
public static function useStripeWebhookHandler(string $stripeWebhookHandler): void
{
static::$stripeWebhookHandler = $stripeWebhookHandler;
}
/**
* @param string $stripeVerifyWebhookSignature
*
* @return void
*/
public static function useStripeVerifyWebhookSignature(string $stripeVerifyWebhookSignature): void
{
static::$stripeVerifyWebhookSignature = $stripeVerifyWebhookSignature;
}
/**
* @param true $allow
*
* @return void
*/
public static function allowNonAuthenticatedBillables(bool $allow = true): void
{
static::$nonAuthenticatedBillablesAllowed = $allow;
}
public static function areNonAuthenticatedBillablesAllowed(): bool
{
return static::$nonAuthenticatedBillablesAllowed;
}
/**
* Get the correct API client.
*/
public static function api()
{
return ApiClient::make();
}
/**
* Resolves the provider to use.
*/
public static function getProvider(): ?string
{
return config('payments.provider');
}
/**
* Resolves all the providers.
*/
public static function getProviders(): array
{
return config('payments.providers');
}
/**
* Resolves the webhooks model to use.
*/
public static function resolveWebhooksModel(): string
{
return static::$webhooksModel;
}
/**
* Resolves the customer model to use.
*/
public static function resolveCustomerModel(): string
{
return static::$customerModel;
}
/**
* Resolves the customer model to use.
*/
public static function resolveBillableModel(): string
{
return static::$billableModel;
}
/**
* Resolves the customer model to use.
*/
public static function resolveBillableForUser($user)
{
if (static::$resolveBillableForUserFunction && is_callable(static::$resolveBillableForUserFunction)) {
return call_user_func_array(static::$resolveBillableForUserFunction, [$user]);
}
return $user;
}
/**
* Resolves the order model to use.
*/
public static function resolveOrderModel(): string
{
return static::$orderModel;
}
/**
* Resolves the subscription model to use.
*/
public static function resolveSubscriptionModel(): string
{
return static::$subscriptionModel;
}
/**
* Resolves the webhook handler to use for the configured provider.
*/
public static function resolveProviderWebhookHandler(): ?string
{
$handler = Str::camel(static::getProvider()) . 'WebhookHandler';
if (!property_exists(static::class, $handler)) {
return null;
}
return static::$$handler;
}
/**
* Resolves the signature middleware to use for the configured provider.
*/
public static function resolveProviderSignatureMiddleware(): ?string
{
$middleware = Str::camel(static::getProvider()) . 'VerifyWebhookSignature';
if (!property_exists(static::class, $middleware)) {
return null;
}
return static::$$middleware;
}
/**
* Determine if the provider should inject the signature middleware.
*/
public static function shouldInjectSignatureMiddleware(): bool
{
$provider = static::getProvider();
$providers = static::getProviders();
if (!array_key_exists($provider, $providers)) {
return false;
}
if (!isset($providers[$provider]['signing_secret'])) {
return false;
}
return true;
}
/**
* Determine if the route should return a 404 response.
*/
public static function shouldReturnNotFound(): bool
{
try {
static::checkProviderIsConfigured();
} catch (MissingProvider $e) {
return true;
}
return false;
}
/**
* @throws \Mosaiqo\LaravelPayments\Exceptions\MissingProvider
*/
public static function resolveProviderConfig(): ?array
{
$provider = static::getProvider();
$providers = static::getProviders();
if (!array_key_exists($provider, $providers)) {
throw MissingProvider::notConfigured();
}
return $providers[$provider];
}
public static function config($key = null)
{
return config("payments" . ($key ? '.' . $key : ''));
}
public static function providerConfig($key = null)
{
return config("payments.providers." . static::getProvider() . ($key ? '.' . $key : ''));
}
public static function getWebHookPath()
{
return config('payments.path') . '/' . config('payments.webhook_path');
}
/**
* @throws \Mosaiqo\LaravelPayments\Exceptions\MissingProvider
*/
public static function checkProviderIsConfigured(): void
{
$provider = static::getProvider();
if (!$provider) {
throw MissingProvider::notConfigured();
}
if (!static::$allowMissingProviders && !in_array($provider, (new self)->allowedProviders)) {
throw MissingProvider::notSupported($provider, static::allowedProviders());
}
}
/**
* @return array
*/
public static function allowedProviders(): array
{
$instance = new self;
return $instance->allowedProviders;
}
public static function getUniqueWebhookId(Request $request)
{
switch (LaravelPayments::getProvider()) {
case LaravelPayments::PROVIDER_STRIPE:
return $request->header('Stripe-Signature');
case LaravelPayments::PROVIDER_LEMON_SQUEEZY:
return $request->header('x-signature'). '-'.$request->header('x-event-name');
}
}
/**
* @throws \Mosaiqo\LaravelPayments\Exceptions\WebhookDuplicated
*/
public static function storeWebhook(Request $request): void
{
$model = static::resolveWebhooksModel();
$uniqueId = static::getUniqueWebhookId($request);
if ($model::where('unique_id', $uniqueId)->exists()) {
throw new WebhookDuplicated();
}
$model::create([
'unique_id' => $uniqueId,
'body' => $request->all(),
'headers' => $request->header(),
'provider' => static::getProvider(),
]);
}
public static function markWebhookAsProcessed(Request $request): void
{
$model = static::resolveWebhooksModel();
$uniqueId = static::getUniqueWebhookId($request);
$model::where('unique_id', $uniqueId)->update([
'processed_at' => now(),
]);
}
/**
* Set the custom currency formatter.
*
* @param callable $callback
* @return void
*/
public static function formatCurrencyUsing(callable $callback)
{
static::$formatCurrencyUsing = $callback;
}
/**
* @param int $amount
* @param string $currency
*
* @return string
*/
public static function formatAmount(int $amount, ?string $currency = null, ?string $locale = null, array $options = []): string
{
if (static::$formatCurrencyUsing) {
return call_user_func(static::$formatCurrencyUsing, $amount, $currency, $locale, $options);
}
$money = new Money($amount, new Currency(strtoupper($currency ?? config('cashier.currency'))));
$locale = $locale ?? static::resolveProviderConfig()['currency_locale'];
$numberFormatter = new NumberFormatter($locale, NumberFormatter::CURRENCY);
if (isset($options['min_fraction_digits'])) {
$numberFormatter->setAttribute(NumberFormatter::MIN_FRACTION_DIGITS, $options['min_fraction_digits']);
}
$moneyFormatter = new IntlMoneyFormatter($numberFormatter, new ISOCurrencies());
return $moneyFormatter->format($money);
}
}