1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Console/Kernel.php

92 lines
2.6 KiB
PHP
Raw Normal View History

2018-10-04 19:10:43 +02:00
<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 05:32:07 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
2018-10-04 19:10:43 +02:00
namespace App\Console;
2021-03-05 11:18:28 +01:00
use App\Jobs\Cron\BillingSubscriptionCron;
use App\Jobs\Cron\RecurringInvoicesCron;
use App\Jobs\Ninja\AdjustEmailQuota;
2020-07-05 10:59:28 +02:00
use App\Jobs\Ninja\CompanySizeCheck;
use App\Jobs\Util\ReminderJob;
use App\Jobs\Util\SchedulerCheck;
use App\Jobs\Util\SendFailedEmails;
use App\Jobs\Util\UpdateExchangeRates;
use App\Jobs\Util\VersionCheck;
use App\Utils\Ninja;
2018-10-04 19:10:43 +02:00
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
//
];
/**
* Define the application's command schedule.
*
2020-10-28 11:10:49 +01:00
* @param Schedule $schedule
2018-10-04 19:10:43 +02:00
* @return void
*/
protected function schedule(Schedule $schedule)
{
2020-09-16 12:08:51 +02:00
$schedule->job(new VersionCheck)->daily()->withoutOverlapping();
2020-09-16 12:08:51 +02:00
$schedule->command('ninja:check-data')->daily()->withoutOverlapping();
2020-07-21 08:02:15 +02:00
2020-09-16 12:08:51 +02:00
$schedule->job(new ReminderJob)->daily()->withoutOverlapping();
2020-09-16 12:08:51 +02:00
$schedule->job(new CompanySizeCheck)->daily()->withoutOverlapping();
2020-07-05 10:59:28 +02:00
2020-09-16 12:08:51 +02:00
$schedule->job(new UpdateExchangeRates)->daily()->withoutOverlapping();
2021-03-05 11:18:28 +01:00
$schedule->job(new BillingSubscriptionCron)->daily()->withoutOverlapping();
2020-09-16 12:08:51 +02:00
$schedule->job(new RecurringInvoicesCron)->hourly()->withoutOverlapping();
2020-09-08 12:34:14 +02:00
/* Run hosted specific jobs */
if (Ninja::isHosted()) {
2020-09-16 12:08:51 +02:00
$schedule->job(new AdjustEmailQuota())->daily()->withoutOverlapping();
$schedule->job(new SendFailedEmails())->daily()->withoutOverlapping();
}
/* Run queue's with this*/
if (Ninja::isSelfHost()) {
2021-03-17 01:13:29 +01:00
$schedule->command('queue:work --daemon')->everyMinute()->withoutOverlapping();
//we need to add this as we are seeing cached queues mess up the system on first load.
$schedule->command('queue:restart')->everyFiveMinutes()->withoutOverlapping();
$schedule->job(new SchedulerCheck)->everyFiveMinutes()->withoutOverlapping();
}
2018-10-04 19:10:43 +02:00
}
/**
* Register the commands for the application.
*
* @return void
*/
protected function commands()
{
$this->load(__DIR__.'/Commands');
require base_path('routes/console.php');
}
}