mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
60 lines
1.1 KiB
PHP
60 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs;
|
|
|
|
use App\Models\Invoice;
|
|
use App\Services\PushService;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
/**
|
|
* Class SendInvoiceEmail.
|
|
*/
|
|
class SendPushNotification extends Job implements ShouldQueue
|
|
{
|
|
use InteractsWithQueue, SerializesModels;
|
|
|
|
/**
|
|
* @var Invoice
|
|
*/
|
|
protected $invoice;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $type;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $server;
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
|
|
* @param Invoice $invoice
|
|
* @param mixed $type
|
|
*/
|
|
public function __construct($invoice, $type)
|
|
{
|
|
$this->invoice = $invoice;
|
|
$this->type = $type;
|
|
$this->server = config('database.default');
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @param PushService $pushService
|
|
*/
|
|
public function handle(PushService $pushService)
|
|
{
|
|
if (config('queue.default') !== 'sync') {
|
|
$this->invoice->account->loadLocalizationSettings();
|
|
}
|
|
|
|
$pushService->sendNotification($this->invoice, $this->type);
|
|
}
|
|
}
|