1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/app/Jobs/Cron/RecurringInvoicesCron.php

85 lines
3.2 KiB
PHP
Raw Normal View History

2019-05-23 07:08:31 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-23 07:08:31 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-23 07:08:31 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Jobs\Cron;
use App\Jobs\RecurringInvoice\SendRecurring;
use App\Libraries\MultiDB;
2019-05-23 07:08:31 +02:00
use App\Models\RecurringInvoice;
2020-09-26 01:48:42 +02:00
use Illuminate\Foundation\Bus\Dispatchable;
2019-05-23 07:08:31 +02:00
use Illuminate\Support\Carbon;
class RecurringInvoicesCron
{
2020-11-25 15:19:52 +01:00
use Dispatchable;
2020-09-26 01:48:42 +02:00
2019-05-23 07:08:31 +02:00
/**
* Create a new job instance.
*
* @return void
*/
public function __construct()
{
}
/**
* Execute the job.
*
* @return void
*/
public function handle() : void
{
/* Get all invoices where the send date is less than NOW + 30 minutes() */
2020-12-29 22:10:03 +01:00
nlog("Sending recurring invoices ".Carbon::now()->format('Y-m-d h:i:s'));
if (! config('ninja.db.multi_db_enabled')) {
2021-01-10 22:06:32 +01:00
$recurring_invoices = RecurringInvoice::whereDate('next_send_date', '<=', now())
->whereNotNull('next_send_date')
2020-09-28 04:56:11 +02:00
->where('status_id', RecurringInvoice::STATUS_ACTIVE)
2021-01-10 22:06:32 +01:00
->where('remaining_cycles', '!=', '0')
2020-11-01 11:29:34 +01:00
->with('company')
2020-09-28 04:56:11 +02:00
->cursor();
2020-09-26 01:48:42 +02:00
2020-12-29 22:10:03 +01:00
nlog(now()->format('Y-m-d') . ' Sending Recurring Invoices. Count = '.$recurring_invoices->count());
2019-05-23 07:08:31 +02:00
2020-11-25 15:19:52 +01:00
$recurring_invoices->each(function ($recurring_invoice, $key) {
2020-12-29 22:10:03 +01:00
nlog("Current date = " . now()->format("Y-m-d") . " Recurring date = " .$recurring_invoice->next_send_date);
2019-05-23 07:08:31 +02:00
2020-11-25 15:19:52 +01:00
if (!$recurring_invoice->company->is_disabled) {
2020-11-01 11:29:34 +01:00
SendRecurring::dispatchNow($recurring_invoice, $recurring_invoice->company->db);
2020-11-25 15:19:52 +01:00
}
2019-05-24 00:37:47 +02:00
});
} else {
//multiDB environment, need to
foreach (MultiDB::$dbs as $db) {
2019-05-24 00:37:47 +02:00
MultiDB::setDB($db);
2019-05-23 07:08:31 +02:00
2021-01-10 22:06:32 +01:00
$recurring_invoices = RecurringInvoice::whereDate('next_send_date', '<=', now())
->whereNotNull('next_send_date')
2020-09-28 04:56:11 +02:00
->where('status_id', RecurringInvoice::STATUS_ACTIVE)
2021-01-10 22:06:32 +01:00
->where('remaining_cycles', '!=', '0')
2020-11-01 11:29:34 +01:00
->with('company')
2020-09-28 04:56:11 +02:00
->cursor();
2019-05-24 00:37:47 +02:00
2020-12-29 22:10:03 +01:00
nlog(now()->format('Y-m-d') . ' Sending Recurring Invoices. Count = '.$recurring_invoices->count().' On Database # '.$db);
2019-05-24 00:37:47 +02:00
$recurring_invoices->each(function ($recurring_invoice, $key) {
2020-12-29 22:10:03 +01:00
nlog("Current date = " . now()->format("Y-m-d") . " Recurring date = " .$recurring_invoice->next_send_date);
2020-09-26 01:48:42 +02:00
2020-11-25 15:19:52 +01:00
if (!$recurring_invoice->company->is_disabled) {
2020-11-01 11:29:34 +01:00
SendRecurring::dispatchNow($recurring_invoice, $recurring_invoice->company->db);
2020-11-25 15:19:52 +01:00
}
2019-05-24 00:37:47 +02:00
});
}
}
2019-05-23 07:08:31 +02:00
}
}