mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 06:46:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			127 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			127 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Controllers\Admin;
 | |
| 
 | |
| use App\Models\Node;
 | |
| use Illuminate\View\View;
 | |
| use App\Models\DatabaseHost;
 | |
| use Illuminate\Http\RedirectResponse;
 | |
| use Prologue\Alerts\AlertsMessageBag;
 | |
| use App\Http\Controllers\Controller;
 | |
| use App\Services\Databases\Hosts\HostUpdateService;
 | |
| use App\Http\Requests\Admin\DatabaseHostFormRequest;
 | |
| use App\Services\Databases\Hosts\HostCreationService;
 | |
| use App\Services\Databases\Hosts\HostDeletionService;
 | |
| 
 | |
| class DatabaseController extends Controller
 | |
| {
 | |
|     /**
 | |
|      * DatabaseController constructor.
 | |
|      */
 | |
|     public function __construct(
 | |
|         private AlertsMessageBag $alert,
 | |
|         private HostCreationService $creationService,
 | |
|         private HostDeletionService $deletionService,
 | |
|         private HostUpdateService $updateService,
 | |
|     ) {
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Display database host index.
 | |
|      */
 | |
|     public function index(): View
 | |
|     {
 | |
|         $hosts = DatabaseHost::query()
 | |
|             ->withCount('databases')
 | |
|             ->with('node')
 | |
|             ->get();
 | |
| 
 | |
|         return view('admin.databases.index', [
 | |
|             'nodes' => Node::all(),
 | |
|             'hosts' => $hosts,
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Display database host to user.
 | |
|      */
 | |
|     public function view(DatabaseHost $host): View
 | |
|     {
 | |
|         $databases = $host->databases()->with('server')->paginate(25);
 | |
| 
 | |
|         return view('admin.databases.view', [
 | |
|             'nodes' => Node::all(),
 | |
|             'host' => $host,
 | |
|             'databases' => $databases,
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Handle request to create a new database host.
 | |
|      *
 | |
|      * @throws \Throwable
 | |
|      */
 | |
|     public function create(DatabaseHostFormRequest $request): RedirectResponse
 | |
|     {
 | |
|         try {
 | |
|             $host = $this->creationService->handle($request->normalize());
 | |
|         } catch (\Exception $exception) {
 | |
|             if ($exception instanceof \PDOException || $exception->getPrevious() instanceof \PDOException) {
 | |
|                 $this->alert->danger(
 | |
|                     sprintf('There was an error while trying to connect to the host or while executing a query: "%s"', $exception->getMessage())
 | |
|                 )->flash();
 | |
| 
 | |
|                 return redirect()->route('admin.databases')->withInput($request->validated());
 | |
|             } else {
 | |
|                 throw $exception;
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         $this->alert->success('Successfully created a new database host on the system.')->flash();
 | |
| 
 | |
|         return redirect()->route('admin.databases.view', $host->id);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Handle updating database host.
 | |
|      *
 | |
|      * @throws \Throwable
 | |
|      */
 | |
|     public function update(DatabaseHostFormRequest $request, DatabaseHost $host): RedirectResponse
 | |
|     {
 | |
|         $redirect = redirect()->route('admin.databases.view', $host->id);
 | |
| 
 | |
|         try {
 | |
|             $this->updateService->handle($host->id, $request->normalize());
 | |
|             $this->alert->success('Database host was updated successfully.')->flash();
 | |
|         } catch (\Exception $exception) {
 | |
|             // Catch any SQL related exceptions and display them back to the user, otherwise just
 | |
|             // throw the exception like normal and move on with it.
 | |
|             if ($exception instanceof \PDOException || $exception->getPrevious() instanceof \PDOException) {
 | |
|                 $this->alert->danger(
 | |
|                     sprintf('There was an error while trying to connect to the host or while executing a query: "%s"', $exception->getMessage())
 | |
|                 )->flash();
 | |
| 
 | |
|                 return $redirect->withInput($request->normalize());
 | |
|             } else {
 | |
|                 throw $exception;
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         return $redirect;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Handle request to delete a database host.
 | |
|      *
 | |
|      * @throws \App\Exceptions\Service\HasActiveServersException
 | |
|      */
 | |
|     public function delete(int $host): RedirectResponse
 | |
|     {
 | |
|         $this->deletionService->handle($host);
 | |
|         $this->alert->success('The requested database host has been deleted from the system.')->flash();
 | |
| 
 | |
|         return redirect()->route('admin.databases');
 | |
|     }
 | |
| }
 | 
