2020-05-26 10:20:50 +02:00
|
|
|
<?php
|
2020-08-06 05:04:09 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-08-06 05:04:09 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2020-05-26 10:20:50 +02:00
|
|
|
|
|
|
|
namespace App\Jobs\Mail;
|
|
|
|
|
|
|
|
use App\Jobs\Util\SystemLogger;
|
|
|
|
use App\Libraries\Google\Google;
|
|
|
|
use App\Libraries\MultiDB;
|
|
|
|
use App\Mail\Admin\EntityNotificationMailer;
|
|
|
|
use App\Mail\Admin\EntityPaidObject;
|
|
|
|
use App\Mail\Admin\EntitySentObject;
|
|
|
|
use App\Mail\Admin\PaymentFailureObject;
|
|
|
|
use App\Models\SystemLog;
|
|
|
|
use App\Models\User;
|
|
|
|
use App\Providers\MailServiceProvider;
|
2020-05-26 12:22:50 +02:00
|
|
|
use App\Utils\Traits\Notifications\UserNotifies;
|
2020-05-26 10:20:50 +02:00
|
|
|
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\Config;
|
|
|
|
use Illuminate\Support\Facades\Mail;
|
|
|
|
|
2020-08-06 05:04:09 +02:00
|
|
|
/*Multi Mailer implemented*/
|
|
|
|
|
2020-05-26 10:20:50 +02:00
|
|
|
class PaymentFailureMailer extends BaseMailerJob implements ShouldQueue
|
|
|
|
{
|
2020-05-26 12:22:50 +02:00
|
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels, UserNotifies;
|
2020-05-26 10:20:50 +02:00
|
|
|
|
|
|
|
public $client;
|
|
|
|
|
|
|
|
public $message;
|
|
|
|
|
|
|
|
public $company;
|
|
|
|
|
|
|
|
public $amount;
|
|
|
|
|
2020-08-10 06:55:44 +02:00
|
|
|
public $settings;
|
|
|
|
|
2020-05-26 10:20:50 +02:00
|
|
|
/**
|
|
|
|
* Create a new job instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct($client, $message, $company, $amount)
|
|
|
|
{
|
|
|
|
$this->company = $company;
|
|
|
|
|
|
|
|
$this->message = $message;
|
|
|
|
|
|
|
|
$this->client = $client;
|
|
|
|
|
|
|
|
$this->amount = $amount;
|
2020-08-10 06:55:44 +02:00
|
|
|
|
2020-09-14 07:14:37 +02:00
|
|
|
$this->company = $company;
|
|
|
|
|
2020-08-10 06:55:44 +02:00
|
|
|
$this->settings = $client->getMergedSettings();
|
2020-05-26 10:20:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the job.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
|
|
|
//Set DB
|
|
|
|
MultiDB::setDb($this->company->db);
|
|
|
|
|
|
|
|
//if we need to set an email driver do it now
|
2020-08-10 06:55:44 +02:00
|
|
|
$this->setMailDriver();
|
2020-05-26 10:20:50 +02:00
|
|
|
|
2020-05-26 12:22:50 +02:00
|
|
|
//iterate through company_users
|
2020-09-06 11:38:10 +02:00
|
|
|
$this->company->company_users->each(function ($company_user) {
|
2020-05-26 12:22:50 +02:00
|
|
|
|
|
|
|
//determine if this user has the right permissions
|
|
|
|
$methods = $this->findCompanyUserNotificationType($company_user, ['payment_failure']);
|
|
|
|
|
|
|
|
//if mail is a method type -fire mail!!
|
|
|
|
if (($key = array_search('mail', $methods)) !== false) {
|
|
|
|
unset($methods[$key]);
|
|
|
|
|
|
|
|
$mail_obj = (new PaymentFailureObject($this->client, $this->message, $this->amount, $this->company))->build();
|
|
|
|
$mail_obj->from = [$this->company->owner()->email, $this->company->owner()->present()->name()];
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-05-26 12:22:50 +02:00
|
|
|
//send email
|
|
|
|
Mail::to($company_user->user->email)
|
|
|
|
->send(new EntityNotificationMailer($mail_obj));
|
|
|
|
|
|
|
|
//catch errors
|
|
|
|
if (count(Mail::failures()) > 0) {
|
2020-08-08 06:38:02 +02:00
|
|
|
return $this->logMailError(Mail::failures(), $this->client);
|
2020-05-26 12:22:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2020-05-26 10:20:50 +02:00
|
|
|
}
|
|
|
|
}
|