2016-09-05 22:21:36 +02:00
|
|
|
<?php
|
2017-11-19 23:30:00 +01:00
|
|
|
|
2018-01-13 03:39:15 +01:00
|
|
|
use Pterodactyl\Models\Node;
|
2018-01-12 05:49:46 +01:00
|
|
|
use Pterodactyl\Models\User;
|
2018-01-20 04:47:06 +01:00
|
|
|
use Pterodactyl\Models\Server;
|
2018-01-13 03:39:15 +01:00
|
|
|
use Pterodactyl\Models\Location;
|
|
|
|
use Pterodactyl\Models\Allocation;
|
2018-01-12 05:49:46 +01:00
|
|
|
|
2017-10-08 01:08:43 +02:00
|
|
|
/*
|
2017-11-19 23:30:00 +01:00
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| User Controller Routes
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
2018-01-20 02:58:57 +01:00
|
|
|
| Endpoint: /api/application/users
|
2017-11-19 23:30:00 +01:00
|
|
|
|
|
|
|
|
*/
|
|
|
|
Route::group(['prefix' => '/users'], function () {
|
2018-01-12 05:49:46 +01:00
|
|
|
Route::bind('user', function ($value) {
|
|
|
|
return User::find($value) ?? new User;
|
|
|
|
});
|
|
|
|
|
2018-01-20 04:47:06 +01:00
|
|
|
Route::get('/', 'Users\UserController@index')->name('api.application.users');
|
|
|
|
Route::get('/{user}', 'Users\UserController@view')->name('api.applications.users.view');
|
2017-11-19 23:30:00 +01:00
|
|
|
|
2018-01-20 04:47:06 +01:00
|
|
|
Route::post('/', 'Users\UserController@store');
|
|
|
|
Route::patch('/{user}', 'Users\UserController@update');
|
2017-11-19 23:30:00 +01:00
|
|
|
|
2018-01-20 04:47:06 +01:00
|
|
|
Route::delete('/{user}', 'Users\UserController@delete');
|
2017-11-19 23:30:00 +01:00
|
|
|
});
|
2017-12-17 21:57:05 +01:00
|
|
|
|
2018-01-01 22:11:44 +01:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Node Controller Routes
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
2018-01-20 02:58:57 +01:00
|
|
|
| Endpoint: /api/application/nodes
|
2018-01-01 22:11:44 +01:00
|
|
|
|
|
|
|
|
*/
|
2017-12-17 21:57:05 +01:00
|
|
|
Route::group(['prefix' => '/nodes'], function () {
|
2018-01-13 03:39:15 +01:00
|
|
|
Route::bind('node', function ($value) {
|
|
|
|
return Node::find($value) ?? new Node;
|
|
|
|
});
|
|
|
|
|
2018-01-20 04:47:06 +01:00
|
|
|
Route::get('/', 'Nodes\NodeController@index')->name('api.application.nodes');
|
|
|
|
Route::get('/{node}', 'Nodes\NodeController@view')->name('api.application.nodes.view');
|
2018-01-01 22:11:44 +01:00
|
|
|
|
2018-01-20 04:47:06 +01:00
|
|
|
Route::post('/', 'Nodes\NodeController@store');
|
|
|
|
Route::patch('/{node}', 'Nodes\NodeController@update');
|
2018-01-01 22:11:44 +01:00
|
|
|
|
2018-01-20 04:47:06 +01:00
|
|
|
Route::delete('/{node}', 'Nodes\NodeController@delete');
|
2018-01-11 06:19:03 +01:00
|
|
|
|
|
|
|
Route::group(['prefix' => '/{node}/allocations'], function () {
|
2018-01-13 03:39:15 +01:00
|
|
|
Route::bind('allocation', function ($value) {
|
|
|
|
return Allocation::find($value) ?? new Allocation;
|
|
|
|
});
|
|
|
|
|
2018-01-20 04:47:06 +01:00
|
|
|
Route::get('/', 'Nodes\AllocationController@index')->name('api.application.allocations');
|
2018-01-11 06:19:03 +01:00
|
|
|
|
2018-01-20 04:47:06 +01:00
|
|
|
Route::delete('/{allocation}', 'Nodes\AllocationController@delete')->name('api.application.allocations.view');
|
2018-01-11 06:19:03 +01:00
|
|
|
});
|
2017-12-17 21:57:05 +01:00
|
|
|
});
|
2018-01-04 04:14:53 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Location Controller Routes
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
2018-01-20 02:58:57 +01:00
|
|
|
| Endpoint: /api/application/locations
|
2018-01-04 04:14:53 +01:00
|
|
|
|
|
|
|
|
*/
|
|
|
|
Route::group(['prefix' => '/locations'], function () {
|
2018-01-13 03:39:15 +01:00
|
|
|
Route::bind('location', function ($value) {
|
|
|
|
return Location::find($value) ?? new Location;
|
|
|
|
});
|
|
|
|
|
2018-01-20 04:47:06 +01:00
|
|
|
Route::get('/', 'Locations\LocationController@index')->name('api.applications.locations');
|
|
|
|
Route::get('/{location}', 'Locations\LocationController@view')->name('api.application.locations.view');
|
2018-01-04 04:14:53 +01:00
|
|
|
|
2018-01-20 04:47:06 +01:00
|
|
|
Route::post('/', 'Locations\LocationController@store');
|
|
|
|
Route::patch('/{location}', 'Locations\LocationController@update');
|
2018-01-04 04:14:53 +01:00
|
|
|
|
2018-01-20 04:47:06 +01:00
|
|
|
Route::delete('/{location}', 'Locations\LocationController@delete');
|
|
|
|
});
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
2018-01-20 04:48:26 +01:00
|
|
|
| Server Controller Routes
|
2018-01-20 04:47:06 +01:00
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Endpoint: /api/application/servers
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
Route::group(['prefix' => '/servers'], function () {
|
2018-01-20 04:48:26 +01:00
|
|
|
Route::bind('server', function ($value) {
|
|
|
|
return Server::find($value) ?? new Server;
|
2018-01-20 04:47:06 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
Route::get('/', 'Servers\ServerController@index')->name('api.application.servers');
|
2018-01-20 20:48:02 +01:00
|
|
|
Route::get('/{server}', 'Servers\ServerController@view')->name('api.application.servers.view');
|
|
|
|
|
|
|
|
Route::post('/{server}/suspend', 'Servers\ServerManagementController@suspend')->name('api.application.servers.suspend');
|
|
|
|
Route::post('/{server}/unsuspend', 'Servers\ServerManagementController@unsuspend')->name('api.application.servers.unsuspend');
|
|
|
|
Route::post('/{server}/reinstall', 'Servers\ServerManagementController@reinstall')->name('api.application.servers.reinstall');
|
|
|
|
Route::post('/{server}/rebuild', 'Servers\ServerManagementController@rebuild')->name('api.application.servers.rebuild');
|
|
|
|
|
|
|
|
Route::delete('/{server}', 'Servers\ServerController@delete');
|
|
|
|
Route::delete('/{server}/{force?}', 'Servers\ServerController@delete');
|
2018-01-04 04:14:53 +01:00
|
|
|
});
|