mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-12-22 04:53:17 +00:00
Merge pull request #3961 from pixelfed/staging
Update CloudMediaMigrate command
This commit is contained in:
commit
0ad2623ab1
2 changed files with 56 additions and 32 deletions
|
@ -69,7 +69,7 @@ class CloudMediaMigrate extends Command
|
|||
return;
|
||||
} catch (NotFoundHttpException $e) {
|
||||
return;
|
||||
} catch (Exception $e) {
|
||||
} catch (\Exception $e) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,8 @@ use Illuminate\Support\Facades\Log;
|
|||
use Illuminate\Support\Facades\Storage;
|
||||
use App\Services\MediaService;
|
||||
use App\Services\StatusService;
|
||||
use Symfony\Component\HttpFoundation\File\Exception\FileNotFoundException;
|
||||
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
||||
|
||||
class MediaS3GarbageCollector extends Command
|
||||
{
|
||||
|
@ -88,6 +90,7 @@ class MediaS3GarbageCollector extends Command
|
|||
$localDisk = Storage::disk('local');
|
||||
|
||||
foreach($gc as $media) {
|
||||
try {
|
||||
if(
|
||||
$cloudDisk->exists($media->media_path)
|
||||
) {
|
||||
|
@ -108,6 +111,16 @@ class MediaS3GarbageCollector extends Command
|
|||
}
|
||||
}
|
||||
$bar->advance();
|
||||
} catch (FileNotFoundException $e) {
|
||||
$bar->advance();
|
||||
continue;
|
||||
} catch (NotFoundHttpException $e) {
|
||||
$bar->advance();
|
||||
continue;
|
||||
} catch (\Exception $e) {
|
||||
$bar->advance();
|
||||
continue;
|
||||
}
|
||||
}
|
||||
$bar->finish();
|
||||
$this->line(' ');
|
||||
|
@ -132,6 +145,7 @@ class MediaS3GarbageCollector extends Command
|
|||
->where('id', '<', $minId)
|
||||
->chunk(50, function($medias) use($cloudDisk, $localDisk, $bar, $log) {
|
||||
foreach($medias as $media) {
|
||||
try {
|
||||
if($cloudDisk->exists($media->media_path)) {
|
||||
if( $localDisk->exists($media->media_path)) {
|
||||
$localDisk->delete($media->media_path);
|
||||
|
@ -149,6 +163,16 @@ class MediaS3GarbageCollector extends Command
|
|||
}
|
||||
}
|
||||
$bar->advance();
|
||||
} catch (FileNotFoundException $e) {
|
||||
$bar->advance();
|
||||
continue;
|
||||
} catch (NotFoundHttpException $e) {
|
||||
$bar->advance();
|
||||
continue;
|
||||
} catch (\Exception $e) {
|
||||
$bar->advance();
|
||||
continue;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue