misc_pterodactyl-panel/app/Http/Routes/AdminRoutes.php

429 lines
14 KiB
PHP
Raw Normal View History

<?php
2016-01-20 00:10:39 +00:00
/**
2016-01-20 21:05:16 +00:00
* Pterodactyl - Panel
2016-01-20 00:10:39 +00:00
* Copyright (c) 2015 - 2016 Dane Everitt <dane@daneeveritt.com>
2016-12-07 22:46:38 +00:00
* Some Modifications (c) 2015 Dylan Seidt <dylan.seidt@gmail.com>.
2016-01-20 00:10:39 +00: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 00:10:39 +00:00
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
2016-01-20 00:10:39 +00: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 00:10:39 +00:00
*/
2016-12-07 22:46:38 +00:00
namespace Pterodactyl\Http\Routes;
use Illuminate\Routing\Router;
2016-12-07 22:46:38 +00:00
class AdminRoutes
{
public function map(Router $router)
{
// Admin Index
$router->get('admin', [
'as' => 'admin.index',
'middleware' => [
'auth',
2016-01-13 02:50:43 +00:00
'admin',
2016-12-07 22:46:38 +00:00
'csrf',
],
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\BaseController@getIndex',
]);
2015-12-12 06:21:17 +00:00
2016-01-21 03:08:09 +00:00
$router->group([
'prefix' => 'admin/settings',
'middleware' => [
'auth',
'admin',
2016-12-07 22:46:38 +00:00
'csrf',
],
2016-01-21 03:08:09 +00:00
], function () use ($router) {
$router->get('/', [
'as' => 'admin.settings',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\BaseController@getSettings',
2016-01-21 03:08:09 +00:00
]);
$router->post('/', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\BaseController@postSettings',
2016-01-21 03:08:09 +00:00
]);
});
$router->group([
'prefix' => 'admin/users',
'middleware' => [
'auth',
2016-01-13 02:50:43 +00:00
'admin',
2016-12-07 22:46:38 +00:00
'csrf',
],
], function () use ($router) {
// View All Accounts on System
$router->get('/', [
'as' => 'admin.users',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\UserController@getIndex',
]);
$router->get('/accounts.json', [
'as' => 'admin.users.json',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\UserController@getJson',
]);
// View Specific Account
$router->get('/view/{id}', [
'as' => 'admin.users.view',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\UserController@getView',
]);
// View Specific Account
$router->post('/view/{id}', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\UserController@updateUser',
]);
// Delete an Account Matching an ID
$router->delete('/view/{id}', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\UserController@deleteUser',
]);
// Show Create Account Page
$router->get('/new', [
'as' => 'admin.users.new',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\UserController@getNew',
]);
2015-12-10 23:30:47 +00:00
// Handle Creating New Account
$router->post('/new', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\UserController@postNew',
]);
});
// Server Routes
$router->group([
'prefix' => 'admin/servers',
'middleware' => [
'auth',
2016-01-13 02:50:43 +00:00
'admin',
2016-12-07 22:46:38 +00:00
'csrf',
],
], function () use ($router) {
// View All Servers
$router->get('/', [
'as' => 'admin.servers',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServersController@getIndex', ]);
// View Create Server Page
$router->get('/new', [
'as' => 'admin.servers.new',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServersController@getNew',
]);
// Handle POST Request for Creating Server
$router->post('/new', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServersController@postNewServer',
]);
// Assorted Page Helpers
2016-09-02 01:16:38 +00:00
$router->post('/new/get-nodes', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServersController@postNewServerGetNodes',
2016-09-02 01:16:38 +00:00
]);
2016-09-02 01:16:38 +00:00
$router->post('/new/get-ips', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServersController@postNewServerGetIps',
2016-09-02 01:16:38 +00:00
]);
2016-09-02 01:16:38 +00:00
$router->post('/new/service-options', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServersController@postNewServerServiceOptions',
2016-09-02 01:16:38 +00:00
]);
2016-09-02 01:16:38 +00:00
$router->post('/new/service-variables', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServersController@postNewServerServiceVariables',
2016-09-02 01:16:38 +00:00
]);
// End Assorted Page Helpers
// View Specific Server
$router->get('/view/{id}', [
'as' => 'admin.servers.view',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServersController@getView',
]);
// Database Stuffs
$router->post('/view/{id}/database', [
'as' => 'admin.servers.database',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServersController@postDatabase',
]);
// Change Server Details
$router->post('/view/{id}/details', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServersController@postUpdateServerDetails',
]);
// Change Server Details
$router->post('/view/{id}/container', [
'as' => 'admin.servers.post.container',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServersController@postUpdateContainerDetails',
]);
// Change Server Details
$router->post('/view/{id}/startup', [
'as' => 'admin.servers.post.startup',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServersController@postUpdateServerStartup',
]);
// Rebuild Server
$router->post('/view/{id}/rebuild', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServersController@postUpdateServerToggleBuild',
]);
// Change Build Details
$router->post('/view/{id}/build', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServersController@postUpdateServerUpdateBuild',
]);
2015-12-10 23:30:47 +00:00
2016-09-02 01:16:38 +00:00
// Suspend Server
$router->post('/view/{id}/suspend', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServersController@postSuspendServer',
2016-09-02 01:16:38 +00:00
]);
// Unsuspend Server
$router->post('/view/{id}/unsuspend', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServersController@postUnsuspendServer',
2016-09-02 01:16:38 +00:00
]);
2016-01-04 21:09:22 +00:00
// Change Install Status
$router->post('/view/{id}/installed', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServersController@postToggleInstall',
2016-01-04 21:09:22 +00:00
]);
// Delete [force delete]
$router->delete('/view/{id}/{force?}', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServersController@deleteServer',
]);
$router->post('/view/{id}/queuedDeletion', [
'uses' => 'Admin\ServersController@postQueuedDeletionHandler',
2016-12-07 22:46:38 +00:00
'as' => 'admin.servers.post.queuedDeletion',
]);
});
2016-01-05 04:59:45 +00:00
// Node Routes
$router->group([
'prefix' => 'admin/nodes',
'middleware' => [
'auth',
2016-01-13 02:50:43 +00:00
'admin',
2016-12-07 22:46:38 +00:00
'csrf',
],
2016-01-05 04:59:45 +00:00
], function () use ($router) {
// View All Nodes
$router->get('/', [
'as' => 'admin.nodes',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\NodesController@getIndex',
2016-01-05 04:59:45 +00:00
]);
// Add New Node
$router->get('/new', [
'as' => 'admin.nodes.new',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\NodesController@getNew',
2016-01-05 04:59:45 +00:00
]);
$router->post('/new', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\NodesController@postNew',
2016-01-05 04:59:45 +00:00
]);
// View Node
$router->get('/view/{id}', [
'as' => 'admin.nodes.view',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\NodesController@getView',
2016-01-05 04:59:45 +00:00
]);
$router->post('/view/{id}', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\NodesController@postView',
]);
$router->delete('/view/{id}/deallocate/single/{allocation}', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\NodesController@deallocateSingle',
]);
$router->post('/view/{id}/deallocate/block', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\NodesController@deallocateBlock',
]);
$router->post('/view/{id}/alias', [
'as' => 'admin.nodes.alias',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\NodesController@setAlias',
]);
$router->get('/view/{id}/allocations.json', [
'as' => 'admin.nodes.view.allocations',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\NodesController@getAllocationsJson',
]);
$router->post('/view/{id}/allocations', [
'as' => 'admin.nodes.post.allocations',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\NodesController@postAllocations',
]);
// View Deploy
$router->get('/view/{id}/deploy', [
'as' => 'admin.nodes.deply',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\NodesController@getScript',
]);
$router->delete('/view/{id}', [
'as' => 'admin.nodes.delete',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\NodesController@deleteNode',
]);
$router->get('/{id}/configurationtoken', [
'as' => 'admin.nodes.configurationtoken',
'uses' => 'Admin\NodesController@getConfigurationToken',
]);
2016-01-05 04:59:45 +00:00
});
2016-01-16 06:20:27 +00:00
// Location Routes
2016-01-11 00:22:21 +00:00
$router->group([
'prefix' => 'admin/locations',
'middleware' => [
'auth',
2016-01-13 02:50:43 +00:00
'admin',
2016-12-07 22:46:38 +00:00
'csrf',
],
2016-01-11 00:22:21 +00:00
], function () use ($router) {
$router->get('/', [
'as' => 'admin.locations',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\LocationsController@getIndex',
2016-01-11 00:22:21 +00:00
]);
2016-01-17 03:29:35 +00:00
$router->delete('/{id}', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\LocationsController@deleteLocation',
2016-01-17 03:29:35 +00:00
]);
2016-01-17 03:57:28 +00:00
$router->patch('/{id}', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\LocationsController@patchLocation',
2016-01-17 03:57:28 +00:00
]);
$router->post('/', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\LocationsController@postLocation',
2016-01-17 03:57:28 +00:00
]);
2016-01-11 00:22:21 +00:00
});
// Database Routes
$router->group([
'prefix' => 'admin/databases',
'middleware' => [
'auth',
'admin',
2016-12-07 22:46:38 +00:00
'csrf',
],
], function () use ($router) {
$router->get('/', [
'as' => 'admin.databases',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\DatabaseController@getIndex',
]);
$router->get('/new', [
'as' => 'admin.databases.new',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\DatabaseController@getNew',
]);
$router->post('/new', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\DatabaseController@postNew',
]);
$router->delete('/delete/{id}', [
'as' => 'admin.databases.delete',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\DatabaseController@deleteDatabase',
]);
$router->delete('/delete-server/{id}', [
'as' => 'admin.databases.delete-server',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\DatabaseController@deleteServer',
]);
});
// Service Routes
$router->group([
'prefix' => 'admin/services',
'middleware' => [
'auth',
'admin',
2016-12-07 22:46:38 +00:00
'csrf',
],
], function () use ($router) {
$router->get('/', [
'as' => 'admin.services',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServiceController@getIndex',
]);
2016-02-20 21:02:49 +00:00
$router->get('/new', [
'as' => 'admin.services.new',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServiceController@getNew',
2016-02-20 21:02:49 +00:00
]);
$router->post('/new', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServiceController@postNew',
2016-02-20 21:02:49 +00:00
]);
$router->get('/service/{id}', [
'as' => 'admin.services.service',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServiceController@getService',
]);
$router->post('/service/{id}', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServiceController@postService',
]);
2016-02-20 21:23:04 +00:00
$router->delete('/service/{id}', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServiceController@deleteService',
2016-02-20 21:23:04 +00:00
]);
$router->get('/service/{service}/option/new', [
'as' => 'admin.services.option.new',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServiceController@newOption',
]);
$router->post('/service/{service}/option/new', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServiceController@postNewOption',
]);
$router->get('/service/{service}/option/{option}', [
'as' => 'admin.services.option',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServiceController@getOption',
]);
$router->post('/service/{service}/option/{option}', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServiceController@postOption',
]);
$router->delete('/service/{service}/option/{id}', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServiceController@deleteOption',
]);
$router->get('/service/{service}/option/{option}/variable/new', [
'as' => 'admin.services.option.variable.new',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServiceController@getNewVariable',
]);
$router->post('/service/{service}/option/{option}/variable/new', [
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServiceController@postNewVariable',
]);
$router->post('/service/{service}/option/{option}/variable/{variable}', [
'as' => 'admin.services.option.variable',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServiceController@postOptionVariable',
]);
$router->get('/service/{service}/option/{option}/variable/{variable}/delete', [
'as' => 'admin.services.option.variable.delete',
2016-12-07 22:46:38 +00:00
'uses' => 'Admin\ServiceController@deleteVariable',
]);
});
}
}