whoami7 - Manager
:
/
home
/
qbizpnmr
/
arif.umairtax.com
/
app
/
Jobs
/
Util
/
Upload File:
files >> //home/qbizpnmr/arif.umairtax.com/app/Jobs/Util/WebhookHandler.php
<?php /** * Invoice Ninja (https://invoiceninja.com). * * @link https://github.com/invoiceninja/invoiceninja source repository * * @copyright Copyright (c) 2025. 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\Company; use App\Models\Webhook; 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; class WebhookHandler implements ShouldQueue { use Dispatchable; use InteractsWithQueue; use Queueable; use SerializesModels; public $tries = 1; //number of retries public $timeout = 30; public $deleteWhenMissingModels = true; /** * Create a new job instance. * * @param $event_id * @param $entity */ public function __construct(private int $event_id, private $entity, private Company $company, private string $includes = '') { } /** * Execute the job. * */ public function handle() { MultiDB::setDb($this->company->db); //If the company is disabled, or if on hosted, the user is not a paid hosted user return early if (! $this->company || $this->company->is_disabled || (Ninja::isHosted() && !$this->company->account->isPaidHostedClient())) { return true; } Webhook::query() ->where('company_id', $this->company->id) ->where('event_id', $this->event_id) ->cursor() ->each(function ($subscription) { (new WebhookSingle($subscription->id, $this->entity, $this->company->db, $this->includes))->handle(); }); } public function viaQueue() { return \App\Utils\Ninja::isHosted() ? 'webhooks' : 'default'; } public function failed($exception = null) { } }
Copyright ©2021 || Defacer Indonesia