wip: services
This commit is contained in:
@@ -7,11 +7,15 @@ use App\Models\EnvironmentVariable;
|
||||
use App\Models\GithubApp;
|
||||
use App\Models\LocalPersistentVolume;
|
||||
use App\Models\Project;
|
||||
use App\Models\Service;
|
||||
use App\Models\ServiceApplication;
|
||||
use App\Models\ServiceDatabase;
|
||||
use App\Models\StandaloneDocker;
|
||||
use App\Models\SwarmDocker;
|
||||
use Livewire\Component;
|
||||
use Visus\Cuid2\Cuid2;
|
||||
use Illuminate\Support\Str;
|
||||
use Symfony\Component\Yaml\Yaml;
|
||||
|
||||
class DockerCompose extends Component
|
||||
{
|
||||
@@ -70,68 +74,81 @@ class DockerCompose extends Component
|
||||
|
||||
$project = Project::where('uuid', $this->parameters['project_uuid'])->first();
|
||||
$environment = $project->load(['environments'])->environments->where('name', $this->parameters['environment_name'])->first();
|
||||
$application = Application::create([
|
||||
'name' => 'dockercompose-' . new Cuid2(7),
|
||||
'repository_project_id' => 0,
|
||||
'fqdn' => 'https://app.coolify.io',
|
||||
'git_repository' => "coollabsio/coolify",
|
||||
'git_branch' => 'main',
|
||||
'build_pack' => 'dockercompose',
|
||||
'ports_exposes' => '0',
|
||||
'dockercompose_raw' => $this->dockercompose,
|
||||
'environment_id' => $environment->id,
|
||||
'destination_id' => $destination->id,
|
||||
'destination_type' => $destination_class,
|
||||
'source_id' => 0,
|
||||
'source_type' => GithubApp::class
|
||||
]);
|
||||
$fqdn = "http://{$application->uuid}.{$destination->server->ip}.sslip.io";
|
||||
if (isDev()) {
|
||||
$fqdn = "http://{$application->uuid}.127.0.0.1.sslip.io";
|
||||
}
|
||||
$application->update([
|
||||
'name' => 'dockercompose-' . $application->uuid,
|
||||
'fqdn' => $fqdn,
|
||||
]);
|
||||
$service = new Service();
|
||||
$service->uuid = (string) new Cuid2(7);
|
||||
$service->name = 'service-' . new Cuid2(7);
|
||||
$service->docker_compose_raw = $this->dockercompose;
|
||||
$service->environment_id = $environment->id;
|
||||
$service->destination_id = $destination->id;
|
||||
$service->destination_type = $destination_class;
|
||||
$service->save();
|
||||
$service->parse(saveIt: true);
|
||||
|
||||
$details = generateServiceFromTemplate($this->dockercompose, $application);
|
||||
$envs = data_get($details, 'envs', []);
|
||||
if ($envs->count() > 0) {
|
||||
foreach ($envs as $env) {
|
||||
$key = Str::of($env)->before('=');
|
||||
$value = Str::of($env)->after('=');
|
||||
EnvironmentVariable::create([
|
||||
'key' => $key,
|
||||
'value' => $value,
|
||||
'is_build_time' => false,
|
||||
'application_id' => $application->id,
|
||||
'is_preview' => false,
|
||||
]);
|
||||
}
|
||||
}
|
||||
$volumes = data_get($details, 'volumes', []);
|
||||
if ($volumes->count() > 0) {
|
||||
foreach ($volumes as $volume => $mount_path) {
|
||||
LocalPersistentVolume::create([
|
||||
'name' => $volume,
|
||||
'mount_path' => $mount_path,
|
||||
'resource_id' => $application->id,
|
||||
'resource_type' => $application->getMorphClass(),
|
||||
'is_readonly' => false
|
||||
]);
|
||||
}
|
||||
}
|
||||
$dockercompose_coolified = data_get($details, 'dockercompose', '');
|
||||
$application->update([
|
||||
'dockercompose' => $dockercompose_coolified,
|
||||
'ports_exposes' => data_get($details, 'ports', 0)->implode(','),
|
||||
]);
|
||||
|
||||
|
||||
redirect()->route('project.application.configuration', [
|
||||
'application_uuid' => $application->uuid,
|
||||
return redirect()->route('project.service', [
|
||||
'service_uuid' => $service->uuid,
|
||||
'environment_name' => $environment->name,
|
||||
'project_uuid' => $project->uuid,
|
||||
]);
|
||||
// $compose = data_get($parsedService, 'docker_compose');
|
||||
// $service->docker_compose = $compose;
|
||||
// $shouldDefine = data_get($parsedService, 'should_define', collect([]));
|
||||
// if ($shouldDefine->count() > 0) {
|
||||
// $envs = data_get($shouldDefine, 'envs', []);
|
||||
// foreach($envs as $env) {
|
||||
// ray($env);
|
||||
// $variableName = Str::of($env)->before('=');
|
||||
// $variableValue = Str::of($env)->after('=');
|
||||
// ray($variableName, $variableValue);
|
||||
// }
|
||||
// }
|
||||
// foreach ($services as $serviceName => $serviceDetails) {
|
||||
// if (data_get($serviceDetails,'is_database')) {
|
||||
// $serviceDatabase = new ServiceDatabase();
|
||||
// $serviceDatabase->name = $serviceName . '-' . $service->uuid;
|
||||
// $serviceDatabase->service_id = $service->id;
|
||||
// $serviceDatabase->save();
|
||||
// } else {
|
||||
// $serviceApplication = new ServiceApplication();
|
||||
// $serviceApplication->name = $serviceName . '-' . $service->uuid;
|
||||
// $serviceApplication->fqdn =
|
||||
// $serviceApplication->service_id = $service->id;
|
||||
// $serviceApplication->save();
|
||||
// }
|
||||
// }
|
||||
|
||||
// ray($details);
|
||||
// $envs = data_get($details, 'envs', []);
|
||||
// if ($envs->count() > 0) {
|
||||
// foreach ($envs as $env) {
|
||||
// $key = Str::of($env)->before('=');
|
||||
// $value = Str::of($env)->after('=');
|
||||
// EnvironmentVariable::create([
|
||||
// 'key' => $key,
|
||||
// 'value' => $value,
|
||||
// 'is_build_time' => false,
|
||||
// 'service_id' => $service->id,
|
||||
// 'is_preview' => false,
|
||||
// ]);
|
||||
// }
|
||||
// }
|
||||
// $volumes = data_get($details, 'volumes', []);
|
||||
// if ($volumes->count() > 0) {
|
||||
// foreach ($volumes as $volume => $mount_path) {
|
||||
// LocalPersistentVolume::create([
|
||||
// 'name' => $volume,
|
||||
// 'mount_path' => $mount_path,
|
||||
// 'resource_id' => $service->id,
|
||||
// 'resource_type' => $service->getMorphClass(),
|
||||
// 'is_readonly' => false
|
||||
// ]);
|
||||
// }
|
||||
// }
|
||||
// $dockercompose_coolified = data_get($details, 'dockercompose', '');
|
||||
// $service->update([
|
||||
// 'docker_compose' => $dockercompose_coolified,
|
||||
// ]);
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user