ctrlpanel/app/Models/Server.php

160 lines
3.1 KiB
PHP
Raw Normal View History

2021-06-05 09:26:32 +00:00
<?php
namespace App\Models;
use App\Classes\Pterodactyl;
use Exception;
use GuzzleHttp\Promise\PromiseInterface;
use Hidehalo\Nanoid\Client;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasOne;
use Illuminate\Http\Client\Response;
use Spatie\Activitylog\Traits\LogsActivity;
/**
* Class Server
* @package App\Models
*/
class Server extends Model
{
use HasFactory;
use LogsActivity;
/**
* @var bool
*/
public $incrementing = false;
/**
* @var string[]
*/
protected static $ignoreChangedAttributes = ['pterodactyl_id' , 'identifier' , 'updated_at'];
/**
* @var string[]
*/
protected static $logAttributes = ['name', 'description'];
/**
* @var string[]
*/
protected $fillable = [
"name",
"description",
"suspended",
"identifier",
"product_id",
"pterodactyl_id",
];
/**
* @var string[]
*/
protected $dates = [
'suspended'
];
/**
*
*/
public static function boot() {
parent::boot();
static::creating(function(Server $server) {
$client = new Client();
$server->{$server->getKeyName()} = $client->generateId($size = 21);
});
static::deleting(function(Server $server) {
Pterodactyl::client()->delete("/application/servers/{$server->pterodactyl_id}");
});
}
/**
* @return bool
*/
public function isSuspended(){
return !is_null($this->suspended);
}
/**
* @return PromiseInterface|Response
*/
public function getPterodactylServer(){
return Pterodactyl::client()->get("/application/servers/{$this->pterodactyl_id}");
}
/**
*
* @throws Exception
*/
public function suspend(){
$response = Pterodactyl::suspendServer($this);
if ($response->successful()) {
$this->update([
'suspended' => now()
]);
}
return $this;
}
/**
* @throws Exception
*/
public function unSuspend()
{
$response = Pterodactyl::unSuspendServer($this);
if ($response->successful()) {
$this->update([
'suspended' => null
]);
}
return $this;
}
/**
* @return HasOne
*/
public function product(){
return $this->hasOne(Product::class , 'id' , 'product_id');
}
/**
* @return HasOne
*/
public function nest(){
return $this->hasOne(Nest::class , 'id' , 'nest_id');
}
/**
* @return HasOne
*/
public function egg(){
return $this->hasOne(Egg::class , 'id' , 'egg_id');
}
/**
* @return HasOne
*/
public function location(){
return $this->hasOne(Location::class , 'id' , 'location_id');
}
/**
* @return BelongsTo
*/
public function user(){
return $this->belongsTo(User::class , 'user_id' , 'id');
}
}