2015-08-30 13:22:00 +02:00
|
|
|
<?php
|
|
|
|
|
2015-10-25 06:17:45 +01:00
|
|
|
/**
|
|
|
|
* Pony.fm - A community for pony fan music.
|
2021-02-14 03:39:15 +01:00
|
|
|
* Copyright (C) 2015 Feld0.
|
2015-10-25 06:17:45 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-02-14 03:34:58 +01:00
|
|
|
namespace App\Providers;
|
2015-08-30 13:22:00 +02:00
|
|
|
|
2021-02-14 03:39:15 +01:00
|
|
|
use App\Models\User;
|
2021-02-14 20:34:53 +01:00
|
|
|
use Illuminate\Cache\RateLimiting\Limit;
|
2015-08-30 13:22:00 +02:00
|
|
|
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
|
2021-02-14 20:34:53 +01:00
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Illuminate\Support\Facades\RateLimiter;
|
2016-09-30 01:56:25 +02:00
|
|
|
use Illuminate\Support\Facades\Route;
|
2015-08-30 13:22:00 +02:00
|
|
|
|
|
|
|
class RouteServiceProvider extends ServiceProvider
|
|
|
|
{
|
|
|
|
/**
|
2021-02-14 20:34:53 +01:00
|
|
|
* The path to the "home" route for your application.
|
2015-08-30 13:22:00 +02:00
|
|
|
*
|
2021-02-14 20:34:53 +01:00
|
|
|
* This is used by Laravel authentication to redirect users after login.
|
2015-08-30 13:22:00 +02:00
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2021-02-14 20:34:53 +01:00
|
|
|
public const HOME = '/home';
|
2015-08-30 13:22:00 +02:00
|
|
|
|
2021-02-14 19:21:25 +01:00
|
|
|
/**
|
2021-02-14 20:34:53 +01:00
|
|
|
* The controller namespace for the application.
|
2021-02-14 19:21:25 +01:00
|
|
|
*
|
2021-02-14 20:34:53 +01:00
|
|
|
* When present, controller route declarations will automatically be prefixed with this namespace.
|
|
|
|
*
|
|
|
|
* @var string|null
|
2021-02-14 19:21:25 +01:00
|
|
|
*/
|
2021-02-14 20:34:53 +01:00
|
|
|
// protected $namespace = 'App\\Http\\Controllers';
|
2021-02-14 19:21:25 +01:00
|
|
|
|
2015-08-30 13:22:00 +02:00
|
|
|
/**
|
|
|
|
* Define your route model bindings, pattern filters, etc.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-09-30 01:56:25 +02:00
|
|
|
public function boot()
|
2015-08-30 13:22:00 +02:00
|
|
|
{
|
2021-02-14 20:34:53 +01:00
|
|
|
$this->configureRateLimiting();
|
|
|
|
|
|
|
|
$this->routes(function () {
|
|
|
|
Route::model('userId', User::class);
|
|
|
|
Route::bind('userSlug', function ($value) {
|
|
|
|
return User::where('slug', $value)->first();
|
|
|
|
});
|
|
|
|
|
|
|
|
Route::prefix('api')
|
|
|
|
->middleware('api')
|
|
|
|
->namespace($this->namespace)
|
|
|
|
->group(base_path('routes/api.php'));
|
2016-03-06 13:27:53 +01:00
|
|
|
|
2021-02-14 20:34:53 +01:00
|
|
|
Route::middleware('web')
|
|
|
|
->namespace($this->namespace)
|
|
|
|
->group(base_path('routes/web.php'));
|
2016-06-14 10:27:56 +02:00
|
|
|
});
|
2015-08-30 13:22:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-02-14 20:34:53 +01:00
|
|
|
* Configure the rate limiters for the application.
|
2015-08-30 13:22:00 +02:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2021-02-14 20:34:53 +01:00
|
|
|
protected function configureRateLimiting()
|
2015-08-30 13:22:00 +02:00
|
|
|
{
|
2021-02-14 20:34:53 +01:00
|
|
|
RateLimiter::for('api', function (Request $request) {
|
|
|
|
return Limit::perMinute(60)->by(optional($request->user())->id ?: $request->ip());
|
2015-08-30 13:22:00 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|