51 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Models;
 | 
						|
 | 
						|
use Illuminate\Database\Eloquent\Casts\Attribute;
 | 
						|
use Illuminate\Database\Eloquent\Factories\HasFactory;
 | 
						|
use Illuminate\Support\Facades\Cache;
 | 
						|
 | 
						|
class ServiceApplication extends BaseModel
 | 
						|
{
 | 
						|
    use HasFactory;
 | 
						|
    protected $guarded = [];
 | 
						|
 | 
						|
    protected static function booted()
 | 
						|
    {
 | 
						|
        static::deleting(function ($service) {
 | 
						|
            $service->persistentStorages()->delete();
 | 
						|
            $service->fileStorages()->delete();
 | 
						|
        });
 | 
						|
    }
 | 
						|
    public function type()
 | 
						|
    {
 | 
						|
        return 'service';
 | 
						|
    }
 | 
						|
    public function service()
 | 
						|
    {
 | 
						|
        return $this->belongsTo(Service::class);
 | 
						|
    }
 | 
						|
    public function persistentStorages()
 | 
						|
    {
 | 
						|
        return $this->morphMany(LocalPersistentVolume::class, 'resource');
 | 
						|
    }
 | 
						|
    public function fileStorages()
 | 
						|
    {
 | 
						|
        return $this->morphMany(LocalFileVolume::class, 'resource');
 | 
						|
    }
 | 
						|
    public function fqdns(): Attribute
 | 
						|
    {
 | 
						|
        return Attribute::make(
 | 
						|
            get: fn () => is_null($this->fqdn)
 | 
						|
                ? []
 | 
						|
                : explode(',', $this->fqdn),
 | 
						|
 | 
						|
        );
 | 
						|
    }
 | 
						|
    public function getFilesFromServer(bool $isInit = false)
 | 
						|
    {
 | 
						|
        getFilesystemVolumesFromServer($this, $isInit);
 | 
						|
    }
 | 
						|
}
 |