2020-05-19 00:22:18 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-05-19 00:22:18 +02:00
|
|
|
*
|
|
|
|
* @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-05-19 00:22:18 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-05-19 00:22:18 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Mail\Admin;
|
|
|
|
|
2021-06-29 11:46:40 +02:00
|
|
|
use App\Utils\Ninja;
|
2020-05-19 00:22:18 +02:00
|
|
|
use App\Utils\Number;
|
2021-06-29 11:46:40 +02:00
|
|
|
use Illuminate\Support\Facades\App;
|
2022-06-21 11:57:17 +02:00
|
|
|
use stdClass;
|
2020-05-19 00:22:18 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
class EntityViewedObject
|
2020-05-19 00:22:18 +02:00
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
public $invitation;
|
2020-05-19 00:22:18 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
public $entity_type;
|
2020-05-19 00:22:18 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
public $entity;
|
2020-05-19 00:22:18 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
public $contact;
|
2020-05-19 00:22:18 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
public $company;
|
2020-05-19 00:22:18 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
public $settings;
|
2020-05-19 00:22:18 +02:00
|
|
|
|
|
|
|
public function __construct($invitation, $entity_type)
|
|
|
|
{
|
|
|
|
$this->invitation = $invitation;
|
|
|
|
$this->entity_type = $entity_type;
|
|
|
|
$this->entity = $invitation->{$entity_type};
|
|
|
|
$this->contact = $invitation->contact;
|
|
|
|
$this->company = $invitation->company;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function build()
|
|
|
|
{
|
2022-06-21 11:57:17 +02:00
|
|
|
if (! $this->entity) {
|
2021-10-23 06:04:20 +02:00
|
|
|
return;
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2021-10-23 06:04:20 +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*/
|
|
|
|
App::setLocale($this->company->getLocale());
|
|
|
|
/* Set customized translations _NOW_ */
|
|
|
|
$t->replace(Ninja::transformTranslations($this->company->settings));
|
|
|
|
|
2020-10-28 11:10:49 +01:00
|
|
|
$mail_obj = new stdClass;
|
2020-09-06 11:38:10 +02:00
|
|
|
$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->company->company_key;
|
|
|
|
|
|
|
|
return $mail_obj;
|
2020-05-19 00:22:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private function getAmount()
|
|
|
|
{
|
2022-06-21 11:57:17 +02:00
|
|
|
if ($this->entity->client) {
|
2022-06-15 08:27:21 +02:00
|
|
|
$currency_entity = $this->entity->client;
|
2022-06-21 11:57:17 +02:00
|
|
|
} else {
|
2022-06-15 08:27:21 +02:00
|
|
|
$currency_entity = $this->company;
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2022-06-15 08:27:21 +02:00
|
|
|
|
|
|
|
return Number::formatMoney($this->entity->amount, $currency_entity);
|
2020-05-19 00:22:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private function getSubject()
|
|
|
|
{
|
|
|
|
return
|
|
|
|
ctrans(
|
|
|
|
"texts.notification_{$this->entity_type}_viewed_subject",
|
|
|
|
[
|
2022-06-21 11:57:17 +02:00
|
|
|
'client' => $this->contact->present()->name(),
|
|
|
|
'invoice' => $this->entity->number,
|
|
|
|
]
|
2020-05-19 00:22:18 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getData()
|
|
|
|
{
|
2022-06-21 11:57:17 +02:00
|
|
|
if ($this->entity->client) {
|
2022-06-15 08:27:21 +02:00
|
|
|
$settings = $this->entity->client->getMergedSettings();
|
2022-06-21 11:57:17 +02:00
|
|
|
} else {
|
|
|
|
$settings = $this->company->settings;
|
|
|
|
}
|
2020-05-19 00:22:18 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
$data = [
|
2020-05-19 00:22:18 +02:00
|
|
|
'title' => $this->getSubject(),
|
|
|
|
'message' => ctrans(
|
|
|
|
"texts.notification_{$this->entity_type}_viewed",
|
|
|
|
[
|
|
|
|
'amount' => $this->getAmount(),
|
|
|
|
'client' => $this->contact->present()->name(),
|
|
|
|
'invoice' => $this->entity->number,
|
|
|
|
]
|
|
|
|
),
|
|
|
|
'url' => $this->invitation->getAdminLink(),
|
|
|
|
'button' => ctrans("texts.view_{$this->entity_type}"),
|
|
|
|
'signature' => $settings->email_signature,
|
|
|
|
'logo' => $this->company->present()->logo(),
|
2020-09-21 00:17:57 +02:00
|
|
|
'settings' => $settings,
|
2020-10-20 01:37:33 +02:00
|
|
|
'whitelabel' => $this->company->account->isPaid() ? true : false,
|
2020-05-19 00:22:18 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|