mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 04:17:34 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			108 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			108 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com).
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://www.elastic.co/licensing/elastic-license
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Jobs\Util;
 | 
						|
 | 
						|
use App\Libraries\MultiDB;
 | 
						|
use App\Models\Client;
 | 
						|
use App\Models\Company;
 | 
						|
use App\Models\SystemLog;
 | 
						|
use Illuminate\Bus\Queueable;
 | 
						|
use Illuminate\Contracts\Queue\ShouldQueue;
 | 
						|
use Illuminate\Foundation\Bus\Dispatchable;
 | 
						|
use Illuminate\Queue\InteractsWithQueue;
 | 
						|
use Illuminate\Queue\SerializesModels;
 | 
						|
 | 
						|
class SystemLogger implements ShouldQueue
 | 
						|
{
 | 
						|
    use Dispatchable;
 | 
						|
    use InteractsWithQueue;
 | 
						|
    use Queueable;
 | 
						|
    use SerializesModels;
 | 
						|
 | 
						|
    protected $log;
 | 
						|
 | 
						|
    protected $category_id;
 | 
						|
 | 
						|
    protected $event_id;
 | 
						|
 | 
						|
    protected $type_id;
 | 
						|
 | 
						|
    protected $client;
 | 
						|
 | 
						|
    protected $company;
 | 
						|
 | 
						|
    public function __construct($log, $category_id, $event_id, $type_id, ?Client $client, Company $company)
 | 
						|
    {
 | 
						|
        $this->log = $log;
 | 
						|
        $this->category_id = $category_id;
 | 
						|
        $this->event_id = $event_id;
 | 
						|
        $this->type_id = $type_id;
 | 
						|
        $this->client = $client;
 | 
						|
        $this->company = $company;
 | 
						|
    }
 | 
						|
 | 
						|
    public function handle(): void
 | 
						|
    {
 | 
						|
        if (! $this->company) {
 | 
						|
            nlog('SystemLogger:: No company');
 | 
						|
 | 
						|
            return;
 | 
						|
        }
 | 
						|
 | 
						|
        MultiDB::setDb($this->company->db);
 | 
						|
 | 
						|
        $client_id = $this->client ? $this->client->id : null;
 | 
						|
 | 
						|
        if (! $this->client && ! $this->company->owner()) {
 | 
						|
            nlog('SystemLogger:: could not find client and/or company owner');
 | 
						|
 | 
						|
            return;
 | 
						|
        }
 | 
						|
 | 
						|
        $user_id = $this->client ? $this->client->user_id : $this->company->owner()->id;
 | 
						|
 | 
						|
        $sl = [
 | 
						|
            'client_id' => $client_id,
 | 
						|
            'company_id' => $this->company->id,
 | 
						|
            'user_id' => $user_id,
 | 
						|
            'log' => $this->log,
 | 
						|
            'category_id' => $this->category_id,
 | 
						|
            'event_id' => $this->event_id,
 | 
						|
            'type_id' => $this->type_id,
 | 
						|
        ];
 | 
						|
 | 
						|
        if (! $this->log) {
 | 
						|
            nlog('SystemLogger:: no log to store');
 | 
						|
            $this->category_id = null;
 | 
						|
            $this->event_id = null;
 | 
						|
            $this->type_id = null;
 | 
						|
            $this->client = null;
 | 
						|
            $this->company = null;
 | 
						|
            return;
 | 
						|
        }
 | 
						|
 | 
						|
        SystemLog::create($sl);
 | 
						|
 | 
						|
        $this->log = null;
 | 
						|
        $this->category_id = null;
 | 
						|
        $this->event_id = null;
 | 
						|
        $this->type_id = null;
 | 
						|
        $this->client = null;
 | 
						|
        $this->company = null;
 | 
						|
    }
 | 
						|
 | 
						|
    public function failed($e)
 | 
						|
    {
 | 
						|
        config(['queue.failed.driver' => null]);
 | 
						|
    }
 | 
						|
}
 |