123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?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);
- }
- }
- }
- }
|