2021-04-28 02:02:31 +02: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-04-28 02:02:31 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-04-28 02:02:31 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Mail\Admin;
|
|
|
|
|
2021-06-29 11:46:40 +02:00
|
|
|
use App\Utils\Ninja;
|
2021-04-28 02:02:31 +02:00
|
|
|
use App\Utils\Number;
|
2022-12-19 13:25:48 +01:00
|
|
|
use Illuminate\Contracts\Container\BindingResolutionException;
|
2021-06-29 11:46:40 +02:00
|
|
|
use Illuminate\Support\Facades\App;
|
2022-06-21 11:57:17 +02:00
|
|
|
use stdClass;
|
2021-04-28 02:02:31 +02:00
|
|
|
|
|
|
|
class EntityCreatedObject
|
|
|
|
{
|
|
|
|
public $entity_type;
|
|
|
|
|
|
|
|
public $entity;
|
|
|
|
|
2021-07-21 02:53:18 +02:00
|
|
|
public $client;
|
2021-04-28 02:02:31 +02:00
|
|
|
|
|
|
|
public $company;
|
|
|
|
|
|
|
|
public $settings;
|
|
|
|
|
|
|
|
private $template_subject;
|
|
|
|
|
|
|
|
private $template_body;
|
|
|
|
|
|
|
|
public function __construct($entity, $entity_type)
|
|
|
|
{
|
|
|
|
$this->entity_type = $entity_type;
|
|
|
|
$this->entity = $entity;
|
|
|
|
}
|
|
|
|
|
2022-12-19 13:25:48 +01:00
|
|
|
/**
|
2023-02-16 02:36:09 +01:00
|
|
|
* @return stdClass
|
|
|
|
* @throws BindingResolutionException
|
2022-12-19 13:25:48 +01:00
|
|
|
*/
|
|
|
|
public function build() :stdClass
|
2021-04-28 02:02:31 +02: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-06-29 12:14:32 +02:00
|
|
|
App::setLocale($this->entity->company->getLocale());
|
2021-06-29 11:46:40 +02:00
|
|
|
/* Set customized translations _NOW_ */
|
2021-06-29 12:14:32 +02:00
|
|
|
$t->replace(Ninja::transformTranslations($this->entity->company->settings));
|
2022-12-19 13:25:48 +01:00
|
|
|
$this->setTemplate();
|
2021-04-28 02:02:31 +02:00
|
|
|
$this->company = $this->entity->company;
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if ($this->entity_type == 'purchase_order') {
|
2022-12-19 13:25:48 +01:00
|
|
|
$this->entity->load('vendor.company');
|
|
|
|
|
|
|
|
$mail_obj = new stdClass;
|
|
|
|
$mail_obj->amount = Number::formatMoney($this->entity->amount, $this->entity->vendor);
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
$mail_obj->subject = ctrans(
|
|
|
|
$this->template_subject,
|
|
|
|
[
|
|
|
|
'vendor' => $this->entity->vendor->present()->name(),
|
|
|
|
'purchase_order' => $this->entity->number,
|
|
|
|
]
|
|
|
|
);
|
2022-12-19 13:25:48 +01:00
|
|
|
|
|
|
|
$mail_obj->markdown = 'email.admin.generic';
|
|
|
|
$mail_obj->tag = $this->company->company_key;
|
|
|
|
$mail_obj->data = [
|
|
|
|
'title' => $mail_obj->subject,
|
2023-02-16 02:36:09 +01:00
|
|
|
'message' => ctrans(
|
|
|
|
$this->template_body,
|
|
|
|
[
|
|
|
|
'amount' => $mail_obj->amount,
|
|
|
|
'vendor' => $this->entity->vendor->present()->name(),
|
|
|
|
'purchase_order' => $this->entity->number,
|
|
|
|
]
|
|
|
|
),
|
2022-12-19 13:25:48 +01:00
|
|
|
'url' => $this->entity->invitations()->first()->getAdminLink(),
|
|
|
|
'button' => ctrans("texts.view_{$this->entity_type}"),
|
|
|
|
'signature' => $this->company->settings->email_signature,
|
|
|
|
'logo' => $this->company->present()->logo(),
|
|
|
|
'settings' => $this->company->settings,
|
|
|
|
'whitelabel' => $this->company->account->isPaid() ? true : false,
|
|
|
|
];
|
2023-02-16 02:36:09 +01:00
|
|
|
} else {
|
2022-12-19 13:25:48 +01:00
|
|
|
$this->entity->load('client.country', 'client.company');
|
|
|
|
$this->client = $this->entity->client;
|
2021-04-28 02:02:31 +02:00
|
|
|
|
2022-12-19 13:25:48 +01:00
|
|
|
$mail_obj = new stdClass;
|
|
|
|
$mail_obj->amount = $this->getAmount();
|
|
|
|
$mail_obj->subject = $this->getSubject();
|
|
|
|
$mail_obj->data = $this->getData();
|
|
|
|
$mail_obj->markdown = 'email.admin.generic';
|
|
|
|
$mail_obj->tag = $this->entity->company->company_key;
|
|
|
|
}
|
|
|
|
|
2021-04-28 02:02:31 +02:00
|
|
|
return $mail_obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function setTemplate()
|
|
|
|
{
|
|
|
|
switch ($this->entity_type) {
|
|
|
|
case 'invoice':
|
2022-06-21 11:57:17 +02:00
|
|
|
$this->template_subject = 'texts.notification_invoice_created_subject';
|
|
|
|
$this->template_body = 'texts.notification_invoice_created_body';
|
2021-04-28 02:02:31 +02:00
|
|
|
break;
|
|
|
|
case 'quote':
|
2022-06-21 11:57:17 +02:00
|
|
|
$this->template_subject = 'texts.notification_quote_created_subject';
|
|
|
|
$this->template_body = 'texts.notification_quote_created_body';
|
2021-04-28 02:02:31 +02:00
|
|
|
break;
|
|
|
|
case 'credit':
|
2022-06-21 11:57:17 +02:00
|
|
|
$this->template_subject = 'texts.notification_credit_created_subject';
|
|
|
|
$this->template_body = 'texts.notification_credit_created_body';
|
2021-04-28 02:02:31 +02:00
|
|
|
break;
|
2022-12-19 13:25:48 +01:00
|
|
|
case 'purchase_order':
|
|
|
|
$this->template_subject = 'texts.notification_purchase_order_created_subject';
|
|
|
|
$this->template_body = 'texts.notification_purchase_order_created_body';
|
|
|
|
break;
|
2021-04-28 02:02:31 +02:00
|
|
|
default:
|
2022-06-21 11:57:17 +02:00
|
|
|
$this->template_subject = 'texts.notification_invoice_created_subject';
|
|
|
|
$this->template_body = 'texts.notification_invoice_created_body';
|
2021-04-28 02:02:31 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
private function getAmount()
|
2021-04-28 02:02:31 +02:00
|
|
|
{
|
|
|
|
return Number::formatMoney($this->entity->amount, $this->entity->client);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getSubject()
|
|
|
|
{
|
|
|
|
return
|
|
|
|
ctrans(
|
|
|
|
$this->template_subject,
|
|
|
|
[
|
2022-06-21 11:57:17 +02:00
|
|
|
'client' => $this->client->present()->name(),
|
|
|
|
'invoice' => $this->entity->number,
|
|
|
|
]
|
2021-04-28 02:02:31 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getMessage()
|
|
|
|
{
|
|
|
|
return ctrans(
|
2023-02-16 02:36:09 +01:00
|
|
|
$this->template_body,
|
|
|
|
[
|
|
|
|
'amount' => $this->getAmount(),
|
|
|
|
'client' => $this->client->present()->name(),
|
|
|
|
'invoice' => $this->entity->number,
|
|
|
|
]
|
|
|
|
);
|
2021-04-28 02:02:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private function getData()
|
|
|
|
{
|
|
|
|
$settings = $this->entity->client->getMergedSettings();
|
|
|
|
|
|
|
|
return [
|
|
|
|
'title' => $this->getSubject(),
|
|
|
|
'message' => $this->getMessage(),
|
|
|
|
'url' => $this->entity->invitations()->first()->getAdminLink(),
|
|
|
|
'button' => ctrans("texts.view_{$this->entity_type}"),
|
|
|
|
'signature' => $settings->email_signature,
|
|
|
|
'logo' => $this->company->present()->logo(),
|
|
|
|
'settings' => $settings,
|
|
|
|
'whitelabel' => $this->company->account->isPaid() ? true : false,
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|