2015-12-06 19:58:49 +01:00
|
|
|
<?php
|
2016-01-20 01:10:39 +01:00
|
|
|
/**
|
2016-01-20 22:05:16 +01:00
|
|
|
* Pterodactyl - Panel
|
2016-01-20 01:10:39 +01:00
|
|
|
* Copyright (c) 2015 - 2016 Dane Everitt <dane@daneeveritt.com>
|
|
|
|
*
|
2016-01-20 21:56:40 +01:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
2016-01-20 01:10:39 +01:00
|
|
|
*
|
2016-01-20 21:56:40 +01:00
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
* copies or substantial portions of the Software.
|
2016-01-20 01:10:39 +01:00
|
|
|
*
|
2016-01-20 21:56:40 +01:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
2016-01-20 01:10:39 +01:00
|
|
|
*/
|
2015-12-06 19:58:49 +01:00
|
|
|
namespace Pterodactyl\Models;
|
|
|
|
|
|
|
|
use Auth;
|
2015-12-12 05:28:58 +01:00
|
|
|
|
2015-12-14 04:22:16 +01:00
|
|
|
use Pterodactyl\Models\Subuser;
|
2015-12-06 19:58:49 +01:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class Server extends Model
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The table associated with the model.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $table = 'servers';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The attributes excluded from the model's JSON form.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2016-09-05 22:21:36 +02:00
|
|
|
protected $hidden = [
|
|
|
|
'daemonSecret',
|
|
|
|
'sftp_password'
|
|
|
|
];
|
2015-12-06 19:58:49 +01:00
|
|
|
|
2015-12-15 21:08:41 +01:00
|
|
|
/**
|
|
|
|
* Fields that are not mass assignable.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $guarded = ['id', 'installed', 'created_at', 'updated_at'];
|
|
|
|
|
2016-01-27 04:17:51 +01:00
|
|
|
/**
|
|
|
|
* Cast values to correct type.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $casts = [
|
|
|
|
'node' => 'integer',
|
2016-09-02 03:21:01 +02:00
|
|
|
'suspended' => 'integer',
|
2016-01-27 04:17:51 +01:00
|
|
|
'owner' => 'integer',
|
|
|
|
'memory' => 'integer',
|
|
|
|
'swap' => 'integer',
|
|
|
|
'disk' => 'integer',
|
|
|
|
'io' => 'integer',
|
|
|
|
'cpu' => 'integer',
|
|
|
|
'oom_disabled' => 'integer',
|
|
|
|
'port' => 'integer',
|
|
|
|
'service' => 'integer',
|
|
|
|
'option' => 'integer',
|
|
|
|
'installed' => 'integer',
|
|
|
|
];
|
|
|
|
|
2015-12-06 19:58:49 +01:00
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected static $serverUUIDInstance = [];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var mixed
|
|
|
|
*/
|
|
|
|
protected static $user;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
self::$user = Auth::user();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine if we need to change the server's daemonSecret value to
|
|
|
|
* match that of the user if they are a subuser.
|
|
|
|
*
|
|
|
|
* @param Illuminate\Database\Eloquent\Model\Server $server
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
protected static function getUserDaemonSecret(Server $server)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (self::$user->id === $server->owner || self::$user->root_admin === 1) {
|
|
|
|
return $server->daemonSecret;
|
|
|
|
}
|
|
|
|
|
2015-12-14 04:22:16 +01:00
|
|
|
$subuser = Subuser::where('server_id', $server->id)->where('user_id', self::$user->id)->first();
|
2015-12-06 19:58:49 +01:00
|
|
|
|
|
|
|
if (is_null($subuser)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $subuser->daemonSecret;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns array of all servers owned by the logged in user.
|
2016-09-02 03:21:01 +02:00
|
|
|
* Returns all users servers if user is a root admin.
|
2015-12-06 19:58:49 +01:00
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Collection
|
|
|
|
*/
|
2016-01-05 07:15:23 +01:00
|
|
|
public static function getUserServers($paginate = null)
|
2015-12-06 19:58:49 +01:00
|
|
|
{
|
|
|
|
|
2016-08-31 22:03:37 +02:00
|
|
|
$query = self::select(
|
|
|
|
'servers.*',
|
|
|
|
'nodes.name as nodeName',
|
|
|
|
'locations.short as a_locationShort',
|
|
|
|
'allocations.ip_alias',
|
|
|
|
'allocations.port'
|
|
|
|
)->join('nodes', 'servers.node', '=', 'nodes.id')
|
|
|
|
->join('locations', 'nodes.location', '=', 'locations.id')
|
2016-09-02 03:21:01 +02:00
|
|
|
->join('allocations', 'servers.allocation', '=', 'allocations.id');
|
2015-12-06 19:58:49 +01:00
|
|
|
|
|
|
|
if (self::$user->root_admin !== 1) {
|
2015-12-14 04:22:16 +01:00
|
|
|
$query->whereIn('servers.id', Subuser::accessServers());
|
2015-12-06 19:58:49 +01:00
|
|
|
}
|
|
|
|
|
2016-01-05 07:15:23 +01:00
|
|
|
if (is_numeric($paginate)) {
|
|
|
|
return $query->paginate($paginate);
|
|
|
|
}
|
|
|
|
|
2015-12-06 19:58:49 +01:00
|
|
|
return $query->get();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-01-23 03:43:50 +01:00
|
|
|
* Returns a single server specified by UUID.
|
|
|
|
* DO NOT USE THIS TO MODIFY SERVER DETAILS OR SAVE THOSE DETAILS.
|
|
|
|
* YOU WILL OVERWRITE THE SECRET KEY AND BREAK THINGS.
|
2015-12-06 19:58:49 +01:00
|
|
|
*
|
|
|
|
* @param string $uuid The Short-UUID of the server to return an object about.
|
|
|
|
* @return \Illuminate\Database\Eloquent\Collection
|
|
|
|
*/
|
|
|
|
public static function getByUUID($uuid)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (array_key_exists($uuid, self::$serverUUIDInstance)) {
|
|
|
|
return self::$serverUUIDInstance[$uuid];
|
|
|
|
}
|
|
|
|
|
2016-01-09 01:54:06 +01:00
|
|
|
$query = self::select('servers.*', 'services.file as a_serviceFile')
|
2016-01-09 02:39:16 +01:00
|
|
|
->join('services', 'services.id', '=', 'servers.service')
|
2016-09-02 03:21:01 +02:00
|
|
|
->where('uuidShort', $uuid);
|
2015-12-06 19:58:49 +01:00
|
|
|
|
|
|
|
if (self::$user->root_admin !== 1) {
|
2015-12-14 04:22:16 +01:00
|
|
|
$query->whereIn('servers.id', Subuser::accessServers());
|
2015-12-06 19:58:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$result = $query->first();
|
|
|
|
|
|
|
|
if(!is_null($result)) {
|
|
|
|
$result->daemonSecret = self::getUserDaemonSecret($result);
|
|
|
|
}
|
|
|
|
|
|
|
|
self::$serverUUIDInstance[$uuid] = $result;
|
|
|
|
return self::$serverUUIDInstance[$uuid];
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns non-administrative headers for accessing a server on Scales
|
|
|
|
*
|
|
|
|
* @param string $uuid
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public static function getGuzzleHeaders($uuid)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (array_key_exists($uuid, self::$serverUUIDInstance)) {
|
|
|
|
return [
|
|
|
|
'X-Access-Server' => self::$serverUUIDInstance[$uuid]->uuid,
|
|
|
|
'X-Access-Token' => self::$serverUUIDInstance[$uuid]->daemonSecret
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
return [];
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|