mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 04:56:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Checks;
 | |
| 
 | |
| use App\Models\Node;
 | |
| use App\Services\Helpers\SoftwareVersionService;
 | |
| use Spatie\Health\Checks\Check;
 | |
| use Spatie\Health\Checks\Result;
 | |
| use Spatie\Health\Enums\Status;
 | |
| 
 | |
| class NodeVersionsCheck extends Check
 | |
| {
 | |
|     public function __construct(private SoftwareVersionService $versionService) {}
 | |
| 
 | |
|     public function run(): Result
 | |
|     {
 | |
|         $all = Node::all();
 | |
| 
 | |
|         if ($all->isEmpty()) {
 | |
|             $result = Result::make()
 | |
|                 ->notificationMessage(trans('admin/health.results.nodeversions.no_nodes_created'))
 | |
|                 ->shortSummary(trans('admin/health.results.nodeversions.no_nodes'));
 | |
|             $result->status = Status::skipped();
 | |
| 
 | |
|             return $result;
 | |
|         }
 | |
| 
 | |
|         $outdated = $all
 | |
|             ->filter(fn (Node $node) => !isset($node->systemInformation()['exception']) && !$this->versionService->isLatestWings($node->systemInformation()['version']))
 | |
|             ->count();
 | |
| 
 | |
|         $all = $all->count();
 | |
|         $latestVersion = $this->versionService->latestWingsVersion();
 | |
| 
 | |
|         $result = Result::make()
 | |
|             ->meta([
 | |
|                 'all' => $all,
 | |
|                 'outdated' => $outdated,
 | |
|                 'latestVersion' => $latestVersion,
 | |
|             ])
 | |
|             ->shortSummary($outdated === 0 ? trans('admin/health.results.nodeversions.all_up_to_date') : trans('admin/health.results.nodeversions.outdated', ['outdated' => $outdated, 'all' => $all]));
 | |
| 
 | |
|         return $outdated === 0
 | |
|             ? $result->ok(trans('admin/health.results.nodeversions.ok'))
 | |
|             : $result->failed(trans('admin/health.results.nodeversions.failed', ['outdated' => $outdated, 'all' => $all]));
 | |
|     }
 | |
| }
 | 
