56 lines
1.6 KiB
PHP
56 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Console;
|
|
|
|
use App\Console\Commands\BusinessStore;
|
|
use App\Console\Commands\CheckPaymentsAccount;
|
|
use App\Console\Commands\UserMakeAboOrder;
|
|
use App\Console\Commands\UserCleanup;
|
|
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 = [
|
|
BusinessStore::class,
|
|
CheckPaymentsAccount::class,
|
|
UserMakeAboOrder::class,
|
|
UserCleanup::class,
|
|
];
|
|
|
|
/**
|
|
* Define the application's command schedule.
|
|
*
|
|
* @param \Illuminate\Console\Scheduling\Schedule $schedule
|
|
* @return void
|
|
*/
|
|
protected function schedule(Schedule $schedule)
|
|
{
|
|
// Job 1: Überprüft täglich um 02:00 Uhr die Zahlungskonten.
|
|
$schedule->command('payments:check-accounts')->dailyAt('02:00');
|
|
// Jobs 2, 3, 4: Die Befehle aus deinem alten Shell-Skript.
|
|
// Werden nacheinander täglich zu unterschiedlichen Zeiten ausgeführt,
|
|
// um die Serverlast zu verteilen.
|
|
$schedule->command('store-optimized 0 0')->dailyAt('03:00');
|
|
|
|
$schedule->command('user:cleanup')->dailyAt('03:30');
|
|
$schedule->command('user:make_abo_order')->dailyAt('04:00');
|
|
}
|
|
|
|
/**
|
|
* Register the commands for the application.
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function commands()
|
|
{
|
|
$this->load(__DIR__ . '/Commands');
|
|
|
|
require base_path('routes/console.php');
|
|
}
|
|
}
|