mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 08:17:32 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			100 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			100 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com).
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://www.elastic.co/licensing/elastic-license
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Jobs\Invoice;
 | 
						|
 | 
						|
use App\Jobs\Util\WebhookHandler;
 | 
						|
use App\Libraries\MultiDB;
 | 
						|
use App\Models\Invoice;
 | 
						|
use App\Models\Webhook;
 | 
						|
use Illuminate\Bus\Queueable;
 | 
						|
use Illuminate\Contracts\Queue\ShouldQueue;
 | 
						|
use Illuminate\Foundation\Bus\Dispatchable;
 | 
						|
use Illuminate\Queue\InteractsWithQueue;
 | 
						|
use Illuminate\Queue\SerializesModels;
 | 
						|
 | 
						|
class InvoiceCheckLateWebhook implements ShouldQueue
 | 
						|
{
 | 
						|
    use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Create a new job instance.
 | 
						|
     */
 | 
						|
    public function __construct()
 | 
						|
    {
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Execute the job.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function handle()
 | 
						|
    {
 | 
						|
        nlog("sending overdue webhooks for invoices");
 | 
						|
        
 | 
						|
        if (! config('ninja.db.multi_db_enabled')) {
 | 
						|
            $company_ids = Webhook::where('event_id', Webhook::EVENT_LATE_INVOICE)
 | 
						|
                                  ->where('is_deleted', 0)
 | 
						|
                                  ->pluck('company_id');
 | 
						|
 | 
						|
            Invoice::query()
 | 
						|
                 ->where('is_deleted', false)
 | 
						|
                 ->whereNull('deleted_at')
 | 
						|
                 ->whereNotNull('due_date')
 | 
						|
                 ->whereIn('status_id', [Invoice::STATUS_SENT, Invoice::STATUS_PARTIAL])
 | 
						|
                 ->where('balance', '>', 0)
 | 
						|
                 ->whereIn('company_id', $company_ids)
 | 
						|
                 ->whereHas('client', function ($query) {
 | 
						|
                     $query->where('is_deleted', 0)
 | 
						|
                            ->where('deleted_at', null);
 | 
						|
                 })
 | 
						|
                    ->whereHas('company', function ($query) {
 | 
						|
                        $query->where('is_disabled', 0);
 | 
						|
                    })
 | 
						|
                 ->whereBetween('due_date', [now()->subDay()->startOfDay(), now()->startOfDay()->subSecond()])
 | 
						|
                 ->cursor()
 | 
						|
                 ->each(function ($invoice) {
 | 
						|
                     WebhookHandler::dispatch(Webhook::EVENT_LATE_INVOICE, $invoice, $invoice->company, 'client')->delay(now()->addSeconds(2));
 | 
						|
                 });
 | 
						|
        } else {
 | 
						|
            foreach (MultiDB::$dbs as $db) {
 | 
						|
                MultiDB::setDB($db);
 | 
						|
 | 
						|
                $company_ids = Webhook::where('event_id', Webhook::EVENT_LATE_INVOICE)
 | 
						|
                                      ->where('is_deleted', 0)
 | 
						|
                                      ->pluck('company_id');
 | 
						|
 | 
						|
                Invoice::query()
 | 
						|
                     ->where('is_deleted', false)
 | 
						|
                     ->whereNull('deleted_at')
 | 
						|
                     ->whereNotNull('due_date')
 | 
						|
                     ->whereIn('status_id', [Invoice::STATUS_SENT, Invoice::STATUS_PARTIAL])
 | 
						|
                     ->where('balance', '>', 0)
 | 
						|
                     ->whereIn('company_id', $company_ids)
 | 
						|
                     ->whereHas('client', function ($query) {
 | 
						|
                         $query->where('is_deleted', 0)
 | 
						|
                                ->where('deleted_at', null);
 | 
						|
                     })
 | 
						|
                        ->whereHas('company', function ($query) {
 | 
						|
                            $query->where('is_disabled', 0);
 | 
						|
                        })
 | 
						|
                     ->whereBetween('due_date', [now()->subDay()->startOfDay(), now()->startOfDay()->subSecond()])
 | 
						|
                     ->cursor()
 | 
						|
                     ->each(function ($invoice) {
 | 
						|
                         WebhookHandler::dispatch(Webhook::EVENT_LATE_INVOICE, $invoice, $invoice->company, 'client')->delay(now()->addSeconds(2));
 | 
						|
                     });
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |