mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 20:18:33 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			222 lines
		
	
	
		
			9.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			222 lines
		
	
	
		
			9.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com).
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://www.elastic.co/licensing/elastic-license
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Mail\Engine;
 | 
						|
 | 
						|
use App\DataMapper\EmailTemplateDefaults;
 | 
						|
use App\Jobs\Entity\CreateRawPdf;
 | 
						|
use App\Models\Account;
 | 
						|
use App\Models\Expense;
 | 
						|
use App\Models\Task;
 | 
						|
use App\Utils\HtmlEngine;
 | 
						|
use App\Utils\Ninja;
 | 
						|
use App\Utils\Number;
 | 
						|
use App\Utils\Traits\MakesHash;
 | 
						|
use Illuminate\Support\Facades\App;
 | 
						|
use Illuminate\Support\Facades\URL;
 | 
						|
 | 
						|
class InvoiceEmailEngine extends BaseEmailEngine
 | 
						|
{
 | 
						|
    use MakesHash;
 | 
						|
 | 
						|
    public $invitation;
 | 
						|
 | 
						|
    public $client;
 | 
						|
 | 
						|
    public $invoice;
 | 
						|
 | 
						|
    public $contact;
 | 
						|
 | 
						|
    public $reminder_template;
 | 
						|
 | 
						|
    public $template_data;
 | 
						|
 | 
						|
    public function __construct($invitation, $reminder_template, $template_data)
 | 
						|
    {
 | 
						|
        $this->invitation = $invitation;
 | 
						|
        $this->reminder_template = $reminder_template;
 | 
						|
        $this->client = $invitation->contact->client;
 | 
						|
        $this->invoice = $invitation->invoice;
 | 
						|
        $this->contact = $invitation->contact;
 | 
						|
        $this->template_data = $template_data;
 | 
						|
    }
 | 
						|
 | 
						|
    public function build()
 | 
						|
    {
 | 
						|
        App::forgetInstance('translator');
 | 
						|
        $t = app('translator');
 | 
						|
        $t->replace(Ninja::transformTranslations($this->client->getMergedSettings()));
 | 
						|
 | 
						|
        if ($this->reminder_template == 'endless_reminder') {
 | 
						|
            $this->reminder_template = 'reminder_endless';
 | 
						|
        }
 | 
						|
 | 
						|
        if (is_array($this->template_data) && array_key_exists('body', $this->template_data) && strlen($this->template_data['body']) > 0) {
 | 
						|
            $body_template = $this->template_data['body'];
 | 
						|
        } elseif (strlen($this->client->getSetting('email_template_'.$this->reminder_template)) > 0) {
 | 
						|
            $body_template = $this->client->getSetting('email_template_'.$this->reminder_template);
 | 
						|
        } else {
 | 
						|
            $body_template = EmailTemplateDefaults::getDefaultTemplate('email_template_'.$this->reminder_template, $this->client->locale());
 | 
						|
        }
 | 
						|
 | 
						|
        /* 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),
 | 
						|
                ],
 | 
						|
                $this->client->locale()
 | 
						|
            );
 | 
						|
 | 
						|
            $body_template .= '<div class="center">$view_button</div>';
 | 
						|
        }
 | 
						|
 | 
						|
        $text_body = trans(
 | 
						|
            'texts.invoice_message',
 | 
						|
            [
 | 
						|
                'invoice' => $this->invoice->number,
 | 
						|
                'company' => $this->invoice->company->present()->name(),
 | 
						|
                'amount' => Number::formatMoney($this->invoice->balance, $this->client),
 | 
						|
            ],
 | 
						|
            $this->client->locale()
 | 
						|
        )."\n\n".$this->invitation->getLink();
 | 
						|
 | 
						|
        if (is_array($this->template_data) && array_key_exists('subject', $this->template_data) && strlen($this->template_data['subject']) > 0) {
 | 
						|
            $subject_template = $this->template_data['subject'];
 | 
						|
        } elseif (strlen($this->client->getSetting('email_subject_'.$this->reminder_template)) > 0) {
 | 
						|
            $subject_template = $this->client->getSetting('email_subject_'.$this->reminder_template);
 | 
						|
        } else {
 | 
						|
            $subject_template = EmailTemplateDefaults::getDefaultTemplate('email_subject_'.$this->reminder_template, $this->client->locale());
 | 
						|
        }
 | 
						|
 | 
						|
        if (iconv_strlen($subject_template) == 0) {
 | 
						|
            $subject_template = trans(
 | 
						|
                'texts.invoice_subject',
 | 
						|
                [
 | 
						|
                    'number' => $this->invoice->number,
 | 
						|
                    'account' => $this->invoice->company->present()->name(),
 | 
						|
                ],
 | 
						|
                $this->client->locale()
 | 
						|
            );
 | 
						|
        }
 | 
						|
 | 
						|
        $contact = $this->contact->withoutRelations();
 | 
						|
        $variables = (new HtmlEngine($this->invitation))->makeValues();
 | 
						|
        $invitation = $this->invitation->withoutRelations();
 | 
						|
 | 
						|
        $this->setTemplate($this->client->getSetting('email_style'))
 | 
						|
            ->setContact($contact)
 | 
						|
            ->setVariables($variables)//move make values into the htmlengine
 | 
						|
            ->setSubject($subject_template)
 | 
						|
            ->setBody($body_template)
 | 
						|
            ->setFooter("<a href='{$invitation->getLink()}'>".ctrans('texts.view_invoice').'</a>')
 | 
						|
            ->setViewLink($invitation->getLink())
 | 
						|
            ->setViewText(ctrans('texts.view_invoice'))
 | 
						|
            ->setInvitation($invitation)
 | 
						|
            ->setTextBody($text_body);
 | 
						|
 | 
						|
        if ($this->client->getSetting('pdf_email_attachment') !== false && $this->invoice->company->account->hasFeature(Account::FEATURE_PDF_ATTACHMENT)) {
 | 
						|
            $pdf = ((new CreateRawPdf($this->invitation, $this->invitation->company->db))->handle());
 | 
						|
 | 
						|
            $this->setAttachments([['file' => base64_encode($pdf), 'name' => $this->invoice->numberFormatter().'.pdf']]);
 | 
						|
        }
 | 
						|
 | 
						|
        //attach third party documents
 | 
						|
        if ($this->client->getSetting('document_email_attachment') !== false && $this->invoice->company->account->hasFeature(Account::FEATURE_DOCUMENTS)) {
 | 
						|
            if ($this->invoice->recurring_invoice()->exists()) {
 | 
						|
                foreach ($this->invoice->recurring_invoice->documents as $document) {
 | 
						|
                    if ($document->size > $this->max_attachment_size) {
 | 
						|
                        $this->setAttachmentLinks(["<a class='doc_links' href='" . URL::signedRoute('documents.public_download', ['document_hash' => $document->hash]) ."'>". $document->name ."</a>"]);
 | 
						|
                    } else {
 | 
						|
                        $this->setAttachments([['file' => base64_encode($document->getFile()), 'path' => $document->filePath(), 'name' => $document->name, 'mime' => null, ]]);
 | 
						|
                    }
 | 
						|
                }
 | 
						|
            }
 | 
						|
 | 
						|
            // Storage::url
 | 
						|
            foreach ($this->invoice->documents as $document) {
 | 
						|
                if ($document->size > $this->max_attachment_size) {
 | 
						|
                    $this->setAttachmentLinks(["<a class='doc_links' href='" . URL::signedRoute('documents.public_download', ['document_hash' => $document->hash]) ."'>". $document->name ."</a>"]);
 | 
						|
                } else {
 | 
						|
                    $this->setAttachments([['file' => base64_encode($document->getFile()), 'path' => $document->filePath(), 'name' => $document->name, 'mime' => null, ]]);
 | 
						|
                }
 | 
						|
            }
 | 
						|
 | 
						|
            foreach ($this->invoice->company->documents as $document) {
 | 
						|
                if ($document->size > $this->max_attachment_size) {
 | 
						|
                    $this->setAttachmentLinks(["<a class='doc_links' href='" . URL::signedRoute('documents.public_download', ['document_hash' => $document->hash]) ."'>". $document->name ."</a>"]);
 | 
						|
                } else {
 | 
						|
                    $this->setAttachments([['file' => base64_encode($document->getFile()), 'path' => $document->filePath(), 'name' => $document->name, 'mime' => null, ]]);
 | 
						|
                }
 | 
						|
            }
 | 
						|
 | 
						|
            $line_items = $this->invoice->line_items;
 | 
						|
 | 
						|
            foreach ($line_items as $item) {
 | 
						|
                $expense_ids = [];
 | 
						|
 | 
						|
                if (property_exists($item, 'expense_id')) {
 | 
						|
                    $expense_ids[] = $item->expense_id;
 | 
						|
                }
 | 
						|
 | 
						|
                if (count($expense_ids) > 0) {
 | 
						|
                    $expenses = Expense::query()->whereIn('id', $this->transformKeys($expense_ids))
 | 
						|
                                       ->where('invoice_documents', 1)
 | 
						|
                                       ->cursor()
 | 
						|
                                       ->each(function ($expense) {
 | 
						|
                                           foreach ($expense->documents as $document) {
 | 
						|
                                               if ($document->size > $this->max_attachment_size) {
 | 
						|
                                                   $this->setAttachmentLinks(["<a class='doc_links' href='" . URL::signedRoute('documents.public_download', ['document_hash' => $document->hash]) ."'>". $document->name ."</a>"]);
 | 
						|
                                               } else {
 | 
						|
                                                   $this->setAttachments([['path' => $document->filePath(), 'name' => $document->name, 'mime' => null, ]]);
 | 
						|
                                               }
 | 
						|
                                           }
 | 
						|
                                       });
 | 
						|
                }
 | 
						|
 | 
						|
                $task_ids = [];
 | 
						|
 | 
						|
                if (property_exists($item, 'task_id')) {
 | 
						|
                    $task_ids[] = $item->task_id;
 | 
						|
                }
 | 
						|
 | 
						|
                if (count($task_ids) > 0 && $this->invoice->company->invoice_task_documents) {
 | 
						|
                    $tasks = Task::query()->whereIn('id', $this->transformKeys($task_ids))
 | 
						|
                                       ->cursor()
 | 
						|
                                       ->each(function ($task) {
 | 
						|
                                           foreach ($task->documents as $document) {
 | 
						|
                                               if ($document->size > $this->max_attachment_size) {
 | 
						|
                                                   $this->setAttachmentLinks(["<a class='doc_links' href='" . URL::signedRoute('documents.public_download', ['document_hash' => $document->hash]) ."'>". $document->name ."</a>"]);
 | 
						|
                                               } else {
 | 
						|
                                                   $this->setAttachments([['path' => $document->filePath(), 'name' => $document->name, 'mime' => null, ]]);
 | 
						|
                                               }
 | 
						|
                                           }
 | 
						|
                                       });
 | 
						|
                }
 | 
						|
            }
 | 
						|
        }
 | 
						|
        
 | 
						|
        $this->invitation = null;
 | 
						|
        $contact = null;
 | 
						|
        $variables = null;
 | 
						|
        $this->invoice = null;
 | 
						|
        $this->client = null;
 | 
						|
        $pdf = null;
 | 
						|
        $expenses = null;
 | 
						|
        $tasks = null;
 | 
						|
 | 
						|
        return $this;
 | 
						|
    }
 | 
						|
}
 |