lasthourcloud/bootstrap/helpers/subscriptions.php

93 lines
1.9 KiB
PHP
Raw Normal View History

2023-07-13 20:03:27 +00:00
<?php
2023-08-24 14:14:09 +00:00
use App\Models\Team;
use Stripe\Stripe;
2023-07-13 20:03:27 +00:00
2023-08-24 14:14:09 +00:00
function isSubscriptionActive()
2023-07-14 09:27:08 +00:00
{
2024-06-10 20:43:34 +00:00
if (! isCloud()) {
2023-09-02 13:37:25 +00:00
return false;
}
2023-08-22 15:44:49 +00:00
$team = currentTeam();
2024-06-10 20:43:34 +00:00
if (! $team) {
2023-08-14 13:22:29 +00:00
return false;
}
$subscription = $team?->subscription;
2023-08-14 14:56:13 +00:00
2023-09-15 09:19:36 +00:00
if (is_null($subscription)) {
2023-08-14 13:22:29 +00:00
return false;
}
2023-08-30 16:23:55 +00:00
if (isStripe()) {
return $subscription->stripe_invoice_paid === true;
2023-08-24 14:14:09 +00:00
}
2024-06-10 20:43:34 +00:00
2023-08-24 14:14:09 +00:00
return false;
2023-08-14 13:22:29 +00:00
}
2023-08-24 14:14:09 +00:00
function isSubscriptionOnGracePeriod()
2023-08-14 13:22:29 +00:00
{
2023-08-22 15:44:49 +00:00
$team = currentTeam();
2024-06-10 20:43:34 +00:00
if (! $team) {
2023-08-14 13:22:29 +00:00
return false;
}
$subscription = $team?->subscription;
2024-06-10 20:43:34 +00:00
if (! $subscription) {
2023-08-14 13:22:29 +00:00
return false;
}
2023-08-30 16:23:55 +00:00
if (isStripe()) {
2023-08-24 14:14:09 +00:00
return $subscription->stripe_cancel_at_period_end;
}
2024-06-10 20:43:34 +00:00
2023-08-24 14:14:09 +00:00
return false;
}
function subscriptionProvider()
{
return config('subscription.provider');
}
2023-08-31 13:00:59 +00:00
function isStripe()
{
2023-08-30 16:23:55 +00:00
return config('subscription.provider') === 'stripe';
}
2023-08-24 14:14:09 +00:00
function getStripeCustomerPortalSession(Team $team)
{
Stripe::setApiKey(config('subscription.stripe_api_key'));
$return_url = route('subscription.show');
2024-06-10 20:43:34 +00:00
$stripe_customer_id = data_get($team, 'subscription.stripe_customer_id');
if (! $stripe_customer_id) {
return null;
}
2023-08-24 14:14:09 +00:00
$session = \Stripe\BillingPortal\Session::create([
'customer' => $stripe_customer_id,
'return_url' => $return_url,
]);
2024-06-10 20:43:34 +00:00
2023-08-24 14:14:09 +00:00
return $session;
}
2023-08-24 15:41:11 +00:00
function allowedPathsForUnsubscribedAccounts()
2023-08-24 14:14:09 +00:00
{
return [
'subscription/new',
2023-08-24 14:14:09 +00:00
'login',
2023-10-09 12:20:55 +00:00
'logout',
2023-08-24 14:14:09 +00:00
'waitlist',
'force-password-reset',
2024-06-10 20:43:34 +00:00
'livewire/update',
2023-08-24 14:14:09 +00:00
];
2023-07-14 09:27:08 +00:00
}
2023-08-24 15:41:11 +00:00
function allowedPathsForBoardingAccounts()
{
return [
...allowedPathsForUnsubscribedAccounts(),
2024-03-13 11:11:37 +00:00
'onboarding',
2024-06-10 20:43:34 +00:00
'livewire/update',
2023-08-24 15:41:11 +00:00
];
}
2024-06-10 20:43:34 +00:00
function allowedPathsForInvalidAccounts()
{
2023-10-09 12:20:55 +00:00
return [
'logout',
'verify',
'force-password-reset',
2024-06-10 20:43:34 +00:00
'livewire/update',
2023-10-09 12:20:55 +00:00
];
}