added command to clear temp files

This commit is contained in:
Denis Duliçi
2021-05-18 10:32:11 +03:00
parent bdb51a27a4
commit 37d0e7da4e
3 changed files with 58 additions and 5 deletions

View File

@ -0,0 +1,42 @@
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Filesystem\Filesystem;
class StorageTempClear extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'storage-temp:clear';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Clear all storage/app/temp files';
/**
* Execute the console command.
*
* @return void
*
*/
public function handle()
{
$filesystem = app(Filesystem::class);
$path = storage_path('app/temp');
foreach ($filesystem->glob("{$path}/*") as $file) {
$filesystem->delete($file);
}
$this->info('Temporary files cleared!');
}
}

View File

@ -32,6 +32,7 @@ class Kernel extends ConsoleKernel
$schedule->command('reminder:invoice')->dailyAt($schedule_time);
$schedule->command('reminder:bill')->dailyAt($schedule_time);
$schedule->command('recurring:check')->dailyAt($schedule_time);
$schedule->command('storage-temp:clear')->dailyAt('17:00');
}
/**
@ -45,4 +46,14 @@ class Kernel extends ConsoleKernel
$this->load(__DIR__ . '/Commands');
}
/**
* Get the timezone that should be used by default for scheduled events.
*
* @return \DateTimeZone|string|null
*/
protected function scheduleTimezone()
{
return config('app.timezone');
}
}