2021-02-02 06:11:33 +01:00
|
|
|
<?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-02-02 06:11:33 +01:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-02-02 06:11:33 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Mail\Admin;
|
|
|
|
|
|
|
|
use App\Models\Invoice;
|
2021-03-31 03:55:33 +02:00
|
|
|
use App\Utils\HtmlEngine;
|
2021-06-29 11:46:40 +02:00
|
|
|
use App\Utils\Ninja;
|
2021-02-02 06:11:33 +01:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2021-06-29 11:46:40 +02:00
|
|
|
use Illuminate\Support\Facades\App;
|
2021-02-02 06:11:33 +01:00
|
|
|
use stdClass;
|
|
|
|
|
|
|
|
class ClientPaymentFailureObject
|
|
|
|
{
|
2022-06-21 11:57:17 +02:00
|
|
|
use MakesHash;
|
2021-02-02 06:11:33 +01:00
|
|
|
|
|
|
|
public $client;
|
|
|
|
|
|
|
|
public $error;
|
|
|
|
|
|
|
|
public $company;
|
|
|
|
|
|
|
|
public $payment_hash;
|
|
|
|
|
|
|
|
private $invoices;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new job instance.
|
|
|
|
*
|
|
|
|
* @param $client
|
|
|
|
* @param $message
|
|
|
|
* @param $company
|
|
|
|
* @param $amount
|
|
|
|
*/
|
|
|
|
public function __construct($client, $error, $company, $payment_hash)
|
|
|
|
{
|
|
|
|
$this->client = $client;
|
|
|
|
|
|
|
|
$this->error = $error;
|
|
|
|
|
|
|
|
$this->company = $company;
|
|
|
|
|
|
|
|
$this->payment_hash = $payment_hash;
|
|
|
|
|
|
|
|
$this->company = $company;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function build()
|
|
|
|
{
|
2022-06-21 11:57:17 +02:00
|
|
|
if (! $this->payment_hash) {
|
2021-11-08 00:17:49 +01:00
|
|
|
return;
|
|
|
|
}
|
2021-02-02 06:11:33 +01:00
|
|
|
|
2021-06-29 11:46:40 +02:00
|
|
|
App::forgetInstance('translator');
|
|
|
|
/* Init a new copy of the translator*/
|
|
|
|
$t = app('translator');
|
|
|
|
/* Set the locale*/
|
2021-10-13 09:56:10 +02:00
|
|
|
App::setLocale($this->client->locale());
|
2021-06-29 11:46:40 +02:00
|
|
|
/* Set customized translations _NOW_ */
|
|
|
|
$t->replace(Ninja::transformTranslations($this->company->settings));
|
|
|
|
|
2021-11-16 03:30:32 +01:00
|
|
|
$this->invoices = Invoice::withTrashed()->whereIn('id', $this->transformKeys(array_column($this->payment_hash->invoices(), 'invoice_id')))->get();
|
2021-02-02 06:11:33 +01:00
|
|
|
|
2024-01-14 05:05:00 +01:00
|
|
|
$mail_obj = new stdClass();
|
2021-02-02 06:11:33 +01:00
|
|
|
$mail_obj->amount = $this->getAmount();
|
|
|
|
$mail_obj->subject = $this->getSubject();
|
|
|
|
$mail_obj->data = $this->getData();
|
2021-11-12 22:34:58 +01:00
|
|
|
$mail_obj->markdown = 'email.client.generic';
|
2021-02-02 06:11:33 +01:00
|
|
|
$mail_obj->tag = $this->company->company_key;
|
2023-10-10 05:29:21 +02:00
|
|
|
$mail_obj->text_view = 'email.template.text';
|
2021-02-02 06:11:33 +01:00
|
|
|
|
|
|
|
return $mail_obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getAmount()
|
|
|
|
{
|
2022-06-21 11:57:17 +02:00
|
|
|
return array_sum(array_column($this->payment_hash->invoices(), 'amount')) + $this->payment_hash->fee_total;
|
2021-02-02 06:11:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private function getSubject()
|
|
|
|
{
|
|
|
|
return
|
|
|
|
ctrans(
|
|
|
|
'texts.notification_invoice_payment_failed_subject',
|
2022-06-21 11:57:17 +02:00
|
|
|
['invoice' => implode(',', $this->invoices->pluck('number')->toArray())]
|
2021-02-02 06:11:33 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getData()
|
|
|
|
{
|
2021-11-16 03:30:32 +01:00
|
|
|
$invitation = $this->invoices->first()->invitations->first();
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (! $invitation) {
|
2021-11-16 03:30:32 +01:00
|
|
|
throw new \Exception('Unable to find invitation for reference');
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2021-11-16 03:30:32 +01:00
|
|
|
|
2021-02-02 06:11:33 +01:00
|
|
|
$signature = $this->client->getSetting('email_signature');
|
2021-11-16 03:30:32 +01:00
|
|
|
$html_variables = (new HtmlEngine($invitation))->makeValues();
|
2021-03-31 03:55:33 +02:00
|
|
|
$signature = str_replace(array_keys($html_variables), array_values($html_variables), $signature);
|
2021-02-02 06:11:33 +01:00
|
|
|
|
|
|
|
$data = [
|
|
|
|
'title' => ctrans(
|
|
|
|
'texts.notification_invoice_payment_failed_subject',
|
|
|
|
[
|
2022-06-21 11:57:17 +02:00
|
|
|
'invoice' => $this->invoices->first()->number,
|
2021-02-02 06:11:33 +01:00
|
|
|
]
|
|
|
|
),
|
2022-09-05 05:12:47 +02:00
|
|
|
'greeting' => ctrans('texts.email_salutation', ['name' => $this->client->present()->name()]),
|
2022-06-21 11:57:17 +02:00
|
|
|
'content' => ctrans('texts.client_payment_failure_body', ['invoice' => implode(',', $this->invoices->pluck('number')->toArray()), 'amount' => $this->getAmount()]),
|
2021-02-02 06:11:33 +01:00
|
|
|
'signature' => $signature,
|
|
|
|
'logo' => $this->company->present()->logo(),
|
|
|
|
'settings' => $this->client->getMergedSettings(),
|
|
|
|
'whitelabel' => $this->company->account->isPaid() ? true : false,
|
2021-11-14 05:35:23 +01:00
|
|
|
'url' => $this->invoices->first()->invitations->first()->getPaymentLink(),
|
2022-01-15 12:22:05 +01:00
|
|
|
'button' => ctrans('texts.pay_now'),
|
2021-11-12 22:34:58 +01:00
|
|
|
'additional_info' => false,
|
|
|
|
'company' => $this->company,
|
2023-10-10 05:29:21 +02:00
|
|
|
'text_body' => ctrans('texts.client_payment_failure_body', ['invoice' => implode(',', $this->invoices->pluck('number')->toArray()), 'amount' => $this->getAmount()]),
|
|
|
|
'additional_info' => $this->error ?? '',
|
2021-02-02 06:11:33 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
}
|