2015-12-06 18:58:49 +00:00
|
|
|
<?php
|
2016-01-20 00:10:39 +00:00
|
|
|
/**
|
2016-01-20 21:05:16 +00:00
|
|
|
* Pterodactyl - Panel
|
2017-01-24 22:57:08 +00:00
|
|
|
* Copyright (c) 2015 - 2017 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
|
|
|
*
|
2016-01-20 20:56:40 +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
|
|
|
*
|
2016-01-20 20:56:40 +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
|
|
|
*
|
2016-01-20 20:56:40 +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
|
|
|
|
2015-12-06 18:58:49 +00:00
|
|
|
namespace Pterodactyl\Http\Routes;
|
|
|
|
|
|
|
|
use Illuminate\Routing\Router;
|
|
|
|
|
2016-12-07 22:46:38 +00:00
|
|
|
class BaseRoutes
|
|
|
|
{
|
|
|
|
public function map(Router $router)
|
|
|
|
{
|
2015-12-06 18:58:49 +00:00
|
|
|
|
2016-01-04 21:09:39 +00:00
|
|
|
// Index of Panel
|
|
|
|
$router->get('/', [
|
|
|
|
'as' => 'index',
|
|
|
|
'middleware' => 'auth',
|
2016-12-07 22:46:38 +00:00
|
|
|
'uses' => 'Base\IndexController@getIndex',
|
2016-01-04 21:09:39 +00:00
|
|
|
]);
|
|
|
|
|
2015-12-06 18:58:49 +00:00
|
|
|
// Handle Index. Redirect /index to /
|
|
|
|
$router->get('/index', function () {
|
|
|
|
return redirect()->route('index');
|
|
|
|
});
|
|
|
|
|
2015-12-12 06:21:17 +00:00
|
|
|
// Password Generation
|
2016-01-04 21:09:39 +00:00
|
|
|
$router->get('/password-gen/{length}', [
|
|
|
|
'as' => 'password-gen',
|
|
|
|
'middleware' => 'auth',
|
2016-12-07 22:46:38 +00:00
|
|
|
'uses' => 'Base\IndexController@getPassword',
|
2016-01-04 21:09:39 +00:00
|
|
|
]);
|
2015-12-12 06:21:17 +00:00
|
|
|
|
2015-12-06 18:58:49 +00:00
|
|
|
// Account Routes
|
2016-01-04 21:09:39 +00:00
|
|
|
$router->group([
|
2016-10-14 21:17:35 +00:00
|
|
|
'prefix' => 'account',
|
2016-01-04 21:09:39 +00:00
|
|
|
'middleware' => [
|
2016-01-13 02:50:43 +00:00
|
|
|
'auth',
|
2016-12-07 22:46:38 +00:00
|
|
|
'csrf',
|
|
|
|
],
|
2016-01-04 21:09:39 +00:00
|
|
|
], function () use ($router) {
|
2016-10-14 21:17:35 +00:00
|
|
|
$router->get('/', [
|
2016-01-04 21:09:39 +00:00
|
|
|
'as' => 'account',
|
2016-12-07 22:46:38 +00:00
|
|
|
'uses' => 'Base\AccountController@index',
|
2016-01-04 21:09:39 +00:00
|
|
|
]);
|
2017-01-22 21:16:43 +00:00
|
|
|
$router->post('/', [
|
|
|
|
'uses' => 'Base\AccountController@update',
|
2016-01-04 21:09:39 +00:00
|
|
|
]);
|
|
|
|
});
|
2015-12-06 18:58:49 +00:00
|
|
|
|
2016-10-15 00:22:23 +00:00
|
|
|
// API Management Routes
|
|
|
|
$router->group([
|
|
|
|
'prefix' => 'account/api',
|
|
|
|
'middleware' => [
|
|
|
|
'auth',
|
2016-12-07 22:46:38 +00:00
|
|
|
'csrf',
|
|
|
|
],
|
2016-10-15 00:22:23 +00:00
|
|
|
], function () use ($router) {
|
|
|
|
$router->get('/', [
|
|
|
|
'as' => 'account.api',
|
2016-12-07 22:46:38 +00:00
|
|
|
'uses' => 'Base\APIController@index',
|
2016-10-15 00:22:23 +00:00
|
|
|
]);
|
|
|
|
$router->get('/new', [
|
|
|
|
'as' => 'account.api.new',
|
2016-12-12 19:30:57 +00:00
|
|
|
'uses' => 'Base\APIController@create',
|
2016-10-15 00:22:23 +00:00
|
|
|
]);
|
|
|
|
$router->post('/new', [
|
2016-12-07 22:46:38 +00:00
|
|
|
'uses' => 'Base\APIController@save',
|
2016-10-15 00:22:23 +00:00
|
|
|
]);
|
2016-10-20 22:20:58 +00:00
|
|
|
|
|
|
|
$router->delete('/revoke/{key}', [
|
2017-02-16 17:57:48 +00:00
|
|
|
'as' => 'account.api.revoke',
|
2016-12-07 22:46:38 +00:00
|
|
|
'uses' => 'Base\APIController@revoke',
|
2016-10-20 22:20:58 +00:00
|
|
|
]);
|
2016-10-15 00:22:23 +00:00
|
|
|
});
|
|
|
|
|
2015-12-06 18:58:49 +00:00
|
|
|
// TOTP Routes
|
2016-01-04 21:09:39 +00:00
|
|
|
$router->group([
|
2016-02-26 05:35:23 +00:00
|
|
|
'prefix' => 'account/security',
|
2016-01-04 21:09:39 +00:00
|
|
|
'middleware' => [
|
2016-01-13 02:50:43 +00:00
|
|
|
'auth',
|
2016-12-07 22:46:38 +00:00
|
|
|
'csrf',
|
|
|
|
],
|
2016-01-04 21:09:39 +00:00
|
|
|
], function () use ($router) {
|
|
|
|
$router->get('/', [
|
2016-02-26 05:35:23 +00:00
|
|
|
'as' => 'account.security',
|
2016-12-07 22:46:38 +00:00
|
|
|
'uses' => 'Base\SecurityController@index',
|
2016-02-26 05:35:23 +00:00
|
|
|
]);
|
|
|
|
$router->get('/revoke/{id}', [
|
|
|
|
'as' => 'account.security.revoke',
|
2016-12-07 22:46:38 +00:00
|
|
|
'uses' => 'Base\SecurityController@revoke',
|
2016-01-04 21:09:39 +00:00
|
|
|
]);
|
2016-10-14 21:15:36 +00:00
|
|
|
$router->put('/totp', [
|
2017-01-15 19:09:57 +00:00
|
|
|
'as' => 'account.security.totp',
|
2016-12-07 22:46:38 +00:00
|
|
|
'uses' => 'Base\SecurityController@generateTotp',
|
2016-01-04 21:09:39 +00:00
|
|
|
]);
|
2016-10-14 21:15:36 +00:00
|
|
|
$router->post('/totp', [
|
2016-12-07 22:46:38 +00:00
|
|
|
'uses' => 'Base\SecurityController@setTotp',
|
2016-01-04 21:09:39 +00:00
|
|
|
]);
|
2016-10-14 21:15:36 +00:00
|
|
|
$router->delete('/totp', [
|
2016-12-07 22:46:38 +00:00
|
|
|
'uses' => 'Base\SecurityController@disableTotp',
|
2016-01-04 21:09:39 +00:00
|
|
|
]);
|
|
|
|
});
|
2015-12-06 18:58:49 +00:00
|
|
|
}
|
|
|
|
}
|