2015-12-06 19:58:49 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Providers;
|
|
|
|
|
2016-09-03 23:09:00 +02:00
|
|
|
use Illuminate\Support\Facades\Route;
|
2015-12-06 19:58:49 +01:00
|
|
|
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
|
|
|
|
|
|
|
|
class RouteServiceProvider extends ServiceProvider
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* This namespace is applied to the controller routes in your routes file.
|
|
|
|
*
|
|
|
|
* In addition, it is set as the URL generator's root namespace.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $namespace = 'Pterodactyl\Http\Controllers';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define the routes for the application.
|
|
|
|
*/
|
2016-09-03 23:09:00 +02:00
|
|
|
public function map()
|
2015-12-06 19:58:49 +01:00
|
|
|
{
|
2017-04-02 03:01:10 +02:00
|
|
|
Route::middleware(['web', 'auth', 'csrf'])
|
|
|
|
->namespace($this->namespace . '\Base')
|
|
|
|
->group(base_path('routes/base.php'));
|
|
|
|
|
|
|
|
Route::middleware(['web', 'auth', 'admin', 'csrf'])->prefix('/admin')
|
|
|
|
->namespace($this->namespace . '\Admin')
|
|
|
|
->group(base_path('routes/admin.php'));
|
|
|
|
|
2017-04-02 03:18:56 +02:00
|
|
|
Route::middleware(['web', 'csrf'])->prefix('/auth')
|
2017-04-02 03:01:10 +02:00
|
|
|
->namespace($this->namespace . '\Auth')
|
|
|
|
->group(base_path('routes/auth.php'));
|
|
|
|
|
2018-05-31 16:40:18 +02:00
|
|
|
Route::middleware(['web', 'csrf', 'auth', 'server', 'subuser.auth', 'node.maintenance'])->prefix('/server/{server}')
|
2017-04-02 03:01:10 +02:00
|
|
|
->namespace($this->namespace . '\Server')
|
|
|
|
->group(base_path('routes/server.php'));
|
|
|
|
|
2018-01-20 02:58:57 +01:00
|
|
|
Route::middleware(['api'])->prefix('/api/application')
|
|
|
|
->namespace($this->namespace . '\Api\Application')
|
|
|
|
->group(base_path('routes/api-application.php'));
|
2017-11-19 21:05:13 +01:00
|
|
|
|
2018-02-25 22:30:56 +01:00
|
|
|
Route::middleware(['client-api'])->prefix('/api/client')
|
|
|
|
->namespace($this->namespace . '\Api\Client')
|
|
|
|
->group(base_path('routes/api-client.php'));
|
|
|
|
|
2017-09-24 03:45:25 +02:00
|
|
|
Route::middleware(['daemon'])->prefix('/api/remote')
|
2018-01-20 02:58:57 +01:00
|
|
|
->namespace($this->namespace . '\Api\Remote')
|
2017-09-24 03:45:25 +02:00
|
|
|
->group(base_path('routes/api-remote.php'));
|
|
|
|
|
|
|
|
Route::middleware(['web', 'daemon-old'])->prefix('/daemon')
|
2017-04-02 03:01:10 +02:00
|
|
|
->namespace($this->namespace . '\Daemon')
|
|
|
|
->group(base_path('routes/daemon.php'));
|
|
|
|
}
|
2015-12-06 19:58:49 +01:00
|
|
|
}
|