2015-12-06 18:58:49 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Models;
|
|
|
|
|
|
|
|
use Auth;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class Subuser extends Model
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The table associated with the model.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $table = 'subusers';
|
|
|
|
|
2016-01-19 00:57:10 +00:00
|
|
|
/**
|
|
|
|
* The attributes excluded from the model's JSON form.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $hidden = ['daemonSecret'];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fields that are not mass assignable.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $guarded = ['id', 'created_at', 'updated_at'];
|
|
|
|
|
2015-12-06 18:58:49 +00:00
|
|
|
/**
|
|
|
|
* @var mixed
|
|
|
|
*/
|
|
|
|
protected static $user;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
self::$user = Auth::user();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an array of each server ID that the user has access to.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public static function accessServers()
|
|
|
|
{
|
|
|
|
|
|
|
|
$access = [];
|
|
|
|
|
|
|
|
$union = self::select('server_id')->where('user_id', self::$user->id);
|
|
|
|
$select = Server::select('id')->where('owner', self::$user->id)->union($union)->get();
|
|
|
|
|
|
|
|
foreach($select as &$select) {
|
|
|
|
$access = array_merge($access, [ $select->id ]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $access;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|