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

284 lines
10 KiB
PHP
Raw Normal View History

2023-04-25 14:43:35 +02:00
<?php
2023-12-07 19:06:32 +01:00
namespace App\Livewire\Project\New;
2023-04-25 14:43:35 +02:00
use App\Models\Application;
use App\Models\GithubApp;
use App\Models\GitlabApp;
use App\Models\Project;
2024-06-07 17:21:46 +02:00
use App\Models\Service;
2023-04-25 14:43:35 +02:00
use App\Models\StandaloneDocker;
use App\Models\SwarmDocker;
2023-07-11 11:11:51 +02:00
use Carbon\Carbon;
2023-04-25 14:43:35 +02:00
use Livewire\Component;
use Spatie\Url\Url;
class PublicGitRepository extends Component
{
2023-05-10 13:05:32 +02:00
public string $repository_url;
2024-06-10 22:43:34 +02:00
2023-05-10 13:05:32 +02:00
public int $port = 3000;
2024-06-10 22:43:34 +02:00
2023-04-26 13:25:41 +02:00
public string $type;
2024-06-10 22:43:34 +02:00
2023-04-26 13:25:41 +02:00
public $parameters;
2024-06-10 22:43:34 +02:00
2023-05-11 15:20:02 +02:00
public $query;
2024-06-10 22:43:34 +02:00
public bool $branch_found = false;
2024-06-10 22:43:34 +02:00
2023-06-05 12:07:55 +02:00
public string $selected_branch = 'main';
2024-06-10 22:43:34 +02:00
2023-04-26 13:01:09 +02:00
public bool $is_static = false;
2024-06-10 22:43:34 +02:00
public ?string $publish_directory = null;
2023-07-11 11:11:51 +02:00
public string $git_branch = 'main';
2024-06-10 22:43:34 +02:00
public int $rate_limit_remaining = 0;
2024-06-10 22:43:34 +02:00
2023-07-11 11:11:51 +02:00
public $rate_limit_reset = 0;
2024-06-10 22:43:34 +02:00
private object $repository_url_parsed;
2024-06-10 22:43:34 +02:00
public GithubApp|GitlabApp|string $git_source = 'other';
2024-06-10 22:43:34 +02:00
public string $git_host;
2024-06-10 22:43:34 +02:00
public string $git_repository;
2024-06-10 22:43:34 +02:00
public $build_pack = 'nixpacks';
2024-06-10 22:43:34 +02:00
public bool $show_is_static = true;
2024-06-07 17:21:46 +02:00
public bool $new_compose_services = false;
2023-04-25 14:43:35 +02:00
protected $rules = [
2023-05-10 13:05:32 +02:00
'repository_url' => 'required|url',
'port' => 'required|numeric',
'is_static' => 'required|boolean',
2023-04-27 12:25:32 +02:00
'publish_directory' => 'nullable|string',
'build_pack' => 'required|string',
2023-04-25 14:43:35 +02:00
];
2024-06-10 22:43:34 +02:00
2023-06-16 12:35:40 +02:00
protected $validationAttributes = [
'repository_url' => 'repository',
'port' => 'port',
'is_static' => 'static',
'publish_directory' => 'publish directory',
'build_pack' => 'build pack',
2023-06-16 12:35:40 +02:00
];
2023-04-25 14:43:35 +02:00
public function mount()
{
if (isDev()) {
2023-06-05 12:07:55 +02:00
$this->repository_url = 'https://github.com/coollabsio/coolify-examples';
2023-04-25 14:43:35 +02:00
$this->port = 3000;
}
$this->parameters = get_route_parameters();
2023-05-11 15:20:02 +02:00
$this->query = request()->query();
2023-04-25 14:43:35 +02:00
}
2024-06-10 22:43:34 +02:00
public function updatedBuildPack()
{
if ($this->build_pack === 'nixpacks') {
$this->show_is_static = true;
$this->port = 3000;
2024-06-10 22:43:34 +02:00
} elseif ($this->build_pack === 'static') {
$this->show_is_static = false;
$this->is_static = false;
$this->port = 80;
} else {
$this->show_is_static = false;
$this->is_static = false;
}
}
2024-06-10 22:43:34 +02:00
2023-04-26 13:01:09 +02:00
public function instantSave()
{
if ($this->is_static) {
$this->port = 80;
$this->publish_directory = '/dist';
} else {
$this->port = 3000;
$this->publish_directory = null;
}
2023-12-07 19:06:32 +01:00
$this->dispatch('success', 'Application settings updated!');
2023-04-26 13:01:09 +02:00
}
2024-06-10 22:43:34 +02:00
public function load_any_git()
{
$this->branch_found = true;
}
2024-06-10 22:43:34 +02:00
public function load_branch()
2023-06-05 12:07:55 +02:00
{
2023-09-01 11:35:33 +02:00
try {
if (str($this->repository_url)->startsWith('git@')) {
$github_instance = str($this->repository_url)->after('git@')->before(':');
$repository = str($this->repository_url)->after(':')->before('.git');
2024-06-10 22:43:34 +02:00
$this->repository_url = 'https://'.str($github_instance).'/'.$repository;
}
if (
(str($this->repository_url)->startsWith('https://') ||
str($this->repository_url)->startsWith('http://')) &&
2024-06-10 22:43:34 +02:00
! str($this->repository_url)->endsWith('.git') &&
(! str($this->repository_url)->contains('github.com') ||
! str($this->repository_url)->contains('git.sr.ht'))
) {
2024-06-10 22:43:34 +02:00
$this->repository_url = $this->repository_url.'.git';
}
if (str($this->repository_url)->contains('github.com')) {
$this->repository_url = str($this->repository_url)->before('.git')->value();
}
2023-10-11 12:56:57 +02:00
} catch (\Throwable $e) {
return handleError($e, $this);
}
try {
$this->branch_found = false;
2023-09-19 15:51:13 +02:00
$this->get_git_source();
$this->get_branch();
$this->selected_branch = $this->git_branch;
2023-09-11 17:36:30 +02:00
} catch (\Throwable $e) {
ray($e->getMessage());
2024-06-10 22:43:34 +02:00
if (! $this->branch_found && $this->git_branch == 'main') {
try {
$this->git_branch = 'master';
$this->get_branch();
} catch (\Throwable $e) {
return handleError($e, $this);
}
} else {
return handleError($e, $this);
2023-07-11 11:11:51 +02:00
}
2023-06-05 12:07:55 +02:00
}
}
2023-06-05 12:07:55 +02:00
private function get_git_source()
{
$this->repository_url_parsed = Url::fromString($this->repository_url);
$this->git_host = $this->repository_url_parsed->getHost();
2024-06-10 22:43:34 +02:00
$this->git_repository = $this->repository_url_parsed->getSegment(1).'/'.$this->repository_url_parsed->getSegment(2);
2023-06-05 12:07:55 +02:00
$this->git_branch = $this->repository_url_parsed->getSegment(4) ?? 'main';
if ($this->git_host == 'github.com') {
$this->git_source = GithubApp::where('name', 'Public GitHub')->first();
2024-06-10 22:43:34 +02:00
2023-10-06 13:52:15 +02:00
return;
2023-09-01 11:35:33 +02:00
}
$this->git_repository = $this->repository_url;
$this->git_source = 'other';
2023-06-05 12:07:55 +02:00
}
private function get_branch()
{
if ($this->git_source === 'other') {
$this->branch_found = true;
2024-06-10 22:43:34 +02:00
return;
}
if ($this->git_source->getMorphClass() === 'App\Models\GithubApp') {
['rate_limit_remaining' => $this->rate_limit_remaining, 'rate_limit_reset' => $this->rate_limit_reset] = githubApi(source: $this->git_source, endpoint: "/repos/{$this->git_repository}/branches/{$this->git_branch}");
2024-06-10 22:43:34 +02:00
$this->rate_limit_reset = Carbon::parse((int) $this->rate_limit_reset)->format('Y-M-d H:i:s');
$this->branch_found = true;
}
}
2023-04-25 14:43:35 +02:00
public function submit()
{
2023-05-11 15:20:02 +02:00
try {
$this->validate();
2023-06-05 12:07:55 +02:00
$destination_uuid = $this->query['destination'];
$project_uuid = $this->parameters['project_uuid'];
$environment_name = $this->parameters['environment_name'];
2023-05-11 15:20:02 +02:00
$destination = StandaloneDocker::where('uuid', $destination_uuid)->first();
2024-06-10 22:43:34 +02:00
if (! $destination) {
2023-05-11 15:20:02 +02:00
$destination = SwarmDocker::where('uuid', $destination_uuid)->first();
}
2024-06-10 22:43:34 +02:00
if (! $destination) {
2023-05-11 15:20:02 +02:00
throw new \Exception('Destination not found. What?!');
}
$destination_class = $destination->getMorphClass();
2023-04-25 14:43:35 +02:00
2023-06-05 12:07:55 +02:00
$project = Project::where('uuid', $project_uuid)->first();
$environment = $project->load(['environments'])->environments->where('name', $environment_name)->first();
2023-05-11 15:20:02 +02:00
2024-06-10 22:43:34 +02:00
if ($this->build_pack === 'dockercompose' && isDev() && $this->new_compose_services) {
2024-06-07 17:21:46 +02:00
$server = $destination->server;
2024-06-10 22:43:34 +02:00
$new_service = [
'name' => 'service'.str()->random(10),
2024-06-07 17:21:46 +02:00
'docker_compose_raw' => 'coolify',
'environment_id' => $environment->id,
'server_id' => $server->id,
];
if ($this->git_source === 'other') {
$new_service['git_repository'] = $this->git_repository;
$new_service['git_branch'] = $this->git_branch;
} else {
$new_service['git_repository'] = $this->git_repository;
$new_service['git_branch'] = $this->git_branch;
$new_service['source_id'] = $this->git_source->id;
$new_service['source_type'] = $this->git_source->getMorphClass();
}
$service = Service::create($new_service);
2024-06-10 22:43:34 +02:00
2024-06-07 17:21:46 +02:00
return redirect()->route('project.service.configuration', [
'service_uuid' => $service->uuid,
'environment_name' => $environment->name,
'project_uuid' => $project->uuid,
]);
2024-06-10 22:43:34 +02:00
2024-06-07 17:21:46 +02:00
return;
}
if ($this->git_source === 'other') {
$application_init = [
2023-10-06 20:48:03 +02:00
'name' => generate_random_name(),
'git_repository' => $this->git_repository,
'git_branch' => $this->git_branch,
'ports_exposes' => $this->port,
'publish_directory' => $this->publish_directory,
'environment_id' => $environment->id,
'destination_id' => $destination->id,
'destination_type' => $destination_class,
'build_pack' => $this->build_pack,
];
} else {
$application_init = [
'name' => generate_application_name($this->git_repository, $this->git_branch),
'git_repository' => $this->git_repository,
'git_branch' => $this->git_branch,
'ports_exposes' => $this->port,
'publish_directory' => $this->publish_directory,
'environment_id' => $environment->id,
'destination_id' => $destination->id,
'destination_type' => $destination_class,
'source_id' => $this->git_source->id,
'source_type' => $this->git_source->getMorphClass(),
'build_pack' => $this->build_pack,
];
}
2023-06-05 12:07:55 +02:00
if ($this->build_pack === 'dockerfile' || $this->build_pack === 'dockerimage') {
$application_init['health_check_enabled'] = false;
}
2023-05-11 15:20:02 +02:00
$application = Application::create($application_init);
2023-09-19 15:51:13 +02:00
2023-05-11 15:20:02 +02:00
$application->settings->is_static = $this->is_static;
$application->settings->save();
2023-09-30 15:39:40 +02:00
$fqdn = generateFqdn($destination->server, $application->uuid);
$application->fqdn = $fqdn;
2023-09-19 15:51:13 +02:00
$application->save();
2023-12-27 16:45:01 +01:00
return redirect()->route('project.application.configuration', [
2023-05-11 15:20:02 +02:00
'application_uuid' => $application->uuid,
2023-12-07 22:56:55 +01:00
'environment_name' => $environment->name,
'project_uuid' => $project->uuid,
2023-12-27 16:45:01 +01:00
]);
2023-09-11 17:36:30 +02:00
} catch (\Throwable $e) {
return handleError($e, $this);
2023-04-25 14:43:35 +02:00
}
}
}