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
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-11-12 02:43:32 +01:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-11-12 02:43:32 +01:00
|
|
|
*/
|
2020-02-15 10:01:15 +01:00
|
|
|
|
2020-02-12 10:21:06 +01:00
|
|
|
namespace App\Jobs\Payment;
|
|
|
|
|
|
|
|
use App\Events\Payment\PaymentWasEmailed;
|
2021-02-18 00:30:31 +01:00
|
|
|
use App\Jobs\Mail\NinjaMailerJob;
|
|
|
|
use App\Jobs\Mail\NinjaMailerObject;
|
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;
|
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;
|
|
|
|
|
2021-02-18 00:30:31 +01:00
|
|
|
class EmailPayment implements ShouldQueue
|
2020-02-12 10:21:06 +01:00
|
|
|
{
|
2024-01-14 05:05:00 +01:00
|
|
|
use Dispatchable;
|
|
|
|
use InteractsWithQueue;
|
|
|
|
use Queueable;
|
|
|
|
use SerializesModels;
|
2020-02-12 10:21:06 +01:00
|
|
|
|
2020-02-15 10:01:15 +01:00
|
|
|
public $email_builder;
|
|
|
|
|
2020-11-09 03:39:42 +01:00
|
|
|
public $settings;
|
2022-06-21 11:57:17 +02: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
|
|
|
*/
|
2023-10-08 06:06:34 +02:00
|
|
|
public function __construct(public Payment $payment, private Company $company, private ?ClientContact $contact)
|
2020-03-21 06:37:30 +01:00
|
|
|
{
|
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
|
|
|
{
|
2024-02-04 05:06:24 +01:00
|
|
|
if ($this->company->is_disabled || (!$this->contact?->email ?? false)) {
|
2024-01-30 03:51:56 +01:00
|
|
|
nlog("company disabled - or - contact email not found");
|
2023-06-24 00:05:30 +02:00
|
|
|
return;
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2020-09-14 07:14:37 +02:00
|
|
|
|
2024-01-29 05:43:40 +01:00
|
|
|
MultiDB::setDb($this->company->db);
|
2020-09-14 07:14:37 +02:00
|
|
|
|
2024-01-29 05:43:40 +01:00
|
|
|
$this->payment->load('invoices');
|
2023-02-22 20:22:20 +01:00
|
|
|
|
2024-01-29 05:43:40 +01:00
|
|
|
if (!$this->contact) {
|
|
|
|
$this->contact = $this->payment->client->contacts()->orderBy('is_primary', 'desc')->first();
|
|
|
|
}
|
2024-01-14 05:05:00 +01:00
|
|
|
|
2024-01-29 05:43:40 +01:00
|
|
|
$this->contact->load('client');
|
2021-10-08 07:03:26 +02:00
|
|
|
|
2024-01-29 05:43:40 +01:00
|
|
|
$email_builder = (new PaymentEmailEngine($this->payment, $this->contact))->build();
|
2020-11-09 03:39:42 +01:00
|
|
|
|
2024-01-29 05:43:40 +01:00
|
|
|
if($this->payment->client->getSetting('payment_email_all_contacts') && $this->payment->invoices && $this->payment->invoices->count() >= 1) {
|
|
|
|
$this->emailAllContacts($email_builder);
|
|
|
|
return;
|
|
|
|
}
|
2023-11-17 22:13:09 +01:00
|
|
|
|
2024-01-29 05:43:40 +01:00
|
|
|
$invitation = null;
|
2021-03-31 03:55:33 +02:00
|
|
|
|
2024-01-29 05:43:40 +01:00
|
|
|
$nmo = new NinjaMailerObject();
|
2023-10-24 06:08:13 +02:00
|
|
|
|
2024-01-29 05:43:40 +01:00
|
|
|
if ($this->payment->invoices && $this->payment->invoices->count() >= 1) {
|
2023-10-24 06:08:13 +02:00
|
|
|
|
2024-01-29 05:43:40 +01:00
|
|
|
if($this->contact) {
|
|
|
|
$invitation = $this->payment->invoices->first()->invitations()->where('client_contact_id', $this->contact->id)->first();
|
|
|
|
} else {
|
|
|
|
$invitation = $this->payment->invoices->first()->invitations()->first();
|
|
|
|
}
|
2023-10-24 06:08:13 +02:00
|
|
|
|
2024-01-29 05:43:40 +01:00
|
|
|
if($invitation) {
|
|
|
|
$nmo->invitation = $invitation;
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2024-01-29 05:43:40 +01:00
|
|
|
}
|
2021-03-31 03:55:33 +02:00
|
|
|
|
2024-01-29 05:43:40 +01:00
|
|
|
$nmo->mailable = new TemplateEmail($email_builder, $this->contact, $invitation);
|
|
|
|
$nmo->to_user = $this->contact;
|
|
|
|
$nmo->settings = $this->settings;
|
|
|
|
$nmo->company = $this->company;
|
|
|
|
$nmo->entity = $this->payment;
|
2021-02-18 00:30:31 +01:00
|
|
|
|
2024-01-29 05:43:40 +01:00
|
|
|
(new NinjaMailerJob($nmo))->handle();
|
2020-02-12 10:21:06 +01:00
|
|
|
|
2024-01-29 05:43:40 +01:00
|
|
|
event(new PaymentWasEmailed($this->payment, $this->payment->company, $this->contact, Ninja::eventVars(auth()->user() ? auth()->user()->id : null)));
|
|
|
|
|
2020-02-12 10:21:06 +01:00
|
|
|
}
|
2023-11-17 22:13:09 +01:00
|
|
|
|
|
|
|
private function emailAllContacts($email_builder): void
|
|
|
|
{
|
|
|
|
|
|
|
|
$invoice = $this->payment->invoices->first();
|
|
|
|
|
2023-11-26 08:41:42 +01:00
|
|
|
$invoice->invitations->each(function ($invite) use ($email_builder) {
|
2023-11-17 22:13:09 +01:00
|
|
|
|
2024-01-14 05:05:00 +01:00
|
|
|
$nmo = new NinjaMailerObject();
|
2023-11-17 22:13:09 +01:00
|
|
|
$nmo->mailable = new TemplateEmail($email_builder, $invite->contact, $invite);
|
|
|
|
$nmo->to_user = $invite->contact;
|
|
|
|
$nmo->settings = $this->settings;
|
|
|
|
$nmo->company = $this->company;
|
|
|
|
$nmo->entity = $this->payment;
|
|
|
|
(new NinjaMailerJob($nmo))->handle();
|
|
|
|
|
|
|
|
event(new PaymentWasEmailed($this->payment, $this->payment->company, $invite->contact, Ninja::eventVars(auth()->user() ? auth()->user()->id : null)));
|
|
|
|
|
|
|
|
});
|
2024-01-14 05:05:00 +01:00
|
|
|
|
2023-11-17 22:13:09 +01:00
|
|
|
}
|
2020-02-12 10:21:06 +01:00
|
|
|
}
|