2021-03-05 11:18:28 +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\Jobs\Cron;
|
|
|
|
|
|
|
|
use App\Libraries\MultiDB;
|
2021-03-10 01:14:05 +01:00
|
|
|
use App\Models\ClientSubscription;
|
2021-03-05 11:18:28 +01:00
|
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
|
|
use Illuminate\Support\Carbon;
|
|
|
|
|
|
|
|
class BillingSubscriptionCron
|
|
|
|
{
|
|
|
|
use Dispatchable;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new job instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the job.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function handle() : void
|
|
|
|
{
|
|
|
|
|
|
|
|
if (! config('ninja.db.multi_db_enabled')) {
|
2021-03-06 07:19:57 +01:00
|
|
|
$this->loopSubscriptions();
|
2021-03-05 11:18:28 +01:00
|
|
|
} else {
|
|
|
|
//multiDB environment, need to
|
|
|
|
foreach (MultiDB::$dbs as $db) {
|
|
|
|
|
|
|
|
MultiDB::setDB($db);
|
2021-03-06 07:19:57 +01:00
|
|
|
$this->loopSubscriptions();
|
2021-03-05 11:18:28 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-03-06 01:47:05 +01:00
|
|
|
|
2021-03-06 07:19:57 +01:00
|
|
|
private function loopSubscriptions()
|
|
|
|
{
|
|
|
|
$client_subs = ClientSubscription::whereNull('deleted_at')
|
|
|
|
->cursor()
|
|
|
|
->each(function ($cs){
|
|
|
|
$this->processSubscription($cs);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-03-06 01:47:05 +01:00
|
|
|
/* Our daily cron should check
|
|
|
|
|
|
|
|
1. Is the subscription still in trial phase?
|
|
|
|
2. Check the recurring invoice and its remaining_cycles to see whether we need to cancel or perform any other function.
|
2021-03-06 07:19:57 +01:00
|
|
|
3. Any notifications that need to fire?
|
2021-03-06 01:47:05 +01:00
|
|
|
*/
|
|
|
|
private function processSubscription($client_subscription)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2021-03-05 11:18:28 +01:00
|
|
|
}
|