50 lines
		
	
	
		
			986 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			986 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Models;
 | 
						|
 | 
						|
use Illuminate\Database\Eloquent\Model;
 | 
						|
 | 
						|
class SslCertificate extends Model
 | 
						|
{
 | 
						|
    protected $fillable = [
 | 
						|
        'ssl_certificate',
 | 
						|
        'ssl_private_key',
 | 
						|
        'configuration_dir',
 | 
						|
        'mount_path',
 | 
						|
        'resource_type',
 | 
						|
        'resource_id',
 | 
						|
        'server_id',
 | 
						|
        'common_name',
 | 
						|
        'subject_alternative_names',
 | 
						|
        'valid_until',
 | 
						|
        'is_ca_certificate',
 | 
						|
    ];
 | 
						|
 | 
						|
    protected $casts = [
 | 
						|
        'ssl_certificate' => 'encrypted',
 | 
						|
        'ssl_private_key' => 'encrypted',
 | 
						|
        'subject_alternative_names' => 'array',
 | 
						|
        'valid_until' => 'datetime',
 | 
						|
    ];
 | 
						|
 | 
						|
    public function application()
 | 
						|
    {
 | 
						|
        return $this->morphTo('resource');
 | 
						|
    }
 | 
						|
 | 
						|
    public function service()
 | 
						|
    {
 | 
						|
        return $this->morphTo('resource');
 | 
						|
    }
 | 
						|
 | 
						|
    public function database()
 | 
						|
    {
 | 
						|
        return $this->morphTo('resource');
 | 
						|
    }
 | 
						|
 | 
						|
    public function server()
 | 
						|
    {
 | 
						|
        return $this->belongsTo(Server::class);
 | 
						|
    }
 | 
						|
}
 |