2023-03-28 20:13:08 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
2023-05-22 13:47:40 +00:00
|
|
|
use App\Models\Project;
|
2023-07-26 11:23:47 +00:00
|
|
|
use App\Models\Server;
|
2023-03-28 20:13:08 +00:00
|
|
|
|
|
|
|
class ProjectController extends Controller
|
|
|
|
{
|
2023-05-22 13:47:40 +00:00
|
|
|
public function all()
|
2023-03-28 20:13:08 +00:00
|
|
|
{
|
2023-07-26 11:23:47 +00:00
|
|
|
return view('projects', [
|
|
|
|
'projects' => Project::ownedByCurrentTeam()->get(),
|
|
|
|
'servers' => Server::ownedByCurrentTeam()->count(),
|
|
|
|
]);
|
2023-05-22 13:47:40 +00:00
|
|
|
}
|
|
|
|
|
2023-06-22 07:33:26 +00:00
|
|
|
public function edit()
|
|
|
|
{
|
|
|
|
$projectUuid = request()->route('project_uuid');
|
2023-08-22 15:44:49 +00:00
|
|
|
$teamId = currentTeam()->id;
|
2023-06-22 07:33:26 +00:00
|
|
|
$project = Project::where('team_id', $teamId)->where('uuid', $projectUuid)->first();
|
|
|
|
if (!$project) {
|
|
|
|
return redirect()->route('dashboard');
|
|
|
|
}
|
|
|
|
return view('project.edit', ['project' => $project]);
|
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-05-22 13:47:40 +00:00
|
|
|
public function show()
|
|
|
|
{
|
2023-06-15 07:15:41 +00:00
|
|
|
$projectUuid = request()->route('project_uuid');
|
2023-08-22 15:44:49 +00:00
|
|
|
$teamId = currentTeam()->id;
|
2023-05-22 13:47:40 +00:00
|
|
|
|
2023-06-15 07:15:41 +00:00
|
|
|
$project = Project::where('team_id', $teamId)->where('uuid', $projectUuid)->first();
|
2023-03-28 20:13:08 +00:00
|
|
|
if (!$project) {
|
2023-04-25 12:43:35 +00:00
|
|
|
return redirect()->route('dashboard');
|
2023-03-28 20:13:08 +00:00
|
|
|
}
|
2023-04-12 20:13:17 +00:00
|
|
|
$project->load(['environments']);
|
2023-05-22 13:47:40 +00:00
|
|
|
return view('project.show', ['project' => $project]);
|
2023-03-28 20:13:08 +00:00
|
|
|
}
|
2023-03-31 11:32:07 +00:00
|
|
|
|
2023-05-11 13:20:02 +00:00
|
|
|
public function new()
|
2023-04-26 11:25:41 +00:00
|
|
|
{
|
2023-08-09 13:57:53 +00:00
|
|
|
$type = request()->query('type');
|
|
|
|
$destination_uuid = request()->query('destination');
|
2023-08-30 09:06:44 +00:00
|
|
|
$server = requesT()->query('server');
|
2023-08-09 13:57:53 +00:00
|
|
|
|
2023-08-22 15:44:49 +00:00
|
|
|
$project = currentTeam()->load(['projects'])->projects->where('uuid', request()->route('project_uuid'))->first();
|
2023-04-26 11:25:41 +00:00
|
|
|
if (!$project) {
|
|
|
|
return redirect()->route('dashboard');
|
|
|
|
}
|
|
|
|
$environment = $project->load(['environments'])->environments->where('name', request()->route('environment_name'))->first();
|
|
|
|
if (!$environment) {
|
|
|
|
return redirect()->route('dashboard');
|
|
|
|
}
|
2023-08-09 13:57:53 +00:00
|
|
|
if (in_array($type, DATABASE_TYPES)) {
|
|
|
|
$standalone_postgresql = create_standalone_postgresql($environment->id, $destination_uuid);
|
|
|
|
return redirect()->route('project.database.configuration', [
|
|
|
|
'project_uuid' => $project->uuid,
|
|
|
|
'environment_name' => $environment->name,
|
|
|
|
'database_uuid' => $standalone_postgresql->uuid,
|
|
|
|
]);
|
|
|
|
}
|
2023-05-11 13:20:02 +00:00
|
|
|
return view('project.new', [
|
|
|
|
'type' => $type
|
|
|
|
]);
|
2023-04-26 11:25:41 +00:00
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-03-28 20:13:08 +00:00
|
|
|
public function resources()
|
|
|
|
{
|
2023-08-22 15:44:49 +00:00
|
|
|
$project = currentTeam()->load(['projects'])->projects->where('uuid', request()->route('project_uuid'))->first();
|
2023-03-28 20:13:08 +00:00
|
|
|
if (!$project) {
|
2023-04-25 12:43:35 +00:00
|
|
|
return redirect()->route('dashboard');
|
2023-03-28 20:13:08 +00:00
|
|
|
}
|
2023-03-30 17:50:27 +00:00
|
|
|
$environment = $project->load(['environments'])->environments->where('name', request()->route('environment_name'))->first();
|
|
|
|
if (!$environment) {
|
2023-04-25 12:43:35 +00:00
|
|
|
return redirect()->route('dashboard');
|
2023-03-30 17:50:27 +00:00
|
|
|
}
|
2023-05-16 13:27:47 +00:00
|
|
|
return view('project.resources', [
|
|
|
|
'project' => $project,
|
|
|
|
'environment' => $environment
|
|
|
|
]);
|
2023-03-28 20:13:08 +00:00
|
|
|
}
|
|
|
|
}
|