2021-03-14 22:42:05 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Services\BillingSubscription;
|
|
|
|
|
2021-03-17 03:21:06 +01:00
|
|
|
use App\DataMapper\InvoiceItem;
|
|
|
|
use App\Factory\InvoiceFactory;
|
2021-03-17 12:06:58 +01:00
|
|
|
use App\Models\BillingSubscription;
|
2021-03-15 21:35:19 +01:00
|
|
|
use App\Models\ClientSubscription;
|
2021-03-17 16:12:25 +01:00
|
|
|
use App\Models\PaymentHash;
|
2021-03-17 03:21:06 +01:00
|
|
|
use App\Models\Product;
|
|
|
|
use App\Repositories\InvoiceRepository;
|
2021-03-15 21:35:19 +01:00
|
|
|
|
2021-03-14 22:42:05 +01:00
|
|
|
class BillingSubscriptionService
|
|
|
|
{
|
2021-03-17 12:06:58 +01:00
|
|
|
/** @var BillingSubscription */
|
2021-03-14 22:42:05 +01:00
|
|
|
private $billing_subscription;
|
|
|
|
|
|
|
|
public function __construct(BillingSubscription $billing_subscription)
|
|
|
|
{
|
|
|
|
$this->billing_subscription = $billing_subscription;
|
|
|
|
}
|
|
|
|
|
2021-03-17 12:06:58 +01:00
|
|
|
public function createInvoice($data): ?\App\Models\Invoice
|
2021-03-14 22:42:05 +01:00
|
|
|
{
|
2021-03-17 03:21:06 +01:00
|
|
|
$invoice_repo = new InvoiceRepository();
|
|
|
|
|
|
|
|
// $data = [
|
|
|
|
// 'client_id' =>,
|
|
|
|
// 'date' => Y-m-d,
|
|
|
|
// 'invitations' => [
|
|
|
|
// 'client_contact_id' => hashed_id
|
|
|
|
// ],
|
2021-03-17 12:06:58 +01:00
|
|
|
// 'line_items' => [],
|
2021-03-17 03:21:06 +01:00
|
|
|
// ];
|
2021-03-17 12:06:58 +01:00
|
|
|
$data['line_items'] = $this->createLineItems($data['quantity']);
|
2021-03-17 03:21:06 +01:00
|
|
|
|
2021-03-15 21:35:19 +01:00
|
|
|
/*
|
2021-03-17 12:06:58 +01:00
|
|
|
|
2021-03-15 21:35:19 +01:00
|
|
|
If trial_enabled -> return early
|
|
|
|
|
|
|
|
-- what we need to know that we don't already
|
|
|
|
-- Has a promo code been entered, and does it match
|
|
|
|
-- Is this a recurring subscription
|
2021-03-17 12:06:58 +01:00
|
|
|
--
|
2021-03-15 21:35:19 +01:00
|
|
|
|
|
|
|
1. Is this a recurring product?
|
|
|
|
2. What is the quantity? ie is this a multi seat product ( does this mean we need this value stored in the client sub?)
|
|
|
|
*/
|
2021-03-17 12:06:58 +01:00
|
|
|
|
|
|
|
return $invoice_repo->save($data, InvoiceFactory::create($this->billing_subscription->company_id, $this->billing_subscription->user_id));
|
2021-03-17 03:21:06 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-03-17 12:06:58 +01:00
|
|
|
private function createLineItems($quantity): array
|
2021-03-17 03:21:06 +01:00
|
|
|
{
|
|
|
|
$line_items = [];
|
2021-03-17 12:06:58 +01:00
|
|
|
|
2021-03-17 03:21:06 +01:00
|
|
|
$product = $this->billing_subscription->product;
|
|
|
|
|
|
|
|
$item = new InvoiceItem;
|
|
|
|
$item->quantity = $quantity;
|
|
|
|
$item->product_key = $product->product_key;
|
|
|
|
$item->notes = $product->notes;
|
|
|
|
$item->cost = $product->price;
|
|
|
|
//$item->type_id need to switch whether the subscription is a service or product
|
|
|
|
|
|
|
|
$line_items[] = $item;
|
|
|
|
|
|
|
|
|
|
|
|
//do we have a promocode? enter this as a line item.
|
|
|
|
|
|
|
|
return $line_items;
|
2021-03-14 22:42:05 +01:00
|
|
|
}
|
|
|
|
|
2021-03-15 21:35:19 +01:00
|
|
|
private function convertInvoiceToRecurring()
|
|
|
|
{
|
|
|
|
//The first invoice is a plain invoice - the second is fired on the recurring schedule.
|
|
|
|
}
|
|
|
|
|
|
|
|
public function createClientSubscription($payment_hash, $recurring_invoice_id = null)
|
2021-03-14 22:42:05 +01:00
|
|
|
{
|
|
|
|
//create the client sub record
|
2021-03-17 12:06:58 +01:00
|
|
|
|
2021-03-15 21:35:19 +01:00
|
|
|
//?trial enabled?
|
|
|
|
$cs = new ClientSubscription();
|
|
|
|
$cs->subscription_id = $this->billing_subscription->id;
|
|
|
|
$cs->company_id = $this->billing_subscription->company_id;
|
|
|
|
|
|
|
|
// client_id
|
|
|
|
$cs->save();
|
2021-03-14 22:42:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function triggerWebhook($payment_hash)
|
|
|
|
{
|
|
|
|
//hit the webhook to after a successful onboarding
|
|
|
|
}
|
|
|
|
|
|
|
|
public function fireNotifications()
|
|
|
|
{
|
|
|
|
//scan for any notification we are required to send
|
|
|
|
}
|
2021-03-17 16:12:25 +01:00
|
|
|
|
|
|
|
public static function completePurchase(PaymentHash $payment_hash)
|
|
|
|
{
|
|
|
|
if (!property_exists($payment_hash, 'billing_context')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// At this point we have some state carried from the billing page
|
|
|
|
// to this, available as $payment_hash->data->billing_context. Make something awesome ⭐
|
|
|
|
}
|
2021-03-14 22:42:05 +01:00
|
|
|
}
|