2020-02-24 11:15:30 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-02-24 11:15:30 +01: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\Providers;
|
|
|
|
|
|
|
|
use App\Libraries\MultiDB;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
|
|
|
|
class MultiDBProvider extends ServiceProvider
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Bootstrap services.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function boot()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register services.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function register()
|
|
|
|
{
|
2020-03-21 06:37:30 +01:00
|
|
|
$this->app['events']->listen(
|
|
|
|
\Illuminate\Queue\Events\JobProcessing::class,
|
|
|
|
function ($event) {
|
|
|
|
if (isset($event->job->payload()['db'])) {
|
|
|
|
MultiDB::setDb($event->job->payload()['db']);
|
|
|
|
}
|
2020-02-24 11:15:30 +01:00
|
|
|
}
|
|
|
|
);
|
2020-03-28 12:34:04 +01:00
|
|
|
|
|
|
|
if ($this->app->runningInConsole()) {
|
|
|
|
return;
|
|
|
|
}
|
2020-02-24 11:15:30 +01:00
|
|
|
}
|
|
|
|
}
|