1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Jobs/Cron/AutoBill.php

67 lines
1.5 KiB
PHP
Raw Normal View History

2021-10-03 12:51:42 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2021-10-03 12:51:42 +02:00
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Jobs\Cron;
use App\Libraries\MultiDB;
use App\Models\Invoice;
2022-08-07 08:47:37 +02:00
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
2023-02-16 02:36:09 +01:00
use Illuminate\Foundation\Bus\Dispatchable;
2022-08-07 08:47:37 +02:00
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
2021-10-03 12:51:42 +02:00
2022-08-07 08:47:37 +02:00
class AutoBill implements ShouldQueue
2021-10-03 12:51:42 +02:00
{
2022-08-07 08:47:37 +02:00
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
2021-10-03 12:51:42 +02:00
public $tries = 1;
public int $invoice_id;
2021-10-03 12:51:42 +02:00
public string $db;
/**
* Create a new job instance.
*
* @return void
*/
public function __construct(int $invoice_id, ?string $db)
2021-10-03 12:51:42 +02:00
{
$this->invoice_id = $invoice_id;
2021-10-03 12:51:42 +02:00
$this->db = $db;
}
/**
* Execute the job.
*
* @return void
*/
public function handle() : void
{
set_time_limit(0);
if ($this->db) {
2021-10-03 12:51:42 +02:00
MultiDB::setDb($this->db);
}
2021-10-03 12:51:42 +02:00
try {
nlog("autobill {$this->invoice_id}");
$invoice = Invoice::withTrashed()->find($this->invoice_id);
2021-10-03 12:51:42 +02:00
$invoice->service()->autoBill();
} catch (\Exception $e) {
nlog("Failed to capture payment for {$this->invoice_id} ->".$e->getMessage());
2021-10-03 12:51:42 +02:00
}
}
}