- feat: [barobill] 바로빌 카드/은행/홈택스 REST API 구현 - feat: [equipment] 설비관리 API 백엔드 구현 - feat: [payroll] 급여관리 계산 엔진 및 일괄 처리 API - feat: [QMS] 점검표 템플릿 관리 + 로트심사 개선 - feat: [생산/출하] 수주 단위 출하 자동생성 + 상태 흐름 개선 - feat: [receiving] 입고 성적서 파일 연결 - feat: [견적] 제어기 타입 체계 변경 - feat: [email] 테넌트 메일 설정 마이그레이션 및 모델 - feat: [pmis] 시공관리 테이블 마이그레이션 - feat: [R2] 파일 업로드 커맨드 + filesystems 설정 - feat: [배포] Jenkinsfile 롤백 기능 추가 - fix: [approval] SAM API 규칙 준수 코드 개선 - fix: [account-codes] 계정과목 중복 데이터 정리 - fix: [payroll] 일괄 생성 시 삭제된 사용자 건너뛰기 - fix: [db] codebridge DB 분리 후 깨진 FK 제약조건 제거 - refactor: [barobill] 바로빌 연동 코드 전면 개선
84 lines
2.2 KiB
PHP
84 lines
2.2 KiB
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use App\Models\Commons\File;
|
|
use App\Models\Tenants\Tenant;
|
|
use Illuminate\Console\Command;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
class CleanupTrash extends Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'storage:cleanup-trash';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Permanently delete trashed files older than 30 days';
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*/
|
|
public function handle(): int
|
|
{
|
|
$threshold = now()->subDays(30);
|
|
|
|
$files = File::onlyTrashed()
|
|
->where('deleted_at', '<', $threshold)
|
|
->get();
|
|
|
|
$count = $files->count();
|
|
$this->info("Found {$count} files in trash to permanently delete");
|
|
|
|
$deleted = 0;
|
|
foreach ($files as $file) {
|
|
try {
|
|
$this->permanentDelete($file);
|
|
$deleted++;
|
|
} catch (\Exception $e) {
|
|
$this->error("Failed to permanently delete file ID {$file->id}: {$e->getMessage()}");
|
|
}
|
|
}
|
|
|
|
$this->info("Trash cleanup completed: {$deleted}/{$count} files deleted");
|
|
|
|
return Command::SUCCESS;
|
|
}
|
|
|
|
/**
|
|
* Permanently delete a file
|
|
*/
|
|
private function permanentDelete(File $file): void
|
|
{
|
|
DB::transaction(function () use ($file) {
|
|
// Delete physical file
|
|
if (Storage::disk('r2')->exists($file->file_path)) {
|
|
Storage::disk('r2')->delete($file->file_path);
|
|
}
|
|
|
|
// Update tenant storage usage
|
|
$tenant = Tenant::find($file->tenant_id);
|
|
if ($tenant) {
|
|
$tenant->decrement('storage_used', $file->file_size);
|
|
}
|
|
|
|
// Update deletion log
|
|
DB::table('file_deletion_logs')
|
|
->where('file_id', $file->id)
|
|
->where('deletion_type', 'soft')
|
|
->update(['deletion_type' => 'permanent']);
|
|
|
|
// Force delete from DB
|
|
$file->forceDelete();
|
|
});
|
|
}
|
|
}
|