2020-02-12 10:21:06 +01:00
|
|
|
<?php
|
2020-11-12 02:43:32 +01:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2020-02-15 10:01:15 +01:00
|
|
|
|
2020-02-12 10:21:06 +01:00
|
|
|
namespace App\Jobs\Payment;
|
|
|
|
|
2020-11-09 03:39:42 +01:00
|
|
|
use App\DataMapper\Analytics\EmailInvoiceFailure;
|
2020-02-15 10:01:15 +01:00
|
|
|
use App\Events\Invoice\InvoiceWasEmailed;
|
|
|
|
use App\Events\Invoice\InvoiceWasEmailedAndFailed;
|
2020-02-12 10:21:06 +01:00
|
|
|
use App\Events\Payment\PaymentWasEmailed;
|
|
|
|
use App\Events\Payment\PaymentWasEmailedAndFailed;
|
2020-02-15 10:01:15 +01:00
|
|
|
use App\Helpers\Email\BuildEmail;
|
2020-09-14 07:14:37 +02:00
|
|
|
use App\Jobs\Mail\BaseMailerJob;
|
2020-02-15 10:01:15 +01:00
|
|
|
use App\Jobs\Utils\SystemLogger;
|
2020-02-12 10:21:06 +01:00
|
|
|
use App\Libraries\MultiDB;
|
2020-11-09 03:39:42 +01:00
|
|
|
use App\Mail\Engine\PaymentEmailEngine;
|
2020-02-12 10:21:06 +01:00
|
|
|
use App\Mail\TemplateEmail;
|
2020-11-09 03:39:42 +01:00
|
|
|
use App\Models\ClientContact;
|
2020-02-12 10:21:06 +01:00
|
|
|
use App\Models\Company;
|
|
|
|
use App\Models\Payment;
|
|
|
|
use App\Models\SystemLog;
|
2020-07-08 14:02:16 +02:00
|
|
|
use App\Utils\Ninja;
|
2020-02-12 10:21:06 +01:00
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
use Illuminate\Support\Facades\Mail;
|
2020-11-09 03:39:42 +01:00
|
|
|
use Turbo124\Beacon\Facades\LightLogs;
|
2020-02-12 10:21:06 +01:00
|
|
|
|
2020-09-14 07:14:37 +02:00
|
|
|
class EmailPayment extends BaseMailerJob implements ShouldQueue
|
2020-02-12 10:21:06 +01:00
|
|
|
{
|
|
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
|
|
|
|
public $payment;
|
|
|
|
|
2020-02-15 10:01:15 +01:00
|
|
|
public $email_builder;
|
|
|
|
|
|
|
|
private $contact;
|
2020-02-12 10:21:06 +01:00
|
|
|
|
2020-11-01 04:19:03 +01:00
|
|
|
private $company;
|
2020-11-09 03:39:42 +01:00
|
|
|
|
|
|
|
public $settings;
|
2020-11-09 03:57:34 +01:00
|
|
|
|
2020-02-12 10:21:06 +01:00
|
|
|
/**
|
|
|
|
* Create a new job instance.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Payment $payment
|
|
|
|
* @param $email_builder
|
|
|
|
* @param $contact
|
2020-11-01 04:19:03 +01:00
|
|
|
* @param $company
|
2020-02-12 10:21:06 +01:00
|
|
|
*/
|
2020-11-09 03:39:42 +01:00
|
|
|
public function __construct(Payment $payment, Company $company, ClientContact $contact)
|
2020-03-21 06:37:30 +01:00
|
|
|
{
|
2020-02-12 10:21:06 +01:00
|
|
|
$this->payment = $payment;
|
2020-02-15 10:01:15 +01:00
|
|
|
$this->contact = $contact;
|
2020-11-01 04:19:03 +01:00
|
|
|
$this->company = $company;
|
2020-11-09 03:39:42 +01:00
|
|
|
$this->settings = $payment->client->getMergedSettings();
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-02-12 10:21:06 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the job.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function handle()
|
2020-11-12 04:04:27 +01:00
|
|
|
{
|
|
|
|
|
2020-11-01 04:19:03 +01:00
|
|
|
if($this->company->is_disabled)
|
|
|
|
return true;
|
|
|
|
|
2020-02-15 10:01:15 +01:00
|
|
|
if ($this->contact->email) {
|
2020-09-14 07:14:37 +02:00
|
|
|
|
2020-11-09 03:39:42 +01:00
|
|
|
MultiDB::setDb($this->company->db);
|
2020-09-14 07:14:37 +02:00
|
|
|
|
|
|
|
//if we need to set an email driver do it now
|
|
|
|
$this->setMailDriver();
|
|
|
|
|
2020-11-09 03:39:42 +01:00
|
|
|
$email_builder = (new PaymentEmailEngine($this->payment, $this->contact))->build();
|
|
|
|
|
2020-11-12 04:04:27 +01:00
|
|
|
try{
|
|
|
|
|
|
|
|
$mail = Mail::to($this->contact->email, $this->contact->present()->name());
|
|
|
|
$mail->send(new TemplateEmail($email_builder, $this->contact->user, $this->contact->client));
|
|
|
|
|
|
|
|
}catch(\Exception $e) {
|
|
|
|
|
|
|
|
info("mailing failed with message " . $e->getMessage());
|
2020-11-12 05:37:50 +01:00
|
|
|
event(new PaymentWasEmailedAndFailed($this->payment, $this->company, Mail::failures(), Ninja::eventVars()));
|
|
|
|
return $this->logMailError($e->getMessage(), $this->payment->client);
|
|
|
|
|
2020-11-12 04:04:27 +01:00
|
|
|
}
|
2020-02-12 10:21:06 +01:00
|
|
|
|
2020-11-12 05:37:50 +01:00
|
|
|
// if (count(Mail::failures()) > 0) {
|
|
|
|
// info("logging mail failures");
|
|
|
|
// info(print_r(Mail::failures(),1));
|
2020-02-12 10:21:06 +01:00
|
|
|
|
2020-11-12 05:37:50 +01:00
|
|
|
|
|
|
|
// }
|
2020-02-12 10:21:06 +01:00
|
|
|
|
2020-07-08 14:02:16 +02:00
|
|
|
event(new PaymentWasEmailed($this->payment, $this->payment->company, Ninja::eventVars()));
|
2020-02-12 10:21:06 +01:00
|
|
|
|
2020-02-15 10:01:15 +01:00
|
|
|
}
|
2020-02-12 10:21:06 +01:00
|
|
|
}
|
|
|
|
|
2020-11-09 03:39:42 +01:00
|
|
|
public function failed($exception = null)
|
2020-02-12 10:21:06 +01:00
|
|
|
{
|
2020-11-09 03:39:42 +01:00
|
|
|
info('the job failed');
|
|
|
|
|
|
|
|
$job_failure = new EmailInvoiceFailure();
|
|
|
|
$job_failure->string_metric5 = 'payment';
|
|
|
|
$job_failure->string_metric6 = $exception->getMessage();
|
|
|
|
|
|
|
|
LightLogs::create($job_failure)
|
|
|
|
->batch();
|
|
|
|
|
2020-02-12 10:21:06 +01:00
|
|
|
}
|
2020-11-09 03:39:42 +01:00
|
|
|
|
2020-02-12 10:21:06 +01:00
|
|
|
}
|