1
0
Fork 0
pixelfed/app/Console/Kernel.php

60 lines
1.8 KiB
PHP
Raw Normal View History

2018-04-15 23:56:48 +00:00
<?php
namespace App\Console;
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.
*
2018-08-28 03:07:36 +00:00
* @param \Illuminate\Console\Scheduling\Schedule $schedule
*
2018-04-15 23:56:48 +00:00
* @return void
*/
protected function schedule(Schedule $schedule)
{
2022-12-18 03:28:23 +00:00
$schedule->command('media:optimize')->hourlyAt(40);
$schedule->command('media:gc')->hourlyAt(5);
2018-05-30 03:01:56 +00:00
$schedule->command('horizon:snapshot')->everyFiveMinutes();
2020-01-01 04:58:21 +00:00
$schedule->command('story:gc')->everyFiveMinutes();
$schedule->command('gc:failedjobs')->dailyAt(3);
$schedule->command('gc:passwordreset')->dailyAt('09:41');
$schedule->command('gc:sessions')->twiceDaily(13, 23);
2022-12-18 03:40:32 +00:00
if(in_array(config_cache('pixelfed.cloud_storage'), ['1', true, 'true']) && config('media.delete_local_after_cloud')) {
2022-12-18 03:40:32 +00:00
$schedule->command('media:s3gc')->hourlyAt(15);
}
2023-06-12 11:46:56 +00:00
if(config('import.instagram.enabled')) {
$schedule->command('app:transform-imports')->everyFourMinutes();
$schedule->command('app:import-upload-garbage-collection')->hourlyAt(51);
$schedule->command('app:import-remove-deleted-accounts')->hourlyAt(37);
$schedule->command('app:import-upload-clean-storage')->twiceDailyAt(1, 13, 32);
2023-06-12 11:46:56 +00:00
}
2018-04-15 23:56:48 +00:00
}
/**
* Register the commands for the application.
*
* @return void
*/
protected function commands()
{
$this->load(__DIR__.'/Commands');
require base_path('routes/console.php');
}
}