pixelfed/app/Console/Commands/StoryGC.php

106 lines
2.2 KiB
PHP
Raw Normal View History

2020-01-01 04:58:21 +00:00
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\{
DB,
Storage
};
use App\{
Story,
StoryView
};
class StoryGC extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'story:gc';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Clear expired Stories';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
2020-02-05 07:44:52 +00:00
{
$this->directoryScan();
$this->deleteViews();
$this->deleteStories();
}
protected function directoryScan()
{
$day = now()->day;
2020-04-11 03:23:48 +00:00
if($day != 3) {
2020-02-05 07:44:52 +00:00
return;
}
$monthHash = substr(hash('sha1', date('Y').date('m')), 0, 12);
$t1 = Storage::directories('public/_esm.t1');
$t2 = Storage::directories('public/_esm.t2');
$dirs = array_merge($t1, $t2);
foreach($dirs as $dir) {
$hash = last(explode('/', $dir));
if($hash != $monthHash) {
$this->info('Found directory to delete: ' . $dir);
$this->deleteDirectory($dir);
}
}
}
protected function deleteDirectory($path)
{
Storage::deleteDirectory($path);
}
protected function deleteViews()
{
2020-04-11 03:23:48 +00:00
StoryView::where('created_at', '<', now()->subMinutes(1441))->delete();
2020-02-05 07:44:52 +00:00
}
protected function deleteStories()
2020-01-01 04:58:21 +00:00
{
2020-04-11 03:23:48 +00:00
$stories = Story::where('created_at', '<', now()->subMinutes(1441))->take(50)->get();
2020-01-01 04:58:21 +00:00
if($stories->count() == 0) {
exit;
}
foreach($stories as $story) {
if(Storage::exists($story->path) == true) {
Storage::delete($story->path);
}
DB::transaction(function() use($story) {
StoryView::whereStoryId($story->id)->delete();
$story->delete();
});
}
}
}