mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 20:18:33 -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) 2021. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://www.elastic.co/licensing/elastic-license
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Console\Commands;
 | 
						|
 | 
						|
use App\Jobs\Ninja\SendReminders;
 | 
						|
use App\Libraries\MultiDB;
 | 
						|
use App\Models\Invoice;
 | 
						|
use App\Models\Quote;
 | 
						|
use App\Models\Webhook;
 | 
						|
use Illuminate\Console\Command;
 | 
						|
use App\Jobs\Util\WebhookHandler;
 | 
						|
 | 
						|
class SendRemindersCron extends Command
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * The name and signature of the console command.
 | 
						|
     *
 | 
						|
     * @var string
 | 
						|
     */
 | 
						|
    protected $signature = 'ninja:send-reminders';
 | 
						|
 | 
						|
    /**
 | 
						|
     * The console command description.
 | 
						|
     *
 | 
						|
     * @var string
 | 
						|
     */
 | 
						|
    protected $description = 'Force send all reminders';
 | 
						|
 | 
						|
    /**
 | 
						|
     * Create a new command instance.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function __construct()
 | 
						|
    {
 | 
						|
        parent::__construct();
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Execute the console command.
 | 
						|
     *
 | 
						|
     * @return int
 | 
						|
     */
 | 
						|
    public function handle()
 | 
						|
    {
 | 
						|
        SendReminders::dispatchNow();
 | 
						|
 | 
						|
       $this->webHookOverdueInvoices();
 | 
						|
       $this->webHookExpiredQuotes();
 | 
						|
    }
 | 
						|
 | 
						|
    private function webHookOverdueInvoices()
 | 
						|
    {
 | 
						|
 | 
						|
 | 
						|
        if (! config('ninja.db.multi_db_enabled')) {
 | 
						|
            $this->executeWebhooks();
 | 
						|
        } else {
 | 
						|
            //multiDB environment, need to
 | 
						|
            foreach (MultiDB::$dbs as $db) {
 | 
						|
                MultiDB::setDB($db);
 | 
						|
 | 
						|
                $this->executeWebhooks();
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
    }
 | 
						|
 | 
						|
    private function webHookExpiredQuotes()
 | 
						|
    {
 | 
						|
        
 | 
						|
    }
 | 
						|
 | 
						|
    private function executeWebhooks()
 | 
						|
    {
 | 
						|
        $invoices = Invoice::where('is_deleted', 0)
 | 
						|
                          ->whereIn('status_id', [Invoice::STATUS_SENT, Invoice::STATUS_PARTIAL])
 | 
						|
                          ->where('balance', '>', 0)
 | 
						|
                          ->whereDate('due_date', '<=', now()->subDays(1)->startOfDay())
 | 
						|
                          ->cursor();
 | 
						|
    
 | 
						|
        $invoices->each(function ($invoice) {
 | 
						|
            WebhookHandler::dispatch(Webhook::EVENT_LATE_INVOICE, $invoice, $invoice->company);
 | 
						|
            
 | 
						|
        });
 | 
						|
 | 
						|
        $quotes = Quote::where('is_deleted', 0)
 | 
						|
                          ->where('status_id', Quote::STATUS_SENT)
 | 
						|
                          ->whereDate('due_date', '<=', now()->subDays(1)->startOfDay())
 | 
						|
                          ->cursor();
 | 
						|
    
 | 
						|
        $quotes->each(function ($quote) {
 | 
						|
            WebhookHandler::dispatch(Webhook::EVENT_EXPIRED_QUOTE, $quote, $quote->company);
 | 
						|
        });
 | 
						|
    }
 | 
						|
 | 
						|
 | 
						|
}
 |