2017-01-11 11:32:13 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Jobs;
|
|
|
|
|
|
|
|
use App\Models\Invoice;
|
|
|
|
use App\Ninja\Mailers\ContactMailer;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
2017-01-30 20:40:43 +01:00
|
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
2017-01-11 11:32:13 +01:00
|
|
|
use Monolog\Logger;
|
2017-04-25 14:05:41 +02:00
|
|
|
use Auth;
|
2017-04-25 16:58:55 +02:00
|
|
|
use App;
|
2017-01-11 11:32:13 +01:00
|
|
|
|
|
|
|
/**
|
2017-01-30 20:40:43 +01:00
|
|
|
* Class SendInvoiceEmail.
|
2017-01-11 11:32:13 +01:00
|
|
|
*/
|
|
|
|
class SendInvoiceEmail extends Job implements ShouldQueue
|
|
|
|
{
|
|
|
|
use InteractsWithQueue, SerializesModels;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var Invoice
|
|
|
|
*/
|
2022-01-02 13:01:07 +01:00
|
|
|
public $invoice;
|
2017-01-11 11:32:13 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
protected $reminder;
|
|
|
|
|
2017-02-05 22:29:11 +01:00
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $template;
|
|
|
|
|
2017-04-25 14:05:41 +02:00
|
|
|
/**
|
|
|
|
* @var int
|
|
|
|
*/
|
|
|
|
protected $userId;
|
|
|
|
|
2017-05-04 19:08:27 +02:00
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $server;
|
|
|
|
|
2018-02-12 10:34:48 +01:00
|
|
|
/**
|
|
|
|
* @var Proposal
|
|
|
|
*/
|
|
|
|
protected $proposal;
|
|
|
|
|
2017-01-11 11:32:13 +01:00
|
|
|
/**
|
|
|
|
* Create a new job instance.
|
|
|
|
*
|
|
|
|
* @param Invoice $invoice
|
2017-01-30 20:40:43 +01:00
|
|
|
* @param string $pdf
|
|
|
|
* @param bool $reminder
|
2017-01-30 20:49:42 +01:00
|
|
|
* @param mixed $pdfString
|
2017-01-11 11:32:13 +01:00
|
|
|
*/
|
2018-02-12 10:34:48 +01:00
|
|
|
public function __construct(Invoice $invoice, $userId = false, $reminder = false, $template = false, $proposal = false)
|
2017-01-11 11:32:13 +01:00
|
|
|
{
|
|
|
|
$this->invoice = $invoice;
|
2017-04-25 14:05:41 +02:00
|
|
|
$this->userId = $userId;
|
2017-01-11 11:32:13 +01:00
|
|
|
$this->reminder = $reminder;
|
2017-02-05 22:29:11 +01:00
|
|
|
$this->template = $template;
|
2018-02-12 10:34:48 +01:00
|
|
|
$this->proposal = $proposal;
|
2017-05-04 19:08:27 +02:00
|
|
|
$this->server = config('database.default');
|
2017-01-11 11:32:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the job.
|
|
|
|
*
|
|
|
|
* @param ContactMailer $mailer
|
|
|
|
*/
|
|
|
|
public function handle(ContactMailer $mailer)
|
|
|
|
{
|
2017-04-25 14:05:41 +02:00
|
|
|
// send email as user
|
2017-04-25 16:58:55 +02:00
|
|
|
if (App::runningInConsole() && $this->userId) {
|
2017-04-26 08:16:36 +02:00
|
|
|
Auth::onceUsingId($this->userId);
|
2017-04-25 14:05:41 +02:00
|
|
|
}
|
|
|
|
|
2018-02-12 10:34:48 +01:00
|
|
|
$mailer->sendInvoice($this->invoice, $this->reminder, $this->template, $this->proposal);
|
2017-04-25 14:05:41 +02:00
|
|
|
|
2017-04-25 16:58:55 +02:00
|
|
|
if (App::runningInConsole() && $this->userId) {
|
2017-04-25 14:05:41 +02:00
|
|
|
Auth::logout();
|
|
|
|
}
|
2017-01-11 11:32:13 +01:00
|
|
|
}
|
|
|
|
|
2017-01-30 20:40:43 +01:00
|
|
|
/*
|
2017-01-11 11:32:13 +01:00
|
|
|
* Handle a job failure.
|
|
|
|
*
|
|
|
|
* @param ContactMailer $mailer
|
|
|
|
* @param Logger $logger
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
public function failed(ContactMailer $mailer, Logger $logger)
|
|
|
|
{
|
|
|
|
$this->jobName = $this->job->getName();
|
|
|
|
|
|
|
|
parent::failed($mailer, $logger);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
}
|