1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-12 22:22:32 +01:00
invoiceninja/app/Mail/Admin/ClientPaymentFailureObject.php

151 lines
4.5 KiB
PHP
Raw Normal View History

2021-02-02 06:11:33 +01:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2024-04-12 06:15:41 +02:00
* @copyright Copyright (c) 2024. 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;
2024-08-29 06:36:38 +02:00
use stdClass;
use App\Utils\Ninja;
2021-02-02 06:11:33 +01:00
use App\Models\Invoice;
use App\Utils\HtmlEngine;
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;
2024-08-29 06:36:38 +02:00
use App\DataMapper\EmailTemplateDefaults;
use App\Utils\Number;
2021-02-02 06:11:33 +01:00
class ClientPaymentFailureObject
{
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()
{
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');
$t = app('translator');
2021-10-13 09:56:10 +02:00
App::setLocale($this->client->locale());
2021-06-29 11:46:40 +02:00
$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-08-29 06:36:38 +02:00
$data = $this->getData();
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();
2024-08-29 06:36:38 +02:00
$mail_obj->subject = $data['subject'];
2021-02-02 06:11:33 +01:00
$mail_obj->data = $this->getData();
2024-08-29 06:36:38 +02:00
$mail_obj->markdown = 'email.template.client';
2021-02-02 06:11:33 +01:00
$mail_obj->tag = $this->company->company_key;
$mail_obj->text_view = 'email.template.text';
2021-02-02 06:11:33 +01:00
return $mail_obj;
}
private function getAmount()
{
2024-08-29 06:36:38 +02:00
$amount = array_sum(array_column($this->payment_hash->invoices(), 'amount')) + $this->payment_hash->fee_total;
return Number::formatMoney($amount, $this->client);
2021-02-02 06:11:33 +01:00
}
private function getSubject()
{
2024-08-29 06:36:38 +02:00
if(strlen($this->client->getSetting('email_subject_payment_failed') ?? '') > 2){
return $this->client->getSetting('email_subject_payment_failed');
}
else {
return EmailTemplateDefaults::getDefaultTemplate('email_subject_payment_failed', $this->client->locale());
}
}
private function getBody()
{
if(strlen($this->client->getSetting('email_template_payment_failed') ?? '') > 2) {
return $this->client->getSetting('email_template_payment_failed');
} else {
return EmailTemplateDefaults::getDefaultTemplate('email_template_payment_failed', $this->client->locale());
}
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();
if (! $invitation) {
2021-11-16 03:30:32 +01:00
throw new \Exception('Unable to find invitation for reference');
}
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();
2024-08-29 06:36:38 +02:00
2024-08-30 05:50:03 +02:00
$html_variables['$payment_error'] = $this->error ?? '';
2024-08-29 06:36:38 +02:00
$html_variables['$total'] = $this->getAmount();
$signature = str_replace(array_keys($html_variables), array_values($html_variables), $signature);
2024-08-29 06:36:38 +02:00
$subject = str_replace(array_keys($html_variables), array_values($html_variables), $this->getSubject());
$content = str_replace(array_keys($html_variables), array_values($html_variables), $this->getBody());
2021-02-02 06:11:33 +01:00
$data = [
2024-08-29 06:36:38 +02:00
'subject' => $subject,
'body' => $content,
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(),
'button' => ctrans('texts.pay_now'),
2021-11-12 22:34:58 +01:00
'additional_info' => false,
'company' => $this->company,
'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;
}
}