Skip to content

Commit

Permalink
Update console kernel, add import upload gc
Browse files Browse the repository at this point in the history
  • Loading branch information
dansup committed Jun 26, 2023
1 parent b47e8f8 commit afe6948
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
42 changes: 42 additions & 0 deletions app/Console/Commands/ImportUploadCleanStorage.php
@@ -0,0 +1,42 @@
<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;
use App\Models\ImportPost;
use Storage;
use App\Services\ImportService;
use App\User;

class ImportUploadCleanStorage extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'app:import-upload-clean-storage';

/**
* The console command description.
*
* @var string
*/
protected $description = 'Command description';

/**
* Execute the console command.
*/
public function handle()
{
$dirs = Storage::allDirectories('imports');

foreach($dirs as $dir) {
$uid = last(explode('/', $dir));
$skip = User::whereNull('status')->find($uid);
if(!$skip) {
Storage::deleteDirectory($dir);
}
}
}
}
1 change: 1 addition & 0 deletions app/Console/Kernel.php
Expand Up @@ -41,6 +41,7 @@ protected function schedule(Schedule $schedule)
$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);
}
}

Expand Down

0 comments on commit afe6948

Please sign in to comment.