2016-05-01 13:31:10 +02:00
|
|
|
<?php namespace App\Console;
|
2015-03-12 01:44:39 +01:00
|
|
|
|
2015-09-25 11:57:40 +02:00
|
|
|
use Utils;
|
2015-03-12 01:44:39 +01:00
|
|
|
use Illuminate\Console\Scheduling\Schedule;
|
|
|
|
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
|
|
|
|
2015-09-25 11:57:40 +02:00
|
|
|
class Kernel extends ConsoleKernel
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The Artisan commands provided by your application.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $commands = [
|
|
|
|
'App\Console\Commands\SendRecurringInvoices',
|
2016-03-24 18:02:45 +01:00
|
|
|
'App\Console\Commands\RemoveOrphanedDocuments',
|
2015-09-25 11:57:40 +02:00
|
|
|
'App\Console\Commands\ResetData',
|
|
|
|
'App\Console\Commands\CheckData',
|
2016-04-21 12:01:36 +02:00
|
|
|
'App\Console\Commands\PruneData',
|
2016-05-04 13:53:27 +02:00
|
|
|
'App\Console\Commands\CreateTestData',
|
2015-05-08 10:21:29 +02:00
|
|
|
'App\Console\Commands\SendRenewalInvoices',
|
2016-02-22 20:23:15 +01:00
|
|
|
'App\Console\Commands\ChargeRenewalInvoices',
|
2015-09-17 21:01:06 +02:00
|
|
|
'App\Console\Commands\SendReminders',
|
2016-02-21 14:26:27 +01:00
|
|
|
'App\Console\Commands\GenerateResources',
|
2016-08-03 11:40:40 +02:00
|
|
|
'App\Console\Commands\TestOFX',
|
2016-12-08 14:41:35 +01:00
|
|
|
'App\Console\Commands\MakeModule',
|
2016-12-08 19:00:13 +01:00
|
|
|
'App\Console\Commands\MakeClass',
|
2015-09-25 11:57:40 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define the application's command schedule.
|
|
|
|
*
|
|
|
|
* @param \Illuminate\Console\Scheduling\Schedule $schedule
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function schedule(Schedule $schedule)
|
|
|
|
{
|
|
|
|
$logFile = storage_path() . '/logs/cron.log';
|
|
|
|
|
|
|
|
$schedule
|
|
|
|
->command('ninja:send-invoices --force')
|
|
|
|
->sendOutputTo($logFile)
|
|
|
|
->withoutOverlapping()
|
|
|
|
->hourly();
|
2015-03-12 01:44:39 +01:00
|
|
|
|
2015-09-25 11:57:40 +02:00
|
|
|
$schedule
|
|
|
|
->command('ninja:send-reminders --force')
|
|
|
|
->sendOutputTo($logFile)
|
|
|
|
->daily();
|
2015-03-12 01:44:39 +01:00
|
|
|
|
2015-09-25 11:57:40 +02:00
|
|
|
if (Utils::isNinja()) {
|
|
|
|
$schedule
|
|
|
|
->command('ninja:send-renewals --force')
|
|
|
|
->sendOutputTo($logFile)
|
|
|
|
->daily();
|
|
|
|
}
|
2016-08-18 21:52:59 +02:00
|
|
|
|
|
|
|
$schedule
|
|
|
|
->command('updater:check-for-update --prefixVersionWith=v')
|
|
|
|
->sendOutputTo($logFile)
|
|
|
|
->daily();
|
2015-09-25 11:57:40 +02:00
|
|
|
}
|
2015-03-12 01:44:39 +01:00
|
|
|
}
|