mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-20 02:11:36 +00:00
45 lines
932 B
PHP
45 lines
932 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Jobs\Script\ExecuteOn;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
|
|
/**
|
|
* @property int $user_id
|
|
* @property string $name
|
|
* @property string $content
|
|
* @property User $creator
|
|
*/
|
|
class Script extends AbstractModel
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'user_id',
|
|
'name',
|
|
'content',
|
|
];
|
|
|
|
protected $casts = [
|
|
'user_id' => 'integer',
|
|
];
|
|
|
|
public function creator(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
|
|
public function executions(): HasMany
|
|
{
|
|
return $this->hasMany(ScriptExecution::class, 'script_id');
|
|
}
|
|
|
|
public function executeOn(Server $server, string $user): void
|
|
{
|
|
dispatch(new ExecuteOn($this, $server, $user))->onConnection('ssh');
|
|
}
|
|
}
|