Merge pull request #3961 from pixelfed/staging

Update CloudMediaMigrate command
This commit is contained in:
daniel 2022-12-18 00:41:51 -07:00 committed by GitHub
commit 0ad2623ab1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 56 additions and 32 deletions

View file

@ -69,7 +69,7 @@ class CloudMediaMigrate extends Command
return; return;
} catch (NotFoundHttpException $e) { } catch (NotFoundHttpException $e) {
return; return;
} catch (Exception $e) { } catch (\Exception $e) {
return; return;
} }
} }

View file

@ -9,6 +9,8 @@ use Illuminate\Support\Facades\Log;
use Illuminate\Support\Facades\Storage; use Illuminate\Support\Facades\Storage;
use App\Services\MediaService; use App\Services\MediaService;
use App\Services\StatusService; use App\Services\StatusService;
use Symfony\Component\HttpFoundation\File\Exception\FileNotFoundException;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
class MediaS3GarbageCollector extends Command class MediaS3GarbageCollector extends Command
{ {
@ -88,6 +90,7 @@ class MediaS3GarbageCollector extends Command
$localDisk = Storage::disk('local'); $localDisk = Storage::disk('local');
foreach($gc as $media) { foreach($gc as $media) {
try {
if( if(
$cloudDisk->exists($media->media_path) $cloudDisk->exists($media->media_path)
) { ) {
@ -108,6 +111,16 @@ class MediaS3GarbageCollector extends Command
} }
} }
$bar->advance(); $bar->advance();
} catch (FileNotFoundException $e) {
$bar->advance();
continue;
} catch (NotFoundHttpException $e) {
$bar->advance();
continue;
} catch (\Exception $e) {
$bar->advance();
continue;
}
} }
$bar->finish(); $bar->finish();
$this->line(' '); $this->line(' ');
@ -132,6 +145,7 @@ class MediaS3GarbageCollector extends Command
->where('id', '<', $minId) ->where('id', '<', $minId)
->chunk(50, function($medias) use($cloudDisk, $localDisk, $bar, $log) { ->chunk(50, function($medias) use($cloudDisk, $localDisk, $bar, $log) {
foreach($medias as $media) { foreach($medias as $media) {
try {
if($cloudDisk->exists($media->media_path)) { if($cloudDisk->exists($media->media_path)) {
if( $localDisk->exists($media->media_path)) { if( $localDisk->exists($media->media_path)) {
$localDisk->delete($media->media_path); $localDisk->delete($media->media_path);
@ -149,6 +163,16 @@ class MediaS3GarbageCollector extends Command
} }
} }
$bar->advance(); $bar->advance();
} catch (FileNotFoundException $e) {
$bar->advance();
continue;
} catch (NotFoundHttpException $e) {
$bar->advance();
continue;
} catch (\Exception $e) {
$bar->advance();
continue;
}
} }
}); });