coolify/app/Livewire/Project/New/SimpleDockerfile.php

80 lines
2.5 KiB
PHP
Raw Normal View History

2023-08-11 22:41:47 +02:00
<?php
2023-12-07 19:06:32 +01:00
namespace App\Livewire\Project\New;
2023-08-11 22:41:47 +02:00
use App\Models\Application;
use App\Models\GithubApp;
use App\Models\Project;
use App\Models\StandaloneDocker;
use App\Models\SwarmDocker;
use Livewire\Component;
use Visus\Cuid2\Cuid2;
class SimpleDockerfile extends Component
{
public string $dockerfile = '';
public array $parameters;
public array $query;
public function mount()
{
$this->parameters = get_route_parameters();
$this->query = request()->query();
if (isDev()) {
2023-08-11 22:41:47 +02:00
$this->dockerfile = 'FROM nginx
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
';
}
}
public function submit()
{
$this->validate([
'dockerfile' => 'required'
]);
$destination_uuid = $this->query['destination'];
$destination = StandaloneDocker::where('uuid', $destination_uuid)->first();
if (!$destination) {
$destination = SwarmDocker::where('uuid', $destination_uuid)->first();
}
if (!$destination) {
throw new \Exception('Destination not found. What?!');
}
$destination_class = $destination->getMorphClass();
$project = Project::where('uuid', $this->parameters['project_uuid'])->first();
$environment = $project->load(['environments'])->environments->where('name', $this->parameters['environment_name'])->first();
$port = get_port_from_dockerfile($this->dockerfile);
if (!$port) {
$port = 80;
}
2023-08-11 22:41:47 +02:00
$application = Application::create([
'name' => 'dockerfile-' . new Cuid2(7),
'repository_project_id' => 0,
'git_repository' => "coollabsio/coolify",
'git_branch' => 'main',
'build_pack' => 'dockerfile',
'dockerfile' => $this->dockerfile,
'ports_exposes' => $port,
'environment_id' => $environment->id,
'destination_id' => $destination->id,
'destination_type' => $destination_class,
'health_check_enabled' => false,
2023-08-11 22:41:47 +02:00
'source_id' => 0,
'source_type' => GithubApp::class
]);
2023-09-19 15:51:13 +02:00
2023-09-30 15:39:40 +02:00
$fqdn = generateFqdn($destination->server, $application->uuid);
2023-08-21 18:00:12 +02:00
$application->update([
2023-09-19 15:51:13 +02:00
'name' => 'dockerfile-' . $application->uuid,
2023-09-30 15:39:40 +02:00
'fqdn' => $fqdn
2023-08-21 18:00:12 +02:00
]);
2023-12-27 16:45:01 +01:00
return redirect()->route('project.application.configuration', [
2023-08-11 22:41:47 +02:00
'application_uuid' => $application->uuid,
'environment_name' => $environment->name,
'project_uuid' => $project->uuid,
2023-12-27 16:45:01 +01:00
]);
2023-08-11 22:41:47 +02:00
}
}