2016-02-28 00:35:12 +01:00
|
|
|
<?php
|
2016-12-07 23:46:38 +01:00
|
|
|
|
2016-02-28 00:35:12 +01:00
|
|
|
namespace Pterodactyl\Models;
|
|
|
|
|
2020-02-09 00:23:08 +01:00
|
|
|
use Illuminate\Container\Container;
|
2017-09-17 06:10:00 +02:00
|
|
|
use Znck\Eloquent\Traits\BelongsToThrough;
|
2020-02-09 00:23:08 +01:00
|
|
|
use Pterodactyl\Contracts\Extensions\HashidsInterface;
|
2016-02-28 00:35:12 +01:00
|
|
|
|
2020-02-09 00:23:08 +01:00
|
|
|
/**
|
|
|
|
* @property int $id
|
|
|
|
* @property int $schedule_id
|
|
|
|
* @property int $sequence_id
|
|
|
|
* @property string $action
|
|
|
|
* @property string $payload
|
|
|
|
* @property int $time_offset
|
|
|
|
* @property bool $is_queued
|
|
|
|
* @property \Carbon\Carbon $created_at
|
|
|
|
* @property \Carbon\Carbon $updated_at
|
|
|
|
*
|
|
|
|
* @property string $hashid
|
|
|
|
*
|
|
|
|
* @property \Pterodactyl\Models\Schedule $schedule
|
|
|
|
* @property \Pterodactyl\Models\Server $server
|
|
|
|
*/
|
2020-04-04 08:22:35 +02:00
|
|
|
class Task extends Model
|
2016-02-28 00:35:12 +01:00
|
|
|
{
|
2019-09-05 06:00:34 +02:00
|
|
|
use BelongsToThrough;
|
2017-09-10 06:55:21 +02:00
|
|
|
|
2018-01-26 04:26:06 +01:00
|
|
|
/**
|
|
|
|
* The resource name for this model when it is transformed into an
|
|
|
|
* API representation using fractal.
|
|
|
|
*/
|
|
|
|
const RESOURCE_NAME = 'schedule_task';
|
|
|
|
|
2016-02-28 00:35:12 +01:00
|
|
|
/**
|
|
|
|
* The table associated with the model.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $table = 'tasks';
|
|
|
|
|
|
|
|
/**
|
2017-09-13 06:45:19 +02:00
|
|
|
* Relationships to be updated when this model is updated.
|
2016-02-28 00:35:12 +01:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2017-09-13 06:45:19 +02:00
|
|
|
protected $touches = ['schedule'];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fields that are mass assignable.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $fillable = [
|
|
|
|
'schedule_id',
|
2017-09-14 04:46:43 +02:00
|
|
|
'sequence_id',
|
2017-09-13 06:45:19 +02:00
|
|
|
'action',
|
|
|
|
'payload',
|
|
|
|
'time_offset',
|
|
|
|
'is_queued',
|
|
|
|
];
|
2016-02-28 00:35:12 +01:00
|
|
|
|
2017-03-20 00:36:50 +01:00
|
|
|
/**
|
|
|
|
* Cast values to correct type.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $casts = [
|
|
|
|
'id' => 'integer',
|
2017-09-13 06:45:19 +02:00
|
|
|
'schedule_id' => 'integer',
|
2017-09-14 04:46:43 +02:00
|
|
|
'sequence_id' => 'integer',
|
2017-09-13 06:45:19 +02:00
|
|
|
'time_offset' => 'integer',
|
|
|
|
'is_queued' => 'boolean',
|
2017-03-20 00:36:50 +01:00
|
|
|
];
|
2016-02-28 00:35:12 +01:00
|
|
|
|
2017-09-10 06:55:21 +02:00
|
|
|
/**
|
|
|
|
* Default attributes when creating a new model.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $attributes = [
|
2020-03-19 06:28:32 +01:00
|
|
|
'time_offset' => 0,
|
2017-09-13 06:45:19 +02:00
|
|
|
'is_queued' => false,
|
2017-09-10 06:55:21 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
2019-09-05 07:19:57 +02:00
|
|
|
public static $validationRules = [
|
|
|
|
'schedule_id' => 'required|numeric|exists:schedules,id',
|
|
|
|
'sequence_id' => 'required|numeric|min:1',
|
|
|
|
'action' => 'required|string',
|
2020-06-19 06:00:04 +02:00
|
|
|
'payload' => 'required_unless:action,backup|string',
|
2019-09-05 07:19:57 +02:00
|
|
|
'time_offset' => 'required|numeric|between:0,900',
|
2017-09-13 06:45:19 +02:00
|
|
|
'is_queued' => 'boolean',
|
2017-09-10 06:55:21 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a hashid encoded string to represent the ID of the task.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getHashidAttribute()
|
|
|
|
{
|
2020-02-09 00:23:08 +01:00
|
|
|
return Container::getInstance()->make(HashidsInterface::class)->encode($this->id);
|
2017-09-10 06:55:21 +02:00
|
|
|
}
|
|
|
|
|
2017-04-15 19:52:43 +02:00
|
|
|
/**
|
2017-09-13 06:45:19 +02:00
|
|
|
* Return the schedule that a task belongs to.
|
2017-04-15 19:52:43 +02:00
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
2017-09-13 06:45:19 +02:00
|
|
|
public function schedule()
|
2017-04-15 19:52:43 +02:00
|
|
|
{
|
2017-09-13 06:45:19 +02:00
|
|
|
return $this->belongsTo(Schedule::class);
|
2017-04-15 19:52:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-09-13 06:45:19 +02:00
|
|
|
* Return the server a task is assigned to, acts as a belongsToThrough.
|
2017-04-15 19:52:43 +02:00
|
|
|
*
|
2017-09-17 06:10:00 +02:00
|
|
|
* @return \Znck\Eloquent\Relations\BelongsToThrough
|
|
|
|
* @throws \Exception
|
2017-04-15 19:52:43 +02:00
|
|
|
*/
|
2017-09-13 06:45:19 +02:00
|
|
|
public function server()
|
2017-09-10 06:55:21 +02:00
|
|
|
{
|
2017-09-17 06:10:00 +02:00
|
|
|
return $this->belongsToThrough(Server::class, Schedule::class);
|
2017-09-10 06:55:21 +02:00
|
|
|
}
|
2016-02-28 00:35:12 +01:00
|
|
|
}
|