2020-10-27 01:05:42 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @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-10-27 01:05:42 +01:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
2020-10-27 12:57:12 +01:00
|
|
|
namespace App\Jobs\Entity;
|
2020-10-27 01:05:42 +01:00
|
|
|
|
2020-11-09 11:17:20 +01:00
|
|
|
use App\Events\Invoice\InvoiceReminderWasEmailed;
|
2020-10-27 01:05:42 +01:00
|
|
|
use App\Events\Invoice\InvoiceWasEmailed;
|
|
|
|
use App\Events\Invoice\InvoiceWasEmailedAndFailed;
|
2021-01-20 02:59:39 +01:00
|
|
|
use App\Jobs\Mail\EntityFailedSendMailer;
|
2021-02-16 13:56:12 +01:00
|
|
|
use App\Jobs\Mail\NinjaMailerJob;
|
|
|
|
use App\Jobs\Mail\NinjaMailerObject;
|
2020-10-27 01:05:42 +01:00
|
|
|
use App\Libraries\MultiDB;
|
|
|
|
use App\Mail\TemplateEmail;
|
2020-11-09 11:17:20 +01:00
|
|
|
use App\Models\Activity;
|
2020-10-27 01:05:42 +01:00
|
|
|
use App\Models\Company;
|
|
|
|
use App\Models\CreditInvitation;
|
|
|
|
use App\Models\InvoiceInvitation;
|
|
|
|
use App\Models\QuoteInvitation;
|
|
|
|
use App\Models\RecurringInvoiceInvitation;
|
2020-10-27 12:57:12 +01:00
|
|
|
use App\Utils\HtmlEngine;
|
2020-10-27 01:05:42 +01:00
|
|
|
use App\Utils\Ninja;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
use Illuminate\Support\Facades\Mail;
|
2020-10-27 12:57:12 +01:00
|
|
|
use Illuminate\Support\Str;
|
2020-10-27 01:05:42 +01:00
|
|
|
|
|
|
|
/*Multi Mailer implemented*/
|
|
|
|
|
2021-02-16 14:31:00 +01:00
|
|
|
class EmailEntity implements ShouldQueue
|
2020-10-27 01:05:42 +01:00
|
|
|
{
|
|
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
|
2021-01-20 04:49:22 +01:00
|
|
|
public $invitation; //The entity invitation
|
2020-10-27 01:05:42 +01:00
|
|
|
|
2021-01-20 04:49:22 +01:00
|
|
|
public $company; //The company
|
2020-10-27 01:05:42 +01:00
|
|
|
|
2021-01-20 04:49:22 +01:00
|
|
|
public $settings; //The settings object
|
2020-10-27 01:05:42 +01:00
|
|
|
|
2021-01-20 04:49:22 +01:00
|
|
|
public $entity_string; //The entity string ie. invoice, quote, credit
|
2020-10-27 01:05:42 +01:00
|
|
|
|
2021-01-20 04:49:22 +01:00
|
|
|
public $reminder_template; //The base template we are using
|
2020-10-27 12:57:12 +01:00
|
|
|
|
2021-01-20 04:49:22 +01:00
|
|
|
public $entity; //The entity object
|
2020-10-27 12:57:12 +01:00
|
|
|
|
2021-01-20 04:49:22 +01:00
|
|
|
public $html_engine; //The HTMLEngine object
|
2020-10-27 12:57:12 +01:00
|
|
|
|
2021-01-20 04:49:22 +01:00
|
|
|
public $email_entity_builder; //The email builder which merges the template and text
|
2020-10-27 12:57:12 +01:00
|
|
|
|
2021-01-20 04:49:22 +01:00
|
|
|
public $template_data; //The data to be merged into the template
|
2020-12-09 10:52:08 +01:00
|
|
|
|
2020-10-27 01:05:42 +01:00
|
|
|
/**
|
|
|
|
* EmailEntity constructor.
|
2021-01-20 04:49:22 +01:00
|
|
|
*
|
|
|
|
*
|
2020-10-27 01:05:42 +01:00
|
|
|
* @param Invitation $invitation
|
2020-10-27 12:57:12 +01:00
|
|
|
* @param Company $company
|
|
|
|
* @param ?string $reminder_template
|
2021-01-20 04:49:22 +01:00
|
|
|
* @param array $template_data
|
2020-10-27 01:05:42 +01:00
|
|
|
*/
|
2020-11-06 05:43:10 +01:00
|
|
|
public function __construct($invitation, Company $company, ?string $reminder_template = null, $template_data = null)
|
2020-10-27 01:05:42 +01:00
|
|
|
{
|
|
|
|
$this->company = $company;
|
|
|
|
|
|
|
|
$this->invitation = $invitation;
|
|
|
|
|
|
|
|
$this->settings = $invitation->contact->client->getMergedSettings();
|
|
|
|
|
|
|
|
$this->entity_string = $this->resolveEntityString();
|
2020-10-27 12:57:12 +01:00
|
|
|
|
|
|
|
$this->entity = $invitation->{$this->entity_string};
|
|
|
|
|
2020-11-04 10:32:49 +01:00
|
|
|
$this->reminder_template = $reminder_template ?: $this->entity->calculateTemplate($this->entity_string);
|
2020-10-27 12:57:12 +01:00
|
|
|
|
|
|
|
$this->html_engine = new HtmlEngine($invitation);
|
|
|
|
|
2020-11-05 11:14:30 +01:00
|
|
|
$this->template_data = $template_data;
|
|
|
|
|
2020-10-27 12:57:12 +01:00
|
|
|
$this->email_entity_builder = $this->resolveEmailBuilder();
|
2020-10-27 01:05:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the job.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
2021-01-20 04:49:22 +01:00
|
|
|
/* Don't fire emails if the company is disabled */
|
|
|
|
if ($this->company->is_disabled)
|
2020-11-01 04:19:03 +01:00
|
|
|
return true;
|
|
|
|
|
2021-01-20 04:49:22 +01:00
|
|
|
/* Set DB */
|
2020-10-27 01:05:42 +01:00
|
|
|
MultiDB::setDB($this->company->db);
|
|
|
|
|
2021-02-16 13:56:12 +01:00
|
|
|
$nmo = new NinjaMailerObject;
|
2021-02-22 01:18:52 +01:00
|
|
|
$nmo->mailable = new TemplateEmail($this->email_entity_builder,$this->invitation->contact, $this->invitation);
|
2021-02-16 13:56:12 +01:00
|
|
|
$nmo->company = $this->company;
|
|
|
|
$nmo->settings = $this->settings;
|
|
|
|
$nmo->to_user = $this->invitation->contact;
|
|
|
|
$nmo->entity_string = $this->entity_string;
|
|
|
|
$nmo->invitation = $this->invitation;
|
|
|
|
$nmo->reminder_template = $this->reminder_template;
|
2021-02-18 00:30:31 +01:00
|
|
|
$nmo->entity = $this->entity;
|
|
|
|
|
2021-02-16 13:56:12 +01:00
|
|
|
NinjaMailerJob::dispatch($nmo);
|
|
|
|
|
2020-10-27 12:57:12 +01:00
|
|
|
/* Mark entity sent */
|
|
|
|
$this->entity->service()->markSent()->save();
|
2020-10-27 01:05:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private function resolveEntityString() :string
|
|
|
|
{
|
2020-11-25 15:19:52 +01:00
|
|
|
if ($this->invitation instanceof InvoiceInvitation) {
|
2020-10-27 01:05:42 +01:00
|
|
|
return 'invoice';
|
2020-11-25 15:19:52 +01:00
|
|
|
} elseif ($this->invitation instanceof QuoteInvitation) {
|
2020-10-27 01:05:42 +01:00
|
|
|
return 'quote';
|
2020-11-25 15:19:52 +01:00
|
|
|
} elseif ($this->invitation instanceof CreditInvitation) {
|
2020-10-27 01:05:42 +01:00
|
|
|
return 'credit';
|
2020-11-25 15:19:52 +01:00
|
|
|
} elseif ($this->invitation instanceof RecurringInvoiceInvitation) {
|
2020-10-27 01:05:42 +01:00
|
|
|
return 'recurring_invoice';
|
2020-11-25 15:19:52 +01:00
|
|
|
}
|
2020-10-27 01:05:42 +01:00
|
|
|
}
|
|
|
|
|
2021-02-16 13:56:12 +01:00
|
|
|
/* Switch statement to handle failure notifications */
|
2020-10-27 01:05:42 +01:00
|
|
|
private function entityEmailFailed($message)
|
|
|
|
{
|
|
|
|
switch ($this->entity_string) {
|
|
|
|
case 'invoice':
|
2021-01-20 02:59:39 +01:00
|
|
|
event(new InvoiceWasEmailedAndFailed($this->invitation, $this->company, $message, $this->reminder_template, Ninja::eventVars()));
|
2020-10-27 01:05:42 +01:00
|
|
|
break;
|
2020-10-28 11:10:49 +01:00
|
|
|
|
2020-10-27 01:05:42 +01:00
|
|
|
default:
|
|
|
|
# code...
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-20 04:49:22 +01:00
|
|
|
/* Builds the email builder object */
|
2020-10-27 12:57:12 +01:00
|
|
|
private function resolveEmailBuilder()
|
|
|
|
{
|
|
|
|
$class = 'App\Mail\Engine\\' . ucfirst(Str::camel($this->entity_string)) . "EmailEngine";
|
|
|
|
|
2020-11-05 11:14:30 +01:00
|
|
|
return (new $class($this->invitation, $this->reminder_template, $this->template_data))->build();
|
2020-10-27 12:57:12 +01:00
|
|
|
}
|
2020-10-27 01:05:42 +01:00
|
|
|
}
|