2020-02-12 10:21:06 +01:00
|
|
|
<?php
|
2020-03-18 10:40:15 +01:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-03-18 10:40:15 +01:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-03-18 10:40:15 +01:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-03-18 10:40:15 +01:00
|
|
|
*/
|
|
|
|
|
2020-02-12 10:21:06 +01:00
|
|
|
namespace App\Utils\Traits;
|
|
|
|
|
|
|
|
use League\CommonMark\CommonMarkConverter;
|
|
|
|
use Parsedown;
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Class PaymentEmailBuilder.
|
2020-02-12 10:21:06 +01:00
|
|
|
*/
|
|
|
|
trait PaymentEmailBuilder
|
|
|
|
{
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Builds the correct template to send.
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param null $reminder_template The template name ie reminder1
|
|
|
|
* @param null $contact
|
2020-02-12 10:21:06 +01:00
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getEmailData($reminder_template = null, $contact = null) :array
|
|
|
|
{
|
|
|
|
//client
|
|
|
|
//$client = $this->client;
|
|
|
|
|
|
|
|
//Need to determine which email template we are producing
|
|
|
|
return $this->generateTemplateData($reminder_template, $contact);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function generateTemplateData(string $reminder_template, $contact) :array
|
|
|
|
{
|
|
|
|
$data = [];
|
|
|
|
|
|
|
|
$client = $this->client;
|
|
|
|
|
|
|
|
$body_template = $client->getSetting('email_template_'.$reminder_template);
|
|
|
|
|
|
|
|
/* Use default translations if a custom message has not been set*/
|
|
|
|
if (iconv_strlen($body_template) == 0) {
|
2020-09-06 11:38:10 +02:00
|
|
|
$body_template = trans('texts.payment_message', ['amount'=>$this->present()->amount(), 'account'=>$this->company->present()->name()], null, $this->client->locale());
|
2020-02-12 10:21:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$subject_template = $client->getSetting('payment_subject');
|
|
|
|
|
|
|
|
if (iconv_strlen($subject_template) == 0) {
|
2020-09-06 11:38:10 +02:00
|
|
|
$subject_template = trans('texts.invoice_subject', ['number'=>$this->present()->invoice_number(), 'account'=>$this->company->present()->name()], null, $this->client->locale());
|
2020-02-12 10:21:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$data['body'] = $this->parseTemplate($body_template, false, $contact);
|
|
|
|
$data['subject'] = $this->parseTemplate($subject_template, true, $contact);
|
|
|
|
|
|
|
|
if ($client->getSetting('pdf_email_attachment') !== false) {
|
|
|
|
$data['files'][] = $this->pdf_file_path();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
private function parseTemplate(string $template_data, bool $is_markdown, $contact) :string
|
2020-02-12 10:21:06 +01:00
|
|
|
{
|
2020-10-28 07:27:10 +01:00
|
|
|
//$invoice_variables = $this->makeValues($contact);
|
2020-02-12 10:21:06 +01:00
|
|
|
|
|
|
|
//process variables
|
2020-04-15 02:30:52 +02:00
|
|
|
//$data = str_replace(array_keys($invoice_variables), array_values($invoice_variables), $template_data);
|
|
|
|
|
|
|
|
$data = strtr($template_data, $invoice_variables);
|
2020-02-12 10:21:06 +01:00
|
|
|
|
|
|
|
//process markdown
|
|
|
|
if ($is_markdown) {
|
|
|
|
//$data = Parsedown::instance()->line($data);
|
|
|
|
|
|
|
|
$converter = new CommonMarkConverter([
|
|
|
|
'html_input' => 'strip',
|
|
|
|
'allow_unsafe_links' => false,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$data = $converter->convertToHtml($data);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
}
|