error('Cloud storage not enabled. Exiting...'); return; } $deleteEnabled = config('media.delete_local_after_cloud'); if(!$deleteEnabled) { $this->error('Delete local storage after cloud upload is not enabled'); return; } $limit = $this->option('limit'); $minId = Media::orderByDesc('id')->where('created_at', '<', now()->subHours(12))->first()->id; $gc = Media::whereRemoteMedia(false) ->whereNotNull(['status_id', 'cdn_url', 'replicated_at']) ->whereNot('version', '4') ->where('id', '<', $minId) ->inRandomOrder() ->take($limit) ->get(); $totalSize = 0; $bar = $this->output->createProgressBar($gc->count()); $bar->start(); $cloudDisk = Storage::disk(config('filesystems.cloud')); $localDisk = Storage::disk('local'); foreach($gc as $media) { if( $cloudDisk->exists($media->media_path) ) { if( $localDisk->exists($media->media_path)) { $localDisk->delete($media->media_path); $media->version = 4; $media->save(); $totalSize = $totalSize + $media->size; } else { $media->version = 4; $media->save(); } } else { Log::channel('media')->info('[GC] Local media not properly persisted to cloud storage', ['media_id' => $media->id]); } $bar->advance(); } $bar->finish(); $this->line(' '); $this->info('Finished!'); if($totalSize) { $this->info('Cleared ' . $totalSize . ' bytes of media from local disk!'); } return 0; } }