2019-11-24 23:08:54 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Http\Controllers\Admin\Nodes;
|
|
|
|
|
|
|
|
use Illuminate\Http\Request;
|
2020-09-13 19:21:44 +00:00
|
|
|
use Pterodactyl\Models\Node;
|
|
|
|
use Spatie\QueryBuilder\QueryBuilder;
|
2019-11-24 23:08:54 +00:00
|
|
|
use Illuminate\Contracts\View\Factory;
|
|
|
|
use Pterodactyl\Http\Controllers\Controller;
|
|
|
|
use Pterodactyl\Repositories\Eloquent\NodeRepository;
|
|
|
|
|
|
|
|
class NodeController extends Controller
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var \Illuminate\Contracts\View\Factory
|
|
|
|
*/
|
|
|
|
private $view;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \Pterodactyl\Repositories\Eloquent\NodeRepository
|
|
|
|
*/
|
|
|
|
private $repository;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* NodeController constructor.
|
|
|
|
*/
|
|
|
|
public function __construct(NodeRepository $repository, Factory $view)
|
|
|
|
{
|
|
|
|
$this->view = $view;
|
|
|
|
$this->repository = $repository;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a listing of nodes on the system.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Contracts\View\View
|
|
|
|
*/
|
|
|
|
public function index(Request $request)
|
|
|
|
{
|
2020-09-13 19:21:44 +00:00
|
|
|
$nodes = QueryBuilder::for(
|
|
|
|
Node::query()->with('location')->withCount('servers')
|
|
|
|
)
|
|
|
|
->allowedFilters(['uuid', 'name'])
|
|
|
|
->allowedSorts(['id'])
|
|
|
|
->paginate(25);
|
2019-11-24 23:08:54 +00:00
|
|
|
|
2020-09-13 19:21:44 +00:00
|
|
|
return $this->view->make('admin.nodes.index', ['nodes' => $nodes]);
|
2019-11-24 23:08:54 +00:00
|
|
|
}
|
|
|
|
}
|