mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 16:46:51 +01:00 
			
		
		
		
	* update composer.lock * run pint * fix phpstan * update migrations (sqlite `dropForeign`) * fix migrations * Reset these back for now * Alphabetize the rules * run `php artisan filament:upgrade` --------- Co-authored-by: Lance Pioch <git@lance.sh>
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Services\Databases\Hosts;
 | 
						|
 | 
						|
use App\Models\DatabaseHost;
 | 
						|
use Illuminate\Database\DatabaseManager;
 | 
						|
use Illuminate\Database\ConnectionInterface;
 | 
						|
use App\Extensions\DynamicDatabaseConnection;
 | 
						|
 | 
						|
class HostUpdateService
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * HostUpdateService constructor.
 | 
						|
     */
 | 
						|
    public function __construct(
 | 
						|
        private ConnectionInterface $connection,
 | 
						|
        private DatabaseManager $databaseManager,
 | 
						|
        private DynamicDatabaseConnection $dynamic,
 | 
						|
    ) {}
 | 
						|
 | 
						|
    /**
 | 
						|
     * Update a database host and persist to the database.
 | 
						|
     *
 | 
						|
     * @throws \Throwable
 | 
						|
     */
 | 
						|
    public function handle(DatabaseHost|int $host, array $data): DatabaseHost
 | 
						|
    {
 | 
						|
        if (!$host instanceof DatabaseHost) {
 | 
						|
            $host = DatabaseHost::query()->findOrFail($host);
 | 
						|
        }
 | 
						|
 | 
						|
        if (empty(array_get($data, 'password'))) {
 | 
						|
            unset($data['password']);
 | 
						|
        }
 | 
						|
 | 
						|
        return $this->connection->transaction(function () use ($data, $host) {
 | 
						|
            $host->update($data);
 | 
						|
 | 
						|
            $this->dynamic->set('dynamic', $host);
 | 
						|
            $this->databaseManager->connection('dynamic')->getPdo();
 | 
						|
 | 
						|
            return $host;
 | 
						|
        });
 | 
						|
    }
 | 
						|
}
 |