2023-05-04 20:29:14 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2023-06-05 10:07:55 +00:00
|
|
|
use App\Models\EnvironmentVariable as ModelsEnvironmentVariable;
|
2023-05-04 20:29:14 +00:00
|
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2023-05-05 08:51:58 +00:00
|
|
|
use Illuminate\Support\Str;
|
2024-07-09 11:19:21 +00:00
|
|
|
use OpenApi\Attributes as OA;
|
2024-04-15 12:23:25 +00:00
|
|
|
use Symfony\Component\Yaml\Yaml;
|
2024-06-26 11:00:36 +00:00
|
|
|
use Visus\Cuid2\Cuid2;
|
2023-05-04 20:29:14 +00:00
|
|
|
|
2024-07-09 11:19:21 +00:00
|
|
|
#[OA\Schema(
|
|
|
|
description: 'Environment Variable model',
|
|
|
|
type: 'object',
|
|
|
|
properties: [
|
|
|
|
'id' => ['type' => 'integer'],
|
|
|
|
'uuid' => ['type' => 'string'],
|
|
|
|
'application_id' => ['type' => 'integer'],
|
|
|
|
'service_id' => ['type' => 'integer'],
|
|
|
|
'database_id' => ['type' => 'integer'],
|
|
|
|
'is_build_time' => ['type' => 'boolean'],
|
|
|
|
'is_literal' => ['type' => 'boolean'],
|
|
|
|
'is_multiline' => ['type' => 'boolean'],
|
|
|
|
'is_preview' => ['type' => 'boolean'],
|
|
|
|
'is_shared' => ['type' => 'boolean'],
|
|
|
|
'is_shown_once' => ['type' => 'boolean'],
|
|
|
|
'key' => ['type' => 'string'],
|
|
|
|
'value' => ['type' => 'string'],
|
|
|
|
'real_value' => ['type' => 'string'],
|
|
|
|
'version' => ['type' => 'string'],
|
|
|
|
'created_at' => ['type' => 'string'],
|
|
|
|
'updated_at' => ['type' => 'string'],
|
|
|
|
]
|
|
|
|
)]
|
2023-05-04 20:29:14 +00:00
|
|
|
class EnvironmentVariable extends Model
|
|
|
|
{
|
2023-08-07 20:14:21 +00:00
|
|
|
protected $guarded = [];
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2023-05-04 20:29:14 +00:00
|
|
|
protected $casts = [
|
2023-10-24 13:41:21 +00:00
|
|
|
'key' => 'string',
|
2023-05-04 20:29:14 +00:00
|
|
|
'value' => 'encrypted',
|
|
|
|
'is_build_time' => 'boolean',
|
2024-03-18 10:36:36 +00:00
|
|
|
'is_multiline' => 'boolean',
|
|
|
|
'is_preview' => 'boolean',
|
2024-06-10 20:43:34 +00:00
|
|
|
'version' => 'string',
|
2023-05-04 20:29:14 +00:00
|
|
|
];
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2024-01-23 16:13:23 +00:00
|
|
|
protected $appends = ['real_value', 'is_shared'];
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-08-07 20:14:21 +00:00
|
|
|
protected static function booted()
|
|
|
|
{
|
2024-06-26 11:00:36 +00:00
|
|
|
static::creating(function (Model $model) {
|
|
|
|
if (! $model->uuid) {
|
2024-07-24 12:27:21 +00:00
|
|
|
$model->uuid = (string) new Cuid2;
|
2024-06-26 11:00:36 +00:00
|
|
|
}
|
|
|
|
});
|
2024-03-18 10:36:36 +00:00
|
|
|
static::created(function (EnvironmentVariable $environment_variable) {
|
2024-06-10 20:43:34 +00:00
|
|
|
if ($environment_variable->application_id && ! $environment_variable->is_preview) {
|
2023-09-11 20:29:47 +00:00
|
|
|
$found = ModelsEnvironmentVariable::where('key', $environment_variable->key)->where('application_id', $environment_variable->application_id)->where('is_preview', true)->first();
|
2024-06-10 20:43:34 +00:00
|
|
|
if (! $found) {
|
2024-04-02 13:40:19 +00:00
|
|
|
$application = Application::find($environment_variable->application_id);
|
|
|
|
if ($application->build_pack !== 'dockerfile') {
|
|
|
|
ModelsEnvironmentVariable::create([
|
|
|
|
'key' => $environment_variable->key,
|
|
|
|
'value' => $environment_variable->value,
|
|
|
|
'is_build_time' => $environment_variable->is_build_time,
|
2024-04-12 07:34:56 +00:00
|
|
|
'is_multiline' => $environment_variable->is_multiline ?? false,
|
2024-04-02 13:40:19 +00:00
|
|
|
'application_id' => $environment_variable->application_id,
|
2024-06-10 20:43:34 +00:00
|
|
|
'is_preview' => true,
|
2024-04-02 13:40:19 +00:00
|
|
|
]);
|
|
|
|
}
|
2023-09-08 14:16:59 +00:00
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
}
|
2024-03-18 10:36:36 +00:00
|
|
|
$environment_variable->update([
|
2024-06-10 20:43:34 +00:00
|
|
|
'version' => config('version'),
|
2024-03-18 10:36:36 +00:00
|
|
|
]);
|
2023-08-07 20:14:21 +00:00
|
|
|
});
|
|
|
|
}
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2023-10-24 13:41:21 +00:00
|
|
|
public function service()
|
|
|
|
{
|
2023-09-20 13:42:41 +00:00
|
|
|
return $this->belongsTo(Service::class);
|
|
|
|
}
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2023-08-08 09:51:36 +00:00
|
|
|
protected function value(): Attribute
|
|
|
|
{
|
|
|
|
return Attribute::make(
|
2023-09-20 13:42:41 +00:00
|
|
|
get: fn (?string $value = null) => $this->get_environment_variables($value),
|
|
|
|
set: fn (?string $value = null) => $this->set_environment_variables($value),
|
2023-08-08 09:51:36 +00:00
|
|
|
);
|
|
|
|
}
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2024-03-15 21:02:37 +00:00
|
|
|
public function resource()
|
2024-01-23 16:13:23 +00:00
|
|
|
{
|
2024-01-24 14:54:55 +00:00
|
|
|
$resource = null;
|
|
|
|
if ($this->application_id) {
|
|
|
|
$resource = Application::find($this->application_id);
|
2024-06-10 20:43:34 +00:00
|
|
|
} elseif ($this->service_id) {
|
2024-01-24 14:54:55 +00:00
|
|
|
$resource = Service::find($this->service_id);
|
2024-06-10 20:43:34 +00:00
|
|
|
} elseif ($this->database_id) {
|
2024-04-10 13:00:46 +00:00
|
|
|
$resource = getResourceByUuid($this->parameters['database_uuid'], data_get(auth()->user()->currentTeam(), 'id'));
|
2024-01-24 14:54:55 +00:00
|
|
|
}
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2024-03-15 21:02:37 +00:00
|
|
|
return $resource;
|
|
|
|
}
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2024-03-15 21:02:37 +00:00
|
|
|
public function realValue(): Attribute
|
|
|
|
{
|
|
|
|
$resource = $this->resource();
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2024-01-23 16:13:23 +00:00
|
|
|
return Attribute::make(
|
2024-01-24 14:54:55 +00:00
|
|
|
get: function () use ($resource) {
|
2024-03-15 21:02:37 +00:00
|
|
|
$env = $this->get_real_environment_variables($this->value, $resource);
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2024-03-15 21:02:37 +00:00
|
|
|
return data_get($env, 'value', $env);
|
|
|
|
if (is_string($env)) {
|
|
|
|
return $env;
|
|
|
|
}
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2024-03-15 21:02:37 +00:00
|
|
|
return $env->value;
|
2024-01-24 14:54:55 +00:00
|
|
|
}
|
2024-01-23 16:13:23 +00:00
|
|
|
);
|
|
|
|
}
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2024-04-15 12:23:25 +00:00
|
|
|
protected function isFoundInCompose(): Attribute
|
|
|
|
{
|
|
|
|
return Attribute::make(
|
|
|
|
get: function () {
|
2024-06-10 20:43:34 +00:00
|
|
|
if (! $this->application_id) {
|
2024-04-15 12:23:25 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
$found_in_compose = false;
|
2024-06-04 09:25:40 +00:00
|
|
|
$found_in_args = false;
|
2024-04-15 12:23:25 +00:00
|
|
|
$resource = $this->resource();
|
|
|
|
$compose = data_get($resource, 'docker_compose_raw');
|
2024-06-10 20:43:34 +00:00
|
|
|
if (! $compose) {
|
2024-04-15 12:23:25 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
$yaml = Yaml::parse($compose);
|
|
|
|
$services = collect(data_get($yaml, 'services'));
|
|
|
|
if ($services->isEmpty()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
foreach ($services as $service) {
|
|
|
|
$environments = collect(data_get($service, 'environment'));
|
2024-06-04 09:25:40 +00:00
|
|
|
$args = collect(data_get($service, 'build.args'));
|
|
|
|
if ($environments->isEmpty() && $args->isEmpty()) {
|
2024-04-15 12:23:25 +00:00
|
|
|
$found_in_compose = false;
|
|
|
|
break;
|
|
|
|
}
|
2024-06-04 09:25:40 +00:00
|
|
|
|
2024-04-15 12:23:25 +00:00
|
|
|
$found_in_compose = $environments->contains(function ($item) {
|
|
|
|
if (str($item)->contains('=')) {
|
|
|
|
$item = str($item)->before('=');
|
|
|
|
}
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2024-04-15 12:23:25 +00:00
|
|
|
return strpos($item, $this->key) !== false;
|
|
|
|
});
|
2024-06-04 09:25:40 +00:00
|
|
|
|
2024-04-15 12:23:25 +00:00
|
|
|
if ($found_in_compose) {
|
|
|
|
break;
|
|
|
|
}
|
2024-06-04 09:25:40 +00:00
|
|
|
|
|
|
|
$found_in_args = $args->contains(function ($item) {
|
|
|
|
if (str($item)->contains('=')) {
|
|
|
|
$item = str($item)->before('=');
|
|
|
|
}
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2024-06-04 09:25:40 +00:00
|
|
|
return strpos($item, $this->key) !== false;
|
|
|
|
});
|
|
|
|
|
|
|
|
if ($found_in_args) {
|
|
|
|
break;
|
|
|
|
}
|
2024-04-15 12:23:25 +00:00
|
|
|
}
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2024-06-04 09:25:40 +00:00
|
|
|
return $found_in_compose || $found_in_args;
|
2024-04-15 12:23:25 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2024-01-23 16:13:23 +00:00
|
|
|
protected function isShared(): Attribute
|
|
|
|
{
|
|
|
|
return Attribute::make(
|
|
|
|
get: function () {
|
2024-06-10 20:43:34 +00:00
|
|
|
$type = str($this->value)->after('{{')->before('.')->value;
|
|
|
|
if (str($this->value)->startsWith('{{'.$type) && str($this->value)->endsWith('}}')) {
|
2024-01-23 16:13:23 +00:00
|
|
|
return true;
|
|
|
|
}
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2024-01-23 16:13:23 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2024-03-15 21:02:37 +00:00
|
|
|
private function get_real_environment_variables(?string $environment_variable = null, $resource = null)
|
2023-05-04 20:29:14 +00:00
|
|
|
{
|
2024-03-18 10:49:26 +00:00
|
|
|
if ((is_null($environment_variable) && $environment_variable == '') || is_null($resource)) {
|
2023-09-21 19:30:13 +00:00
|
|
|
return null;
|
|
|
|
}
|
2024-01-23 16:13:23 +00:00
|
|
|
$environment_variable = trim($environment_variable);
|
2024-06-10 20:43:34 +00:00
|
|
|
$type = str($environment_variable)->after('{{')->before('.')->value;
|
|
|
|
if (str($environment_variable)->startsWith('{{'.$type) && str($environment_variable)->endsWith('}}')) {
|
2024-01-23 16:13:23 +00:00
|
|
|
$variable = Str::after($environment_variable, "{$type}.");
|
2023-09-11 20:29:47 +00:00
|
|
|
$variable = Str::before($variable, '}}');
|
2024-06-25 08:37:10 +00:00
|
|
|
$variable = str($variable)->trim()->value;
|
2024-06-10 20:43:34 +00:00
|
|
|
if (! collect(SHARED_VARIABLE_TYPES)->contains($type)) {
|
2024-01-31 12:40:15 +00:00
|
|
|
return $variable;
|
|
|
|
}
|
2024-01-24 14:54:55 +00:00
|
|
|
if ($type === 'environment') {
|
|
|
|
$id = $resource->environment->id;
|
2024-06-10 20:43:34 +00:00
|
|
|
} elseif ($type === 'project') {
|
2024-01-24 14:54:55 +00:00
|
|
|
$id = $resource->environment->project->id;
|
|
|
|
} else {
|
2024-01-24 14:56:43 +00:00
|
|
|
$id = $resource->team()->id;
|
2024-01-24 14:54:55 +00:00
|
|
|
}
|
2024-06-10 20:43:34 +00:00
|
|
|
$environment_variable_found = SharedEnvironmentVariable::where('type', $type)->where('key', $variable)->where('team_id', $resource->team()->id)->where("{$type}_id", $id)->first();
|
2024-01-23 16:13:23 +00:00
|
|
|
if ($environment_variable_found) {
|
2024-03-15 21:02:37 +00:00
|
|
|
return $environment_variable_found;
|
2024-01-23 16:13:23 +00:00
|
|
|
}
|
2023-05-04 20:29:14 +00:00
|
|
|
}
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2023-09-11 20:29:47 +00:00
|
|
|
return $environment_variable;
|
2023-05-04 20:29:14 +00:00
|
|
|
}
|
2024-06-10 20:43:34 +00:00
|
|
|
|
|
|
|
private function get_environment_variables(?string $environment_variable = null): ?string
|
2024-01-23 16:13:23 +00:00
|
|
|
{
|
2024-06-10 20:43:34 +00:00
|
|
|
if (! $environment_variable) {
|
2024-01-23 16:13:23 +00:00
|
|
|
return null;
|
|
|
|
}
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2024-01-23 16:13:23 +00:00
|
|
|
return trim(decrypt($environment_variable));
|
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2024-06-10 20:43:34 +00:00
|
|
|
private function set_environment_variables(?string $environment_variable = null): ?string
|
2023-05-04 20:29:14 +00:00
|
|
|
{
|
2023-09-20 13:42:41 +00:00
|
|
|
if (is_null($environment_variable) && $environment_variable == '') {
|
|
|
|
return null;
|
|
|
|
}
|
2023-05-05 08:51:58 +00:00
|
|
|
$environment_variable = trim($environment_variable);
|
2024-06-10 20:43:34 +00:00
|
|
|
$type = str($environment_variable)->after('{{')->before('.')->value;
|
|
|
|
if (str($environment_variable)->startsWith('{{'.$type) && str($environment_variable)->endsWith('}}')) {
|
2024-01-23 16:13:23 +00:00
|
|
|
return encrypt((string) str($environment_variable)->replace(' ', ''));
|
|
|
|
}
|
2024-06-10 20:43:34 +00:00
|
|
|
|
2023-09-11 20:29:47 +00:00
|
|
|
return encrypt($environment_variable);
|
2023-05-04 20:29:14 +00:00
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-05-05 08:51:58 +00:00
|
|
|
protected function key(): Attribute
|
|
|
|
{
|
|
|
|
return Attribute::make(
|
2024-06-26 11:00:36 +00:00
|
|
|
set: fn (string $value) => str($value)->trim()->replace(' ', '_')->value,
|
2023-05-05 08:51:58 +00:00
|
|
|
);
|
|
|
|
}
|
2023-05-04 20:29:14 +00:00
|
|
|
}
|