2023-03-28 13:47:37 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2023-04-26 11:01:09 +00:00
|
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
2023-03-28 13:47:37 +00:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class ApplicationSetting extends Model
|
|
|
|
{
|
2023-05-31 09:24:02 +00:00
|
|
|
protected $cast = [
|
|
|
|
'is_static' => 'boolean',
|
|
|
|
'is_auto_deploy_enabled' => 'boolean',
|
|
|
|
'is_force_https_enabled' => 'boolean',
|
|
|
|
'is_debug_enabled' => 'boolean',
|
|
|
|
'is_preview_deployments_enabled' => 'boolean',
|
|
|
|
'is_git_submodules_enabled' => 'boolean',
|
|
|
|
'is_git_lfs_enabled' => 'boolean',
|
|
|
|
];
|
2023-12-06 20:32:23 +00:00
|
|
|
protected $guarded = [];
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-04-26 11:01:09 +00:00
|
|
|
public function isStatic(): Attribute
|
|
|
|
{
|
|
|
|
return Attribute::make(
|
|
|
|
set: function ($value) {
|
2023-12-06 20:32:23 +00:00
|
|
|
if ($value) {
|
|
|
|
$this->application->ports_exposes = 80;
|
2023-04-26 11:01:09 +00:00
|
|
|
}
|
2023-12-06 20:32:23 +00:00
|
|
|
$this->application->save();
|
2023-04-26 11:01:09 +00:00
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2023-08-08 09:51:36 +00:00
|
|
|
|
2023-03-30 09:09:39 +00:00
|
|
|
public function application()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Application::class);
|
|
|
|
}
|
2023-03-28 13:47:37 +00:00
|
|
|
}
|