1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Jobs/Mail/PaymentFailureMailer.php

110 lines
2.9 KiB
PHP
Raw Normal View History

<?php
2020-08-06 05:04:09 +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) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2020-08-06 05:04:09 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Jobs\Mail;
use App\Libraries\MultiDB;
use App\Mail\Admin\EntityNotificationMailer;
use App\Mail\Admin\PaymentFailureObject;
use App\Models\User;
use App\Utils\Traits\Notifications\UserNotifies;
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-08-06 05:04:09 +02:00
/*Multi Mailer implemented*/
class PaymentFailureMailer extends BaseMailerJob implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels, UserNotifies;
public $client;
public $error;
public $company;
2021-02-01 22:33:04 +01:00
public $payment_hash;
2020-08-10 06:55:44 +02:00
public $settings;
/**
* Create a new job instance.
*
2020-10-28 11:10:49 +01:00
* @param $client
* @param $message
* @param $company
* @param $amount
*/
public function __construct($client, $error, $company, $payment_hash)
{
$this->company = $company;
$this->error = $error;
$this->client = $client;
2021-02-01 22:33:04 +01:00
$this->payment_hash = $payment_hash;
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();
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
2021-02-01 06:30:28 +01:00
2020-11-01 04:19:03 +01:00
/*If we are migrating data we don't want to fire these notification*/
2020-11-25 15:19:52 +01:00
if ($this->company->is_disabled) {
2020-11-01 04:19:03 +01:00
return true;
2020-11-25 15:19:52 +01:00
}
2020-11-01 04:19:03 +01:00
//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();
//iterate through company_users
2021-02-01 06:30:28 +01:00
$this->company->company_users->each(function ($company_user) {
//determine if this user has the right permissions
2021-02-01 12:26:42 +01:00
$methods = $this->findCompanyUserNotificationType($company_user, ['payment_failure','all_notifications']);
2021-02-01 06:30:28 +01:00
//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->error, $this->company, $this->payment_hash))->build();
$mail_obj->from = [config('mail.from.address'), config('mail.from.name')];
//send email
2020-11-12 10:41:19 +01:00
try {
Mail::to($company_user->user->email)
->send(new EntityNotificationMailer($mail_obj));
2020-11-25 15:19:52 +01:00
} catch (\Exception $e) {
//$this->failed($e);
2020-11-12 10:41:19 +01:00
$this->logMailError($e->getMessage(), $this->client);
}
}
});
}
}