['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'], ] )] class EnvironmentVariable extends Model { protected $guarded = []; protected $casts = [ 'key' => 'string', 'value' => 'encrypted', 'is_build_time' => 'boolean', 'is_multiline' => 'boolean', 'is_preview' => 'boolean', 'version' => 'string', ]; protected $appends = ['real_value', 'is_shared']; protected static function booted() { static::creating(function (Model $model) { if (! $model->uuid) { $model->uuid = (string) new Cuid2; } }); static::created(function (EnvironmentVariable $environment_variable) { if ($environment_variable->application_id && ! $environment_variable->is_preview) { $found = ModelsEnvironmentVariable::where('key', $environment_variable->key)->where('application_id', $environment_variable->application_id)->where('is_preview', true)->first(); if (! $found) { $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, 'is_multiline' => $environment_variable->is_multiline ?? false, 'application_id' => $environment_variable->application_id, 'is_preview' => true, ]); } } } $environment_variable->update([ 'version' => config('version'), ]); }); } public function service() { return $this->belongsTo(Service::class); } protected function value(): Attribute { return Attribute::make( get: fn (?string $value = null) => $this->get_environment_variables($value), set: fn (?string $value = null) => $this->set_environment_variables($value), ); } public function resource() { $resource = null; if ($this->application_id) { $resource = Application::find($this->application_id); } elseif ($this->service_id) { $resource = Service::find($this->service_id); } elseif ($this->standalone_postgresql_id) { $resource = StandalonePostgresql::find($this->standalone_postgresql_id); } elseif ($this->standalone_redis_id) { $resource = StandaloneRedis::find($this->standalone_redis_id); } elseif ($this->standalone_mongodb_id) { $resource = StandaloneMongodb::find($this->standalone_mongodb_id); } elseif ($this->standalone_mysql_id) { $resource = StandaloneMysql::find($this->standalone_mysql_id); } elseif ($this->standalone_mariadb_id) { $resource = StandaloneMariadb::find($this->standalone_mariadb_id); } elseif ($this->standalone_keydb_id) { $resource = StandaloneKeydb::find($this->standalone_keydb_id); } elseif ($this->standalone_dragonfly_id) { $resource = StandaloneDragonfly::find($this->standalone_dragonfly_id); } elseif ($this->standalone_clickhouse_id) { $resource = StandaloneClickhouse::find($this->standalone_clickhouse_id); } return $resource; } public function realValue(): Attribute { $resource = $this->resource(); return Attribute::make( get: function () use ($resource) { $env = $this->get_real_environment_variables($this->value, $resource); return data_get($env, 'value', $env); if (is_string($env)) { return $env; } return $env->value; } ); } protected function isShared(): Attribute { return Attribute::make( get: function () { $type = str($this->value)->after('{{')->before('.')->value; if (str($this->value)->startsWith('{{'.$type) && str($this->value)->endsWith('}}')) { return true; } return false; } ); } private function get_real_environment_variables(?string $environment_variable = null, $resource = null) { if ((is_null($environment_variable) && $environment_variable == '') || is_null($resource)) { return null; } $environment_variable = trim($environment_variable); $sharedEnvsFound = str($environment_variable)->matchAll('/{{(.*?)}}/'); if ($sharedEnvsFound->isEmpty()) { return $environment_variable; } foreach ($sharedEnvsFound as $sharedEnv) { $type = str($sharedEnv)->match('/(.*?)\./'); if (! collect(SHARED_VARIABLE_TYPES)->contains($type)) { continue; } $variable = str($sharedEnv)->match('/\.(.*)/'); if ($type->value() === 'environment') { $id = $resource->environment->id; } elseif ($type->value() === 'project') { $id = $resource->environment->project->id; } elseif ($type->value() === 'team') { $id = $resource->team()->id; } if (is_null($id)) { continue; } $environment_variable_found = SharedEnvironmentVariable::where('type', $type)->where('key', $variable)->where('team_id', $resource->team()->id)->where("{$type}_id", $id)->first(); if ($environment_variable_found) { $environment_variable = str($environment_variable)->replace("{{{$sharedEnv}}}", $environment_variable_found->value); } } return str($environment_variable)->value(); } private function get_environment_variables(?string $environment_variable = null): ?string { if (! $environment_variable) { return null; } return trim(decrypt($environment_variable)); } private function set_environment_variables(?string $environment_variable = null): ?string { if (is_null($environment_variable) && $environment_variable == '') { return null; } $environment_variable = trim($environment_variable); $type = str($environment_variable)->after('{{')->before('.')->value; if (str($environment_variable)->startsWith('{{'.$type) && str($environment_variable)->endsWith('}}')) { return encrypt((string) str($environment_variable)->replace(' ', '')); } return encrypt($environment_variable); } protected function key(): Attribute { return Attribute::make( set: fn (string $value) => str($value)->trim()->replace(' ', '_')->value, ); } }