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

130 lines
3.9 KiB
PHP
Raw Normal View History

<?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-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
*/
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;
use App\Libraries\MultiDB;
2020-11-09 03:39:42 +01:00
use App\Mail\Engine\PaymentEmailEngine;
use App\Mail\TemplateEmail;
2020-11-09 03:39:42 +01:00
use App\Models\ClientContact;
use App\Models\Company;
use App\Models\Payment;
2020-07-08 14:02:16 +02:00
use App\Utils\Ninja;
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
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
public $email_builder;
2020-11-09 03:39:42 +01:00
public $settings;
/**
* 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
*/
public function __construct(public Payment $payment, private Company $company, private ?ClientContact $contact)
{
2020-11-09 03:39:42 +01:00
$this->settings = $payment->client->getMergedSettings();
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
2020-11-12 04:04:27 +01:00
{
if ($this->company->is_disabled) {
2023-06-24 00:05:30 +02:00
return;
}
2020-09-14 07:14:37 +02:00
if ($this->contact->email) {
2021-02-18 00:30:31 +01:00
MultiDB::setDb($this->company->db);
2020-09-14 07:14:37 +02:00
2021-10-08 07:03:26 +02:00
$this->payment->load('invoices');
2023-02-22 20:22:20 +01:00
2023-03-18 08:24:56 +01:00
if (!$this->contact) {
2023-02-22 20:22:20 +01:00
$this->contact = $this->payment->client->contacts()->first();
2023-03-18 08:24:56 +01:00
}
2023-02-22 20:22:20 +01:00
2021-10-08 07:03:26 +02:00
$this->contact->load('client');
2020-11-09 03:39:42 +01:00
$email_builder = (new PaymentEmailEngine($this->payment, $this->contact))->build();
2023-11-17 22:13:09 +01:00
if($this->settings->payment_email_all_contacts && $this->payment->invoices && $this->payment->invoices->count() >= 1) {
$this->emailAllContacts($email_builder);
2023-11-20 03:53:39 +01:00
return;
2023-11-17 22:13:09 +01:00
}
$invitation = null;
2023-10-24 06:08:13 +02:00
$nmo = new NinjaMailerObject;
if ($this->payment->invoices && $this->payment->invoices->count() >= 1) {
2023-10-24 06:08:13 +02:00
2023-10-26 04:57:44 +02:00
if($this->contact) {
$invitation = $this->payment->invoices->first()->invitations()->where('client_contact_id', $this->contact->id)->first();
2023-10-26 04:57:44 +02:00
} else {
2023-10-24 06:08:13 +02:00
$invitation = $this->payment->invoices->first()->invitations()->first();
2023-10-26 04:57:44 +02:00
}
2023-10-24 06:08:13 +02:00
2023-10-26 04:57:44 +02:00
if($invitation) {
2023-10-24 06:08:13 +02:00
$nmo->invitation = $invitation;
2023-10-26 04:57:44 +02:00
}
}
$nmo->mailable = new TemplateEmail($email_builder, $this->contact, $invitation);
2021-02-18 00:30:31 +01:00
$nmo->to_user = $this->contact;
$nmo->settings = $this->settings;
$nmo->company = $this->company;
$nmo->entity = $this->payment;
2023-02-21 23:29:29 +01:00
(new NinjaMailerJob($nmo))->handle();
2023-06-24 02:09:14 +02:00
event(new PaymentWasEmailed($this->payment, $this->payment->company, $this->contact, Ninja::eventVars(auth()->user() ? auth()->user()->id : null)));
}
}
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
$nmo = new NinjaMailerObject;
$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)));
});
}
}