mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 04:06:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Pterodactyl\Repositories\Eloquent;
 | 
						|
 | 
						|
use Illuminate\Support\Collection;
 | 
						|
use Pterodactyl\Models\DatabaseHost;
 | 
						|
use Illuminate\Database\Eloquent\ModelNotFoundException;
 | 
						|
use Pterodactyl\Exceptions\Repository\RecordNotFoundException;
 | 
						|
use Pterodactyl\Contracts\Repository\DatabaseHostRepositoryInterface;
 | 
						|
 | 
						|
class DatabaseHostRepository extends EloquentRepository implements DatabaseHostRepositoryInterface
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Return the model backing this repository.
 | 
						|
     *
 | 
						|
     * @return string
 | 
						|
     */
 | 
						|
    public function model()
 | 
						|
    {
 | 
						|
        return DatabaseHost::class;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Return database hosts with a count of databases and the node
 | 
						|
     * information for which it is attached.
 | 
						|
     *
 | 
						|
     * @return \Illuminate\Support\Collection
 | 
						|
     */
 | 
						|
    public function getWithViewDetails(): Collection
 | 
						|
    {
 | 
						|
        return $this->getBuilder()->withCount('databases')->with('node')->get();
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Return a database host with the databases and associated servers
 | 
						|
     * that are attached to said databases.
 | 
						|
     *
 | 
						|
     * @param int $id
 | 
						|
     * @return \Pterodactyl\Models\DatabaseHost
 | 
						|
     *
 | 
						|
     * @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
 | 
						|
     */
 | 
						|
    public function getWithServers(int $id): DatabaseHost
 | 
						|
    {
 | 
						|
        try {
 | 
						|
            return $this->getBuilder()->with('databases.server')->findOrFail($id, $this->getColumns());
 | 
						|
        } catch (ModelNotFoundException $exception) {
 | 
						|
            throw new RecordNotFoundException;
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |