kuvia/app/Console/Kernel.php

65 lines
1.9 KiB
PHP
Raw Normal View History

2021-01-11 11:49:50 +00:00
<?php
namespace App\Console;
2021-01-12 20:59:49 +00:00
use App\Console\Commands\CalculateSpace;
use App\Console\Commands\CalculateTraffic;
2021-01-19 23:02:04 +00:00
use App\Console\Commands\EXIFRead;
2021-01-17 02:20:21 +00:00
use App\Console\Commands\ImageCacheAll;
2021-02-09 21:11:32 +00:00
use App\Console\Commands\ImageToServer;
2021-02-09 18:00:04 +00:00
use App\Console\Commands\Server;
2021-02-09 21:11:32 +00:00
use App\Console\Commands\ServerUpdateCache;
2021-01-21 17:56:30 +00:00
use App\Console\Commands\ThemesScann;
2021-02-09 00:04:17 +00:00
use App\Console\Commands\ThemesScannTenant;
2021-01-21 17:56:30 +00:00
use App\Console\Commands\UserAdmin;
2021-01-11 11:49:50 +00: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 = [
2021-01-12 20:59:49 +00:00
CalculateSpace::class,
2021-01-17 02:20:21 +00:00
CalculateTraffic::class,
2021-01-19 23:02:04 +00:00
ImageCacheAll::class,
2021-01-21 17:56:30 +00:00
EXIFRead::class,
UserAdmin::class,
2021-02-09 18:00:04 +00:00
ThemesScann::class,
2021-02-09 21:11:32 +00:00
Server::class,
ImageToServer::class,
ServerUpdateCache::class
2021-01-11 11:49:50 +00:00
];
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
2021-01-17 23:44:32 +00:00
$schedule->command('calculate:space')->hourlyAt(10)->withoutOverlapping();
2021-01-17 01:43:28 +00:00
//$schedule->command('calculate:traffic')->hourlyAt(10)->withoutOverlapping();
2021-01-17 23:44:32 +00:00
$schedule->command('calculate:traffic')->everyFiveMinutes()->withoutOverlapping();
2021-01-19 23:11:25 +00:00
$schedule->command('exit:read')->everyMinute()->withoutOverlapping();
2021-01-21 17:56:30 +00:00
$schedule->command('theme:scan')->everyMinute()->withoutOverlapping();
2021-02-09 18:00:04 +00:00
$schedule->command("server:set")->everyMinute()->withoutOverlapping();
2021-01-11 11:49:50 +00:00
}
/**
* Register the commands for the application.
*
* @return void
*/
protected function commands()
{
$this->load(__DIR__.'/Commands');
require base_path('routes/console.php');
}
}