1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Jobs/Mail/BaseMailerJob.php

108 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) 2020. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Jobs\Mail;
use App\DataMapper\Analytics\EmailFailure;
2020-11-12 05:37:50 +01:00
use App\Jobs\Util\SystemLogger;
use App\Libraries\Google\Google;
2020-11-12 05:37:50 +01:00
use App\Models\SystemLog;
use App\Models\User;
use App\Providers\MailServiceProvider;
2020-11-10 05:06:46 +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;
2020-11-10 05:06:46 +01:00
use Illuminate\Support\Facades\App;
use Illuminate\Support\Facades\Config;
2020-11-10 05:06:46 +01:00
use Illuminate\Support\Facades\Lang;
use Turbo124\Beacon\Facades\LightLogs;
2020-08-06 05:04:09 +02:00
/*Multi Mailer implemented*/
class BaseMailerJob implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
2020-11-22 12:14:49 +01:00
public $tries = 5; //number of retries
public $backoff = 5; //seconds to wait until retry
public $deleteWhenMissingModels = true;
2020-08-10 06:55:44 +02:00
public function setMailDriver()
{
2020-11-10 05:06:46 +01:00
App::forgetInstance('translator');
Lang::replace(Ninja::transformTranslations($this->settings));
2020-08-10 06:55:44 +02:00
switch ($this->settings->email_sending_method) {
case 'default':
break;
case 'gmail':
$this->setGmailMailer();
break;
default:
break;
}
}
public function setGmailMailer()
{
2020-08-10 06:55:44 +02:00
$sending_user = $this->settings->gmail_sending_user_id;
$user = User::find($sending_user);
$google = (new Google())->init();
$google->getClient()->setAccessToken(json_encode($user->oauth_user_token));
if ($google->getClient()->isAccessTokenExpired()) {
$google->refreshToken($user);
}
/*
2020-11-01 04:19:03 +01:00
* Now that our token is refreshed and valid we can boot the
* mail driver at runtime and also set the token which will persist
* just for this request.
*/
Config::set('mail.driver', 'gmail');
Config::set('services.gmail.token', $user->oauth_user_token->access_token);
(new MailServiceProvider(app()))->register();
}
public function logMailError($errors, $recipient_object)
2020-11-12 05:37:50 +01:00
{
SystemLogger::dispatch(
$errors,
SystemLog::CATEGORY_MAIL,
SystemLog::EVENT_MAIL_SEND,
SystemLog::TYPE_FAILURE,
$recipient_object
);
}
public function failed($exception = null)
{
2020-10-23 06:18:16 +02:00
// info('the job failed');
$job_failure = new EmailFailure();
$job_failure->string_metric5 = get_parent_class($this);
$job_failure->string_metric6 = $exception->getMessage();
LightLogs::create($job_failure)
->batch();
}
}