refactor search functionality; remove deprecated services and implement new action and task classes for improved structure and maintainability

This commit is contained in:
F4ilji
2025-07-18 14:14:10 +05:00
parent 0874d3e6b5
commit b8235404b8
20 changed files with 525 additions and 440 deletions
@@ -0,0 +1,22 @@
<?php
namespace App\Containers\Search\Tasks;
use Illuminate\Support\Facades\Cache;
class GetStaticSearchCacheStatusTask
{
const CACHE_KEY = 'static_html_index_v2';
const FILES_DIR = 'sveden';
public function run(): array
{
return [
'exists' => Cache::has(self::CACHE_KEY),
'ttl' => Cache::get(self::CACHE_KEY.'_ttl', null),
'driver' => config('cache.default'),
'path' => public_path(self::FILES_DIR),
'directory_exists' => is_dir(public_path(self::FILES_DIR))
];
}
}