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
|
2016-01-20 00:10:39 +00:00
|
|
|
* Copyright (c) 2015 - 2016 Dane Everitt <dane@daneeveritt.com>
|
2016-01-20 20:56:40 +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
|
|
|
*/
|
2015-12-06 18:58:49 +00:00
|
|
|
namespace Pterodactyl\Http\Routes;
|
|
|
|
|
|
|
|
use Illuminate\Routing\Router;
|
|
|
|
|
|
|
|
class BaseRoutes {
|
|
|
|
|
|
|
|
public function map(Router $router) {
|
|
|
|
|
2016-01-04 21:09:39 +00:00
|
|
|
// Index of Panel
|
|
|
|
$router->get('/', [
|
|
|
|
'as' => 'index',
|
|
|
|
'middleware' => 'auth',
|
|
|
|
'uses' => 'Base\IndexController@getIndex'
|
|
|
|
]);
|
|
|
|
|
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',
|
|
|
|
'uses' => 'Base\IndexController@getPassword'
|
|
|
|
]);
|
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([
|
|
|
|
'profix' => 'account',
|
|
|
|
'middleware' => [
|
2016-01-13 02:50:43 +00:00
|
|
|
'auth',
|
|
|
|
'csrf'
|
2016-01-04 21:09:39 +00:00
|
|
|
]
|
|
|
|
], function () use ($router) {
|
|
|
|
$router->get('account', [
|
|
|
|
'as' => 'account',
|
2016-10-14 21:15:36 +00:00
|
|
|
'uses' => 'Base\AccountController@index'
|
2016-01-04 21:09:39 +00:00
|
|
|
]);
|
|
|
|
$router->post('/account/password', [
|
2016-10-14 21:15:36 +00:00
|
|
|
'uses' => 'Base\AccountController@password'
|
2016-01-04 21:09:39 +00:00
|
|
|
]);
|
|
|
|
$router->post('/account/email', [
|
2016-10-14 21:15:36 +00:00
|
|
|
'uses' => 'Base\AccountController@email'
|
2016-01-04 21:09:39 +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',
|
|
|
|
'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-10-14 21:15:36 +00:00
|
|
|
'uses' => 'Base\SecurityController@index'
|
2016-02-26 05:35:23 +00:00
|
|
|
]);
|
|
|
|
$router->get('/revoke/{id}', [
|
|
|
|
'as' => 'account.security.revoke',
|
2016-10-14 21:15:36 +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', [
|
|
|
|
'uses' => 'Base\SecurityController@generateTotp'
|
2016-01-04 21:09:39 +00:00
|
|
|
]);
|
2016-10-14 21:15:36 +00:00
|
|
|
$router->post('/totp', [
|
|
|
|
'uses' => 'Base\SecurityController@setTotp'
|
2016-01-04 21:09:39 +00:00
|
|
|
]);
|
2016-10-14 21:15:36 +00:00
|
|
|
$router->delete('/totp', [
|
|
|
|
'uses' => 'Base\SecurityController@disableTotp'
|
2016-01-04 21:09:39 +00:00
|
|
|
]);
|
|
|
|
});
|
2015-12-06 18:58:49 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|