85 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			85 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Controllers;
 | |
| 
 | |
| use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
 | |
| use Illuminate\Foundation\Validation\ValidatesRequests;
 | |
| 
 | |
| class DatabaseController extends Controller
 | |
| {
 | |
|     use AuthorizesRequests, ValidatesRequests;
 | |
| 
 | |
|     public function configuration()
 | |
|     {
 | |
|         $project = currentTeam()->load(['projects'])->projects->where('uuid', request()->route('project_uuid'))->first();
 | |
|         if (!$project) {
 | |
|             return redirect()->route('dashboard');
 | |
|         }
 | |
|         $environment = $project->load(['environments'])->environments->where('name', request()->route('environment_name'))->first()->load(['applications']);
 | |
|         if (!$environment) {
 | |
|             return redirect()->route('dashboard');
 | |
|         }
 | |
|         $database = $environment->databases()->where('uuid', request()->route('database_uuid'))->first();
 | |
|         if (!$database) {
 | |
|             return redirect()->route('dashboard');
 | |
|         }
 | |
|         return view('project.database.configuration', ['database' => $database]);
 | |
|     }
 | |
| 
 | |
|     public function executions()
 | |
|     {
 | |
|         $backup_uuid = request()->route('backup_uuid');
 | |
|         $project = currentTeam()->load(['projects'])->projects->where('uuid', request()->route('project_uuid'))->first();
 | |
|         if (!$project) {
 | |
|             return redirect()->route('dashboard');
 | |
|         }
 | |
|         $environment = $project->load(['environments'])->environments->where('name', request()->route('environment_name'))->first()->load(['applications']);
 | |
|         if (!$environment) {
 | |
|             return redirect()->route('dashboard');
 | |
|         }
 | |
|         $database = $environment->databases()->where('uuid', request()->route('database_uuid'))->first();
 | |
|         if (!$database) {
 | |
|             return redirect()->route('dashboard');
 | |
|         }
 | |
|         $backup = $database->scheduledBackups->where('uuid', $backup_uuid)->first();
 | |
|         if (!$backup) {
 | |
|             return redirect()->route('dashboard');
 | |
|         }
 | |
|         $executions = collect($backup->executions)->sortByDesc('created_at');
 | |
|         return view('project.database.backups.executions', [
 | |
|             'database' => $database,
 | |
|             'backup' => $backup,
 | |
|             'executions' => $executions,
 | |
|             's3s' => currentTeam()->s3s,
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     public function backups()
 | |
|     {
 | |
|         $project = currentTeam()->load(['projects'])->projects->where('uuid', request()->route('project_uuid'))->first();
 | |
|         if (!$project) {
 | |
|             return redirect()->route('dashboard');
 | |
|         }
 | |
|         $environment = $project->load(['environments'])->environments->where('name', request()->route('environment_name'))->first()->load(['applications']);
 | |
|         if (!$environment) {
 | |
|             return redirect()->route('dashboard');
 | |
|         }
 | |
|         $database = $environment->databases()->where('uuid', request()->route('database_uuid'))->first();
 | |
|         if (!$database) {
 | |
|             return redirect()->route('dashboard');
 | |
|         }
 | |
|         // No backups for redis
 | |
|         if ($database->getMorphClass() === 'App\Models\StandaloneRedis') {
 | |
|             return redirect()->route('project.database.configuration', [
 | |
|                 'project_uuid' => $project->uuid,
 | |
|                 'environment_name' => $environment->name,
 | |
|                 'database_uuid' => $database->uuid,
 | |
|             ]);
 | |
|         }
 | |
|         return view('project.database.backups.all', [
 | |
|             'database' => $database,
 | |
|             's3s' => currentTeam()->s3s,
 | |
|         ]);
 | |
|     }
 | |
| }
 | 
