misc_pterodactyl-panel/routes/api-application.php

97 lines
4.1 KiB
PHP
Raw Normal View History

<?php
2017-11-19 22:30:00 +00:00
2017-10-07 23:08:43 +00:00
/*
2017-11-19 22:30:00 +00:00
|--------------------------------------------------------------------------
| User Controller Routes
|--------------------------------------------------------------------------
|
2018-01-20 01:58:57 +00:00
| Endpoint: /api/application/users
2017-11-19 22:30:00 +00:00
|
*/
Route::group(['prefix' => '/users'], function () {
Route::get('/', 'Users\UserController@index')->name('api.application.users');
Route::get('/{user}', 'Users\UserController@view')->name('api.applications.users.view');
2017-11-19 22:30:00 +00:00
Route::post('/', 'Users\UserController@store');
Route::patch('/{user}', 'Users\UserController@update');
2017-11-19 22:30:00 +00:00
Route::delete('/{user}', 'Users\UserController@delete');
2017-11-19 22:30:00 +00:00
});
/*
|--------------------------------------------------------------------------
| Node Controller Routes
|--------------------------------------------------------------------------
|
2018-01-20 01:58:57 +00:00
| Endpoint: /api/application/nodes
|
*/
Route::group(['prefix' => '/nodes'], function () {
Route::get('/', 'Nodes\NodeController@index')->name('api.application.nodes');
Route::get('/{node}', 'Nodes\NodeController@view')->name('api.application.nodes.view');
Route::post('/', 'Nodes\NodeController@store');
Route::patch('/{node}', 'Nodes\NodeController@update');
Route::delete('/{node}', 'Nodes\NodeController@delete');
Route::group(['prefix' => '/{node}/allocations'], function () {
Route::get('/', 'Nodes\AllocationController@index')->name('api.application.allocations');
Route::delete('/{allocation}', 'Nodes\AllocationController@delete')->name('api.application.allocations.view');
});
});
2018-01-04 03:14:53 +00:00
/*
|--------------------------------------------------------------------------
| Location Controller Routes
|--------------------------------------------------------------------------
|
2018-01-20 01:58:57 +00:00
| Endpoint: /api/application/locations
2018-01-04 03:14:53 +00:00
|
*/
Route::group(['prefix' => '/locations'], function () {
Route::get('/', 'Locations\LocationController@index')->name('api.applications.locations');
Route::get('/{location}', 'Locations\LocationController@view')->name('api.application.locations.view');
2018-01-04 03:14:53 +00:00
Route::post('/', 'Locations\LocationController@store');
Route::patch('/{location}', 'Locations\LocationController@update');
2018-01-04 03:14:53 +00:00
Route::delete('/{location}', 'Locations\LocationController@delete');
});
/*
|--------------------------------------------------------------------------
2018-01-20 03:48:26 +00:00
| Server Controller Routes
|--------------------------------------------------------------------------
|
| Endpoint: /api/application/servers
|
*/
Route::group(['prefix' => '/servers'], function () {
Route::get('/', 'Servers\ServerController@index')->name('api.application.servers');
2018-01-20 19:48:02 +00:00
Route::get('/{server}', 'Servers\ServerController@view')->name('api.application.servers.view');
Route::patch('/{server}/details', 'Servers\ServerDetailsController@details')->name('api.application.servers.details');
2018-01-21 22:02:03 +00:00
Route::patch('/{server}/build', 'Servers\ServerDetailsController@build')->name('api.application.servers.build');
2018-01-20 19:48:02 +00:00
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');
// Database Management Endpoint
Route::group(['prefix' => '/{server}/databases'], function () {
Route::get('/', 'Servers\DatabaseController@index')->name('api.application.servers.databases');
Route::get('/{database}', 'Servers\DatabaseController@view')->name('api.application.servers.databases.view');
Route::post('/', 'Servers\DatabaseController@store');
Route::post('/{database}/reset-password', 'Servers\DatabaseController@resetPassword');
Route::delete('/{database}', 'Servers\DatabaseController@delete');
});
2018-01-04 03:14:53 +00:00
});