1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Mail/Engine/InvoiceEmailEngine.php

189 lines
7.5 KiB
PHP
Raw Normal View History

2020-10-27 12:57:12 +01:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
2020-10-27 12:57:12 +01:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2020-10-27 12:57:12 +01:00
*/
namespace App\Mail\Engine;
2020-11-07 11:13:04 +01:00
use App\DataMapper\EmailTemplateDefaults;
2021-07-07 08:55:11 +02:00
use App\Jobs\Entity\CreateEntityPdf;
2021-03-16 22:08:23 +01:00
use App\Models\Account;
2022-05-13 11:42:49 +02:00
use App\Models\Expense;
use App\Models\Task;
2020-10-28 07:27:10 +01:00
use App\Utils\HtmlEngine;
use App\Utils\Ninja;
2020-10-27 12:57:12 +01:00
use App\Utils\Number;
2022-05-13 11:42:49 +02:00
use App\Utils\Traits\MakesHash;
use Illuminate\Support\Facades\App;
use Illuminate\Support\Facades\Lang;
2020-10-27 12:57:12 +01:00
2020-11-25 15:19:52 +01:00
class InvoiceEmailEngine extends BaseEmailEngine
2020-10-27 12:57:12 +01:00
{
2022-05-13 11:42:49 +02:00
use MakesHash;
2020-11-25 15:19:52 +01:00
public $invitation;
2020-10-27 12:57:12 +01:00
2020-11-25 15:19:52 +01:00
public $client;
2020-10-27 12:57:12 +01:00
2020-11-25 15:19:52 +01:00
public $invoice;
2020-10-27 12:57:12 +01:00
2020-11-25 15:19:52 +01:00
public $contact;
2020-10-27 12:57:12 +01:00
public $reminder_template;
2020-11-05 11:14:30 +01:00
public $template_data;
public function __construct($invitation, $reminder_template, $template_data)
2020-10-27 12:57:12 +01:00
{
2020-11-25 15:19:52 +01:00
$this->invitation = $invitation;
2020-10-27 12:57:12 +01:00
$this->reminder_template = $reminder_template;
$this->client = $invitation->contact->client;
$this->invoice = $invitation->invoice;
$this->contact = $invitation->contact;
2020-11-05 11:14:30 +01:00
$this->template_data = $template_data;
2020-10-27 12:57:12 +01:00
}
public function build()
{
App::forgetInstance('translator');
2021-05-31 12:40:34 +02:00
$t = app('translator');
$t->replace(Ninja::transformTranslations($this->client->getMergedSettings()));
if ($this->reminder_template == 'endless_reminder') {
2021-06-10 03:15:21 +02:00
$this->reminder_template = 'reminder_endless';
}
2021-06-10 03:15:21 +02:00
if (is_array($this->template_data) && array_key_exists('body', $this->template_data) && strlen($this->template_data['body']) > 0) {
2020-11-05 11:14:30 +01:00
$body_template = $this->template_data['body'];
2020-11-25 15:19:52 +01:00
} elseif (strlen($this->client->getSetting('email_template_'.$this->reminder_template)) > 0) {
2020-11-07 22:17:30 +01:00
$body_template = $this->client->getSetting('email_template_'.$this->reminder_template);
2020-11-25 15:19:52 +01:00
} else {
2020-11-07 22:17:30 +01:00
$body_template = EmailTemplateDefaults::getDefaultTemplate('email_template_'.$this->reminder_template, $this->client->locale());
2020-11-07 11:13:04 +01:00
}
2020-10-27 12:57:12 +01:00
/* Use default translations if a custom message has not been set*/
if (iconv_strlen($body_template) == 0) {
$body_template = trans(
'texts.invoice_message',
[
'invoice' => $this->invoice->number,
'company' => $this->invoice->company->present()->name(),
'amount' => Number::formatMoney($this->invoice->balance, $this->client),
],
null,
$this->client->locale()
);
$body_template .= '<div class="center">$view_button</div>';
2020-10-27 12:57:12 +01:00
}
2022-03-04 00:55:02 +01:00
$text_body = trans(
'texts.invoice_message',
[
'invoice' => $this->invoice->number,
'company' => $this->invoice->company->present()->name(),
'amount' => Number::formatMoney($this->invoice->balance, $this->client),
],
null,
$this->client->locale()
)."\n\n".$this->invitation->getLink();
2022-03-04 00:55:02 +01:00
if (is_array($this->template_data) && array_key_exists('subject', $this->template_data) && strlen($this->template_data['subject']) > 0) {
2020-11-05 11:14:30 +01:00
$subject_template = $this->template_data['subject'];
2020-11-25 15:19:52 +01:00
} elseif (strlen($this->client->getSetting('email_subject_'.$this->reminder_template)) > 0) {
2020-11-07 22:17:30 +01:00
$subject_template = $this->client->getSetting('email_subject_'.$this->reminder_template);
2020-11-25 15:19:52 +01:00
} else {
2020-11-07 22:17:30 +01:00
$subject_template = EmailTemplateDefaults::getDefaultTemplate('email_subject_'.$this->reminder_template, $this->client->locale());
2020-11-07 11:13:04 +01:00
}
2020-10-27 12:57:12 +01:00
if (iconv_strlen($subject_template) == 0) {
$subject_template = trans(
'texts.invoice_subject',
[
'number' => $this->invoice->number,
'account' => $this->invoice->company->present()->name(),
],
null,
$this->client->locale()
);
}
$this->setTemplate($this->client->getSetting('email_style'))
->setContact($this->contact)
2020-10-28 07:27:10 +01:00
->setVariables((new HtmlEngine($this->invitation))->makeValues())//move make values into the htmlengine
2020-10-27 12:57:12 +01:00
->setSubject($subject_template)
->setBody($body_template)
->setFooter("<a href='{$this->invitation->getLink()}'>".ctrans('texts.view_invoice').'</a>')
->setViewLink($this->invitation->getLink())
2021-02-22 01:18:52 +01:00
->setViewText(ctrans('texts.view_invoice'))
2022-03-04 00:55:02 +01:00
->setInvitation($this->invitation)
->setTextBody($text_body);
2020-10-27 12:57:12 +01:00
2021-03-16 22:08:23 +01:00
if ($this->client->getSetting('pdf_email_attachment') !== false && $this->invoice->company->account->hasFeature(Account::FEATURE_PDF_ATTACHMENT)) {
if (Ninja::isHosted()) {
2021-06-12 13:50:01 +02:00
$this->setAttachments([$this->invoice->pdf_file_path($this->invitation, 'url', true)]);
} else {
2021-06-12 13:50:01 +02:00
$this->setAttachments([$this->invoice->pdf_file_path($this->invitation)]);
}
2021-01-08 11:19:26 +01:00
}
//attach third party documents
if ($this->client->getSetting('document_email_attachment') !== false && $this->invoice->company->account->hasFeature(Account::FEATURE_DOCUMENTS)) {
2021-01-08 11:19:26 +01:00
// Storage::url
foreach ($this->invoice->documents as $document) {
2022-06-24 16:11:10 +02:00
$this->setAttachments([['path' => $document->filePath(), 'name' => $document->name, 'mime' => NULL]]);
2021-01-08 11:19:26 +01:00
}
foreach ($this->invoice->company->documents as $document) {
2022-06-24 16:11:10 +02:00
$this->setAttachments([['path' => $document->filePath(), 'name' => $document->name, 'mime' => NULL]]);
}
2022-05-13 11:42:49 +02:00
$line_items = $this->invoice->line_items;
2022-05-15 12:43:50 +02:00
foreach ($line_items as $item) {
2022-05-15 12:43:50 +02:00
$expense_ids = [];
if (property_exists($item, 'expense_id')) {
2022-05-13 11:42:49 +02:00
$expense_ids[] = $item->expense_id;
}
if (count($expense_ids) > 0) {
2022-05-13 11:42:49 +02:00
$expenses = Expense::whereIn('id', $this->transformKeys($expense_ids))
->where('invoice_documents', 1)
->cursor()
->each(function ($expense) {
foreach ($expense->documents as $document) {
2022-06-24 16:11:10 +02:00
$this->setAttachments([['path' => $document->filePath(), 'name' => $document->name, 'mime' => NULL]]);
}
2022-05-13 11:42:49 +02:00
});
}
2022-05-15 12:14:14 +02:00
$task_ids = [];
2022-05-15 12:43:50 +02:00
if (property_exists($item, 'task_id')) {
$task_ids[] = $item->task_id;
}
if (count($task_ids) > 0 && $this->invoice->company->invoice_task_documents) {
$tasks = Task::whereIn('id', $this->transformKeys($task_ids))
->cursor()
->each(function ($task) {
foreach ($task->documents as $document) {
2022-06-24 16:11:10 +02:00
$this->setAttachments([['path' => $document->filePath(), 'name' => $document->name, 'mime' => NULL]]);
}
});
}
2022-05-13 11:42:49 +02:00
}
2020-10-27 12:57:12 +01:00
}
return $this;
}
}